forked from SiMaLaoShi/WinKawaks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWinKawaks Audit.txt
10920 lines (10920 loc) · 913 KB
/
WinKawaks Audit.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2020bb 030-p1.p1 524288 d396c9cb ERROR: not found, game will not run
2020bb 030-s1.s1 131072 7015b8fc ERROR: not found, game will not run
2020bb 030-m1.m1 131072 4cf466ec ERROR: not found, game will not run
2020bb 030-v1.v1 1048576 d4ca364e ERROR: not found, game will not run
2020bb 030-v2.v2 1048576 54994455 ERROR: not found, game will not run
2020bb 030-c1.c1 1048576 4f5e19bd ERROR: not found, game will not run
2020bb 030-c2.c2 1048576 d6314bf0 ERROR: not found, game will not run
2020bb 030-c3.c3 1048576 47fddfee ERROR: not found, game will not run
2020bb 030-c4.c4 1048576 780d1c4e ERROR: not found, game will not run
2020bbh 030-pg1.p1 524288 12d048d7 ERROR: not found, game will not run
2020bbh 030-s1.s1 131072 7015b8fc ERROR: not found, game will not run
2020bbh 030-m1.m1 131072 4cf466ec ERROR: not found, game will not run
2020bbh 030-v1.v1 1048576 d4ca364e ERROR: not found, game will not run
2020bbh 030-v2.v2 1048576 54994455 ERROR: not found, game will not run
2020bbh 030-c1.c1 1048576 4f5e19bd ERROR: not found, game will not run
2020bbh 030-c2.c2 1048576 d6314bf0 ERROR: not found, game will not run
2020bbh 030-c3.c3 1048576 47fddfee ERROR: not found, game will not run
2020bbh 030-c4.c4 1048576 780d1c4e ERROR: not found, game will not run
2020bba 030-epr.p1 524288 c59be3dd ERROR: not found, game will not run
2020bba 030-s1.s1 131072 7015b8fc ERROR: not found, game will not run
2020bba 030-m1.m1 131072 4cf466ec ERROR: not found, game will not run
2020bba 030-v1.v1 1048576 d4ca364e ERROR: not found, game will not run
2020bba 030-v2.v2 1048576 54994455 ERROR: not found, game will not run
2020bba 030-c1.c1 1048576 4f5e19bd ERROR: not found, game will not run
2020bba 030-c2.c2 1048576 d6314bf0 ERROR: not found, game will not run
2020bba 030-c3.c3 1048576 47fddfee ERROR: not found, game will not run
2020bba 030-c4.c4 1048576 780d1c4e ERROR: not found, game will not run
3countb 043-p1.p1 1048576 ffbdd928 ERROR: not found, game will not run
3countb 043-s1.s1 131072 c362d484 ERROR: not found, game will not run
3countb 043-m1.m1 131072 7eab59cb ERROR: not found, game will not run
3countb 043-v1.v1 2097152 63688ce8 ERROR: not found, game will not run
3countb 043-v2.v2 2097152 c69a827b ERROR: not found, game will not run
3countb 043-c1.c1 1048576 bad2d67f ERROR: not found, game will not run
3countb 043-c2.c2 1048576 a7fbda95 ERROR: not found, game will not run
3countb 043-c3.c3 1048576 f00be011 ERROR: not found, game will not run
3countb 043-c4.c4 1048576 1887e5c0 ERROR: not found, game will not run
sonicwi2 075-p1.p1 1048576 92871738 ERROR: not found, game will not run
sonicwi2 075-s1.s1 131072 c9eec367 ERROR: not found, game will not run
sonicwi2 075-m1.m1 131072 bb828df1 ERROR: not found, game will not run
sonicwi2 075-v1.v1 2097152 7577e949 ERROR: not found, game will not run
sonicwi2 075-v2.v2 1048576 021760cd ERROR: not found, game will not run
sonicwi2 075-c1.c1 2097152 3278e73e ERROR: not found, game will not run
sonicwi2 075-c2.c2 2097152 fe6355d6 ERROR: not found, game will not run
sonicwi2 075-c3.c3 2097152 c1b438f1 ERROR: not found, game will not run
sonicwi2 075-c4.c4 2097152 1f777206 ERROR: not found, game will not run
sonicwi3 097-p1.p1 1048576 0547121d ERROR: not found, game will not run
sonicwi3 097-s1.s1 131072 8dd66743 ERROR: not found, game will not run
sonicwi3 097-m1.m1 131072 b20e4291 ERROR: not found, game will not run
sonicwi3 097-v1.v1 4194304 6f885152 ERROR: not found, game will not run
sonicwi3 097-v2.v2 2097152 3359e868 ERROR: not found, game will not run
sonicwi3 097-c1.c1 4194304 33d0d589 ERROR: not found, game will not run
sonicwi3 097-c2.c2 4194304 186f8b43 ERROR: not found, game will not run
sonicwi3 097-c3.c3 2097152 c339fff5 ERROR: not found, game will not run
sonicwi3 097-c4.c4 2097152 84a40c6e ERROR: not found, game will not run
aodk 074-p1.p1 1048576 62369553 ERROR: not found, game will not run
aodk 074-s1.s1 131072 96148d2b ERROR: not found, game will not run
aodk 074-m1.m1 131072 5a52a9d1 ERROR: not found, game will not run
aodk 074-v1.v1 2097152 7675b8fa ERROR: not found, game will not run
aodk 074-v2.v2 2097152 a9da86e9 ERROR: not found, game will not run
aodk 074-c1.c1 2097152 a0b39344 ERROR: not found, game will not run
aodk 074-c2.c2 2097152 203f6074 ERROR: not found, game will not run
aodk 074-c3.c3 2097152 7fff4d41 ERROR: not found, game will not run
aodk 074-c4.c4 2097152 48db3e0a ERROR: not found, game will not run
aodk 074-c5.c5 2097152 c74c5e51 ERROR: not found, game will not run
aodk 074-c6.c6 2097152 73e8e7e0 ERROR: not found, game will not run
aodk 074-c7.c7 2097152 ac7daa01 ERROR: not found, game will not run
aodk 074-c8.c8 2097152 14e7ad71 ERROR: not found, game will not run
alpham2 007-p1.p1 524288 5b266f47 ERROR: not found, game will not run
alpham2 007-p2.p2 131072 eb9c1044 ERROR: not found, game will not run
alpham2 007-s1.s1 131072 85ec9acf ERROR: not found, game will not run
alpham2 007-m1.m1 131072 28dfe2cd ERROR: not found, game will not run
alpham2 007-v1.v1 1048576 cd5db931 ERROR: not found, game will not run
alpham2 007-v2.v2 1048576 63e9b574 ERROR: not found, game will not run
alpham2 007-c1.c1 1048576 8fba8ff3 ERROR: not found, game will not run
alpham2 007-c2.c2 1048576 4dad2945 ERROR: not found, game will not run
alpham2 007-c3.c3 524288 68c2994e ERROR: not found, game will not run
alpham2 007-c4.c4 524288 7d588349 ERROR: not found, game will not run
alpham2p 007_p1_faac.p1 524288 c763e52a ERROR: not found, game will not run
alpham2p 007_p2_1813.p2 524288 7a0b435c ERROR: not found, game will not run
alpham2p 007_s1_36f1.s1 131072 efc9ae2e ERROR: not found, game will not run
alpham2p 007_m1_9384.m1 131072 5976b464 ERROR: not found, game will not run
alpham2p 007_v11_1bb4.v11 524288 18eaa9e1 ERROR: not found, game will not run
alpham2p 007_v12_c8e8.v12 524288 2487d495 ERROR: not found, game will not run
alpham2p 007_v13_09fa.v13 524288 25e60f25 ERROR: not found, game will not run
alpham2p 007_v21_28c2.v21 524288 ac44b75a ERROR: not found, game will not run
alpham2p 007_c1_210e.c11 524288 24841639 ERROR: not found, game will not run
alpham2p 007_c2_29ae.c12 524288 912763ab ERROR: not found, game will not run
alpham2p 007_c3_c873.c13 524288 0743bde2 ERROR: not found, game will not run
alpham2p 007_c4_2462.c14 524288 61240212 ERROR: not found, game will not run
alpham2p 007_c5_5f16.c15 524288 cf9f4c53 ERROR: not found, game will not run
alpham2p 007_c6_8abc.c16 524288 3d903b19 ERROR: not found, game will not run
alpham2p 007_c7_c983.c17 524288 e41e3875 ERROR: not found, game will not run
alpham2p 007_c8_b599.c18 524288 4483e2cf ERROR: not found, game will not run
androdun 049-p1.p1 524288 3b857da2 WARNING: wrong name (049-p1.bin)
androdun 049-p2.p2 524288 2f062209 WARNING: wrong name (049-p2.bin)
androdun 049-s1.s1 131072 6349de5d WARNING: wrong name (049-s1.bin)
androdun 049-m1.m1 131072 edd2acf4 ERROR: not found, game will not run
androdun 049-v1.v1 1048576 ce43cb89 ERROR: not found, game will not run
androdun 049-c1.c1 1048576 7ace6db3 WARNING: wrong name (049-c1.bin)
androdun 049-c2.c2 1048576 b17024f7 WARNING: wrong name (049-c2.bin)
aof 044-p1.p1 524288 ca9f7a6d ERROR: not found, game will not run
aof 044-s1.s1 131072 89903f39 ERROR: not found, game will not run
aof 044-m1.m1 131072 0987e4bb ERROR: not found, game will not run
aof 044-v2.v2 2097152 3ec632ea ERROR: not found, game will not run
aof 044-v4.v4 2097152 4b0f8e23 ERROR: not found, game will not run
aof 044-c1.c1 1048576 ddab98a7 ERROR: not found, game will not run
aof 044-c2.c2 1048576 d8ccd575 ERROR: not found, game will not run
aof 044-c3.c3 1048576 403e898a ERROR: not found, game will not run
aof 044-c4.c4 1048576 6235fbaa ERROR: not found, game will not run
aof2 056-p1.p1 1048576 a3b1d021 ERROR: not found, game will not run
aof2 056-s1.s1 131072 8b02638e ERROR: not found, game will not run
aof2 056-m1.m1 131072 f27e9d52 ERROR: not found, game will not run
aof2 056-v1.v1 2097152 4628fde0 ERROR: not found, game will not run
aof2 056-v2.v2 2097152 b710e2f2 ERROR: not found, game will not run
aof2 056-v3.v3 1048576 d168c301 ERROR: not found, game will not run
aof2 056-c1.c1 2097152 17b9cbd2 ERROR: not found, game will not run
aof2 056-c2.c2 2097152 5fd76b67 ERROR: not found, game will not run
aof2 056-c3.c3 2097152 d2c88768 ERROR: not found, game will not run
aof2 056-c4.c4 2097152 db39b883 ERROR: not found, game will not run
aof2 056-c5.c5 2097152 c3074137 ERROR: not found, game will not run
aof2 056-c6.c6 2097152 31de68d3 ERROR: not found, game will not run
aof2 056-c7.c7 2097152 3f36df57 ERROR: not found, game will not run
aof2 056-c8.c8 2097152 e546d7a8 ERROR: not found, game will not run
aof2a 056-p1.p1 1048576 a3b1d021 ERROR: not found, game will not run
aof2a 056-epr.ep1 524288 75d6301c ERROR: not found, game will not run
aof2a 056-s1.s1 131072 8b02638e ERROR: not found, game will not run
aof2a 056-m1.m1 131072 f27e9d52 ERROR: not found, game will not run
aof2a 056-v1.v1 2097152 4628fde0 ERROR: not found, game will not run
aof2a 056-v2.v2 2097152 b710e2f2 ERROR: not found, game will not run
aof2a 056-v3.v3 1048576 d168c301 ERROR: not found, game will not run
aof2a 056-c1.c1 2097152 17b9cbd2 ERROR: not found, game will not run
aof2a 056-c2.c2 2097152 5fd76b67 ERROR: not found, game will not run
aof2a 056-c3.c3 2097152 d2c88768 ERROR: not found, game will not run
aof2a 056-c4.c4 2097152 db39b883 ERROR: not found, game will not run
aof2a 056-c5.c5 2097152 c3074137 ERROR: not found, game will not run
aof2a 056-c6.c6 2097152 31de68d3 ERROR: not found, game will not run
aof2a 056-c7.c7 2097152 3f36df57 ERROR: not found, game will not run
aof2a 056-c8.c8 2097152 e546d7a8 ERROR: not found, game will not run
aof3 096-p1.p1 1048576 9edb420d ERROR: not found, game will not run
aof3 096-p2.sp2 2097152 4d5a2602 ERROR: not found, game will not run
aof3 096-s1.s1 131072 cc7fd344 ERROR: not found, game will not run
aof3 096-m1.m1 131072 cb07b659 ERROR: not found, game will not run
aof3 096-v1.v1 2097152 e2c32074 ERROR: not found, game will not run
aof3 096-v2.v2 2097152 a290eee7 ERROR: not found, game will not run
aof3 096-v3.v3 2097152 199d12ea ERROR: not found, game will not run
aof3 096-c1.c1 4194304 f17b8d89 ERROR: not found, game will not run
aof3 096-c2.c2 4194304 3840c508 ERROR: not found, game will not run
aof3 096-c3.c3 4194304 55f9ee1e ERROR: not found, game will not run
aof3 096-c4.c4 4194304 585b7e47 ERROR: not found, game will not run
aof3 096-c5.c5 4194304 c75a753c ERROR: not found, game will not run
aof3 096-c6.c6 4194304 9a9d2f7a ERROR: not found, game will not run
aof3 096-c7.c7 2097152 51bd8ab2 ERROR: not found, game will not run
aof3 096-c8.c8 2097152 9a34f99c ERROR: not found, game will not run
aof3k 196-p1k.p1 1048576 a0780789 ERROR: not found, game will not run
aof3k 096-p2.sp2 2097152 4d5a2602 ERROR: not found, game will not run
aof3k 096-s1.s1 131072 cc7fd344 ERROR: not found, game will not run
aof3k 096-m1.m1 131072 cb07b659 ERROR: not found, game will not run
aof3k 096-v1.v1 2097152 e2c32074 ERROR: not found, game will not run
aof3k 096-v2.v2 2097152 a290eee7 ERROR: not found, game will not run
aof3k 096-v3.v3 2097152 199d12ea ERROR: not found, game will not run
aof3k 096-c1.c1 4194304 f17b8d89 ERROR: not found, game will not run
aof3k 096-c2.c2 4194304 3840c508 ERROR: not found, game will not run
aof3k 096-c3.c3 4194304 55f9ee1e ERROR: not found, game will not run
aof3k 096-c4.c4 4194304 585b7e47 ERROR: not found, game will not run
aof3k 096-c5.c5 4194304 c75a753c ERROR: not found, game will not run
aof3k 096-c6.c6 4194304 9a9d2f7a ERROR: not found, game will not run
aof3k 096-c7.c7 2097152 51bd8ab2 ERROR: not found, game will not run
aof3k 096-c8.c8 2097152 9a34f99c ERROR: not found, game will not run
bakatono 036-p1.p1 524288 1c66b6fa WARNING: wrong name (036-p1.bin)
bakatono 036-s1.s1 131072 f3ef4485 WARNING: wrong name (036-s1.bin)
bakatono 036-m1.m1 131072 f1385b96 WARNING: wrong name (036-m1.bin)
bakatono 036-v1.v1 1048576 1c335dce WARNING: wrong name (036-v1.bin)
bakatono 036-v2.v2 1048576 bbf79342 WARNING: wrong name (036-v2.bin)
bakatono 036-c1.c1 1048576 fe7f1010 WARNING: wrong name (036-c1.bin)
bakatono 036-c2.c2 1048576 bbf003f5 WARNING: wrong name (036-c2.bin)
bakatono 036-c3.c3 1048576 9ac0708e WARNING: wrong name (036-c3.bin)
bakatono 036-c4.c4 1048576 f2577d22 WARNING: wrong name (036-c4.bin)
b2b 071.p1 524288 7687197d ERROR: not found, game will not run
b2b 071.s1 131072 44e5f154 ERROR: not found, game will not run
b2b 071.m1 131072 6da739ad ERROR: not found, game will not run
b2b 071.v1 1048576 50feffb0 ERROR: not found, game will not run
b2b 071.c1 2097152 23d84a7a ERROR: not found, game will not run
b2b 071.c2 2097152 ce7b6248 ERROR: not found, game will not run
bangbead 259-c1.c1 8388608 1f537f74 ERROR: not found, game will not run
bangbead 259-c2.c2 8388608 0efd98ff ERROR: not found, game will not run
bangbead 259-p1.p1 1048576 88a37f8b ERROR: not found, game will not run
bangbead 259-m1.m1 131072 85668ee9 ERROR: not found, game will not run
bangbead 259-v1.v1 4194304 088eb8ab ERROR: not found, game will not run
bangbead 259-v2.v2 1048576 97528fe9 ERROR: not found, game will not run
bngbeadn bgn_c1.rom 8388608 c50a91c3 ERROR: not found, game will not run
bngbeadn bgn_c2.rom 8388608 820ab36e ERROR: not found, game will not run
bngbeadn bgn_s1.rom 131072 bb50fb2d ERROR: not found, game will not run
bngbeadn 259-p1.p1 1048576 88a37f8b ERROR: not found, game will not run
bngbeadn 259-m1.m1 131072 85668ee9 ERROR: not found, game will not run
bngbeadn 259-v1.v1 4194304 088eb8ab ERROR: not found, game will not run
bngbeadn 259-v2.v2 1048576 97528fe9 ERROR: not found, game will not run
bstars 002-pg.p1 524288 c100b5f5 ERROR: not found, game will not run
bstars 002-s1.s1 131072 1a7fd0c6 ERROR: not found, game will not run
bstars 002-m1.m1 262144 4ecaa4ee ERROR: not found, game will not run
bstars 002-v11.v11 524288 b7b925bd ERROR: not found, game will not run
bstars 002-v12.v12 524288 329f26fc ERROR: not found, game will not run
bstars 002-v13.v13 524288 0c39f3c8 ERROR: not found, game will not run
bstars 002-v14.v14 524288 c7e11c38 ERROR: not found, game will not run
bstars 002-v21.v21 524288 04a733d1 ERROR: not found, game will not run
bstars 002-c1.c1 524288 aaff2a45 ERROR: not found, game will not run
bstars 002-c2.c2 524288 3ba0f7e4 ERROR: not found, game will not run
bstars 002-c3.c3 524288 96f0fdfa ERROR: not found, game will not run
bstars 002-c4.c4 524288 5fd87f2f ERROR: not found, game will not run
bstars 002-c5.c5 524288 807ed83b ERROR: not found, game will not run
bstars 002-c6.c6 524288 5a3cad41 ERROR: not found, game will not run
bstarsh 002-p1.p1 524288 3bc7790e ERROR: not found, game will not run
bstarsh 002-s1.s1 131072 1a7fd0c6 ERROR: not found, game will not run
bstarsh 002-m1.m1 262144 4ecaa4ee ERROR: not found, game will not run
bstarsh 002-v11.v11 524288 b7b925bd ERROR: not found, game will not run
bstarsh 002-v12.v12 524288 329f26fc ERROR: not found, game will not run
bstarsh 002-v13.v13 524288 0c39f3c8 ERROR: not found, game will not run
bstarsh 002-v14.v14 524288 c7e11c38 ERROR: not found, game will not run
bstarsh 002-v21.v21 524288 04a733d1 ERROR: not found, game will not run
bstarsh 002-c1.c1 524288 aaff2a45 ERROR: not found, game will not run
bstarsh 002-c2.c2 524288 3ba0f7e4 ERROR: not found, game will not run
bstarsh 002-c3.c3 524288 96f0fdfa ERROR: not found, game will not run
bstarsh 002-c4.c4 524288 5fd87f2f ERROR: not found, game will not run
bstarsh 002-c5.c5 524288 807ed83b ERROR: not found, game will not run
bstarsh 002-c6.c6 524288 5a3cad41 ERROR: not found, game will not run
bstars2 041-p1.p1 524288 523567fd ERROR: not found, game will not run
bstars2 041-s1.s1 131072 015c5c94 ERROR: not found, game will not run
bstars2 041-m1.m1 131072 15c177a6 ERROR: not found, game will not run
bstars2 041-v1.v1 1048576 cb1da093 ERROR: not found, game will not run
bstars2 041-v2.v2 1048576 1c954a9d ERROR: not found, game will not run
bstars2 041-v3.v3 524288 afaa0180 ERROR: not found, game will not run
bstars2 041-c1.c1 1048576 b39a12e1 ERROR: not found, game will not run
bstars2 041-c2.c2 1048576 766cfc2f ERROR: not found, game will not run
bstars2 041-c3.c3 1048576 fb31339d ERROR: not found, game will not run
bstars2 041-c4.c4 1048576 70457a0c ERROR: not found, game will not run
flipshot 247-p1.p1 1048576 95779094 ERROR: not found, game will not run
flipshot 247-s1.s1 131072 6300185c WARNING: wrong name (247-s1.bin)
flipshot 247-m1.m1 131072 a9fe0144 WARNING: wrong name (247-m1.bin)
flipshot 247-v1.v1 2097152 42ec743d WARNING: wrong name (247-v1.bin)
flipshot 247-c1.c1 2097152 c9eedcb2 WARNING: wrong name (247-c1.bin)
flipshot 247-c2.c2 2097152 7d6d6e87 WARNING: wrong name (247-c2.bin)
blazstar 239-p1.p1 1048576 183682f8 ERROR: not found, game will not run
blazstar 239-p2.sp2 2097152 9a9f4154 ERROR: not found, game will not run
blazstar 239-s1.s1 131072 d56cb498 ERROR: not found, game will not run
blazstar 239-m1.m1 131072 d31a3aea ERROR: not found, game will not run
blazstar 239-v1.v1 4194304 1b8d5bf7 ERROR: not found, game will not run
blazstar 239-v2.v2 4194304 74cf0a70 ERROR: not found, game will not run
blazstar 239-c1.c1 4194304 84f6d584 ERROR: not found, game will not run
blazstar 239-c2.c2 4194304 05a0cb22 ERROR: not found, game will not run
blazstar 239-c3.c3 4194304 5fb69c9e ERROR: not found, game will not run
blazstar 239-c4.c4 4194304 0be028c4 ERROR: not found, game will not run
blazstar 239-c5.c5 4194304 74bae5f8 ERROR: not found, game will not run
blazstar 239-c6.c6 4194304 4e0700d2 ERROR: not found, game will not run
blazstar 239-c7.c7 4194304 010ff4fd ERROR: not found, game will not run
blazstar 239-c8.c8 4194304 db60460e ERROR: not found, game will not run
bjourney 022-p1.p1 1048576 6a2f6d4a WARNING: wrong name (022-p1.bin)
bjourney 022-s1.s1 131072 843c3624 WARNING: wrong name (022-s1.bin)
bjourney 022-m1.m1 131072 8e1d4ab6 ERROR: not found, game will not run
bjourney 022-v11.v11 1048576 2cb4ad91 WARNING: wrong name (022-v11.bin)
bjourney 022-v22.v22 1048576 65a54d13 WARNING: wrong name (022-v22.bin)
bjourney 022-c1.c1 1048576 4d47a48c WARNING: wrong name (022-c1.bin)
bjourney 022-c2.c2 1048576 e8c1491a WARNING: wrong name (022-c2.bin)
bjourney 022-c3.c3 524288 66e69753 WARNING: wrong name (022-c3.bin)
bjourney 022-c4.c4 524288 71bfd48a WARNING: wrong name (022-c4.bin)
breakers 230-p1.p1 1048576 ed24a6e6 ERROR: not found, game will not run
breakers 230-s1.s1 131072 076fb64c ERROR: not found, game will not run
breakers 230-m1.m1 131072 3951a1c1 ERROR: not found, game will not run
breakers 230-v1.v1 4194304 7f9ed279 ERROR: not found, game will not run
breakers 230-v2.v2 4194304 1d43e420 ERROR: not found, game will not run
breakers 230-c1.c1 4194304 68d4ae76 ERROR: not found, game will not run
breakers 230-c2.c2 4194304 fdee05cd ERROR: not found, game will not run
breakers 230-c3.c3 4194304 645077f3 ERROR: not found, game will not run
breakers 230-c4.c4 4194304 63aeb74c ERROR: not found, game will not run
breakrev 245-p1.p1 1048576 c828876d ERROR: not found, game will not run
breakrev 245-s1.s1 131072 e7660a5d ERROR: not found, game will not run
breakrev 245-m1.m1 131072 00f31c66 ERROR: not found, game will not run
breakrev 245-v1.v1 4194304 e255446c ERROR: not found, game will not run
breakrev 245-v2.v2 4194304 9068198a ERROR: not found, game will not run
breakrev 245-c1.c1 4194304 68d4ae76 ERROR: not found, game will not run
breakrev 245-c2.c2 4194304 fdee05cd ERROR: not found, game will not run
breakrev 245-c3.c3 4194304 645077f3 ERROR: not found, game will not run
breakrev 245-c4.c4 4194304 63aeb74c ERROR: not found, game will not run
breakrev 245-c5.c5 4194304 b5f40e7f ERROR: not found, game will not run
breakrev 245-c6.c6 4194304 d0337328 ERROR: not found, game will not run
burningf 018-p1.p1 524288 4092c8db ERROR: not found, game will not run
burningf 018-s1.s1 131072 6799ea0d ERROR: not found, game will not run
burningf 018-m1.m1 131072 0c939ee2 ERROR: not found, game will not run
burningf 018-v1.v1 1048576 508c9ffc ERROR: not found, game will not run
burningf 018-v2.v2 1048576 854ef277 ERROR: not found, game will not run
burningf 018-c1.c1 1048576 25a25e9b ERROR: not found, game will not run
burningf 018-c2.c2 1048576 d4378876 ERROR: not found, game will not run
burningf 018-c3.c3 1048576 862b60da ERROR: not found, game will not run
burningf 018-c4.c4 1048576 e2e0aff7 ERROR: not found, game will not run
burningfh 018-hp1.p1 524288 ddffcbf4 ERROR: not found, game will not run
burningfh 018-s1.s1 131072 6799ea0d ERROR: not found, game will not run
burningfh 018-m1.m1 131072 0c939ee2 ERROR: not found, game will not run
burningfh 018-v1.v1 1048576 508c9ffc ERROR: not found, game will not run
burningfh 018-v2.v2 1048576 854ef277 ERROR: not found, game will not run
burningfh 018-c1.c1 1048576 25a25e9b ERROR: not found, game will not run
burningfh 018-c2.c2 1048576 d4378876 ERROR: not found, game will not run
burningfh 018-c3.c3 1048576 862b60da ERROR: not found, game will not run
burningfh 018-c4.c4 1048576 e2e0aff7 ERROR: not found, game will not run
burningfp 018_p1_9397.p1 524288 5b4032e7 ERROR: not found, game will not run
burningfp 018_p2_e335.p2 524288 78762f68 ERROR: not found, game will not run
burningfp 018_s1_9899.s1 131072 f3d130e8 ERROR: not found, game will not run
burningfp 018_m1_4586.m1 131072 470dd5d4 ERROR: not found, game will not run
burningfp 018_v11_56ac.v11 524288 dc07ea3c ERROR: not found, game will not run
burningfp 018_v12_db95.v12 524288 f1ae637c ERROR: not found, game will not run
burningfp 018_v21_98dd.v21 524288 9f3b4eda ERROR: not found, game will not run
burningfp 018_c1_ba06.c11 524288 6569018b ERROR: not found, game will not run
burningfp 018_c2_d534.c12 524288 6949b501 ERROR: not found, game will not run
burningfp 018_c3_9d70.c13 524288 410f653b ERROR: not found, game will not run
burningfp 018_c4_bf9d.c14 524288 d43bf2a5 ERROR: not found, game will not run
burningfp 018_c5_ac9d.c15 524288 837d09d3 ERROR: not found, game will not run
burningfp 018_c6_d2a5.c16 524288 5fee51e7 ERROR: not found, game will not run
burningfp 018_c7_d568.c17 524288 0f3f0823 ERROR: not found, game will not run
burningfp 018_c8_d256.c18 524288 67cc9e34 ERROR: not found, game will not run
marukodq 206-p1.p1 1048576 c33ed21e ERROR: not found, game will not run
marukodq 206-s1.s1 131072 f0b68780 ERROR: not found, game will not run
marukodq 206-m1.m1 131072 0e22902e ERROR: not found, game will not run
marukodq 206-v1.v1 2097152 5385eca8 ERROR: not found, game will not run
marukodq 206-v2.v2 2097152 f8c55404 ERROR: not found, game will not run
marukodq 206-c1.c1 4194304 846e4e8e ERROR: not found, game will not run
marukodq 206-c2.c2 4194304 1cba876d ERROR: not found, game will not run
marukodq 206-c3.c3 1048576 79aa2b48 ERROR: not found, game will not run
marukodq 206-c4.c4 1048576 55e1314d ERROR: not found, game will not run
ctomaday 249-p1.p1 1048576 c9386118 ERROR: not found, game will not run
ctomaday 249-s1.s1 131072 dc9eb372 ERROR: not found, game will not run
ctomaday 249-m1.m1 131072 80328a47 ERROR: not found, game will not run
ctomaday 249-v1.v1 4194304 de7c8f27 ERROR: not found, game will not run
ctomaday 249-v2.v2 1048576 c8e40119 ERROR: not found, game will not run
ctomaday 249-c1.c1 4194304 041fb8ee ERROR: not found, game will not run
ctomaday 249-c2.c2 4194304 74f3cdf4 ERROR: not found, game will not run
ironclad proto_220-c1.c1 4194304 9aa2b7dc ERROR: not found, game will not run
ironclad proto_220-c2.c2 4194304 8a2ad708 ERROR: not found, game will not run
ironclad proto_220-c3.c3 4194304 d67fb15a ERROR: not found, game will not run
ironclad proto_220-c4.c4 4194304 e73ea38b ERROR: not found, game will not run
ironclad proto_220-s1.s1 131072 372fe217 ERROR: not found, game will not run
ironclad proto_220-p1.p1 1048576 62a942c6 ERROR: not found, game will not run
ironclad proto_220-m1.m1 131072 3a08bb63 ERROR: not found, game will not run
ironclad proto_220-v1.v1 4194304 8f30a215 ERROR: not found, game will not run
ironclado proto_220-c1.c1 4194304 9aa2b7dc ERROR: not found, game will not run
ironclado proto_220-c2.c2 4194304 8a2ad708 ERROR: not found, game will not run
ironclado proto_220-c3.c3 4194304 d67fb15a ERROR: not found, game will not run
ironclado proto_220-c4.c4 4194304 e73ea38b ERROR: not found, game will not run
ironclado proto_220-s1.s1 131072 372fe217 ERROR: not found, game will not run
ironclado proto_220-p1o.p1 1048576 ce37e3a0 ERROR: not found, game will not run
ironclado proto_220-m1.m1 131072 3a08bb63 ERROR: not found, game will not run
ironclado proto_220-v1.v1 4194304 8f30a215 ERROR: not found, game will not run
crsword 037-p1.p1 524288 e7f2553c WARNING: wrong name (037-p1.bin)
crsword 037-s1.s1 131072 74651f27 WARNING: wrong name (037-s1.bin)
crsword 037-m1.m1 131072 9504b2c6 ERROR: not found, game will not run
crsword 037-v1.v1 1048576 61fedf65 WARNING: wrong name (037-v1.bin)
crsword 037-c1.c1 1048576 09df6892 WARNING: wrong name (037-c1.bin)
crsword 037-c2.c2 1048576 ac122a78 WARNING: wrong name (037-c2.bin)
crsword 037-c3.c3 1048576 9d7ed1ca WARNING: wrong name (037-c3.bin)
crsword 037-c4.c4 1048576 4a24395d WARNING: wrong name (037-c4.bin)
crsword2 054-p1.p1 1048576 64836147 ERROR: not found, game will not run
crsword2 054-s1.s1 131072 22e02ddd ERROR: not found, game will not run
crsword2 054-m1.m1 131072 63e28343 ERROR: not found, game will not run
crsword2 054-v1.v1 2097152 22d4b93b ERROR: not found, game will not run
crsword2 054-c1.c1 4194304 8221b712 ERROR: not found, game will not run
crsword2 054-c2.c2 4194304 d6c6183d ERROR: not found, game will not run
cthd2003 5003-c1.bin 8388608 68f54b67 ERROR: not found, game will not run
cthd2003 5003-c2.bin 8388608 2f8849d5 ERROR: not found, game will not run
cthd2003 5003-c3.bin 8388608 ac4aff71 ERROR: not found, game will not run
cthd2003 5003-c4.bin 8388608 afef5d66 ERROR: not found, game will not run
cthd2003 5003-c5.bin 8388608 c7c1ae50 ERROR: not found, game will not run
cthd2003 5003-c6.bin 8388608 613197f9 ERROR: not found, game will not run
cthd2003 5003-c7.bin 8388608 64ddfe0f ERROR: not found, game will not run
cthd2003 5003-c8.bin 8388608 917a1439 ERROR: not found, game will not run
cthd2003 5003-p1.bin 1048576 bb7602c1 ERROR: not found, game will not run
cthd2003 5003-p2.bin 4194304 adc1c22b ERROR: not found, game will not run
cthd2003 5003-m1.bin 131072 1a8c274b ERROR: not found, game will not run
cthd2003 5003-s1.bin 131072 5ba29aab ERROR: not found, game will not run
cthd2003 262-v1-08-e0.v1 4194304 83d49ecf ERROR: not found, game will not run
cthd2003 262-v2-08-e0.v2 4194304 003f1843 ERROR: not found, game will not run
cthd2003 262-v3-08-e0.v3 4194304 2ae38dbe ERROR: not found, game will not run
cthd2003 262-v4-08-e0.v4 4194304 26ec4dd9 ERROR: not found, game will not run
ct2k3sp 5003-c1.bin 8388608 68f54b67 ERROR: not found, game will not run
ct2k3sp 5003-c2.bin 8388608 2f8849d5 ERROR: not found, game will not run
ct2k3sp 5003-c3.bin 8388608 ac4aff71 ERROR: not found, game will not run
ct2k3sp 5003-c4.bin 8388608 afef5d66 ERROR: not found, game will not run
ct2k3sp 5003-c5.bin 8388608 c7c1ae50 ERROR: not found, game will not run
ct2k3sp 5003-c6.bin 8388608 613197f9 ERROR: not found, game will not run
ct2k3sp 5003-c7.bin 8388608 64ddfe0f ERROR: not found, game will not run
ct2k3sp 5003-c8.bin 8388608 917a1439 ERROR: not found, game will not run
ct2k3sp 5003-p1sp.bin 1048576 ab5c4de0 ERROR: not found, game will not run
ct2k3sp 5003-p2.bin 4194304 adc1c22b ERROR: not found, game will not run
ct2k3sp 5003-m1.bin 131072 1a8c274b ERROR: not found, game will not run
ct2k3sp 5003-s1sp.bin 262144 6c355ab4 ERROR: not found, game will not run
ct2k3sp 262-v1-08-e0.v1 4194304 83d49ecf ERROR: not found, game will not run
ct2k3sp 262-v2-08-e0.v2 4194304 003f1843 ERROR: not found, game will not run
ct2k3sp 262-v3-08-e0.v3 4194304 2ae38dbe ERROR: not found, game will not run
ct2k3sp 262-v4-08-e0.v4 4194304 26ec4dd9 ERROR: not found, game will not run
cyberlip 010-p1.p1 524288 69a6b42d ERROR: not found, game will not run
cyberlip 010-s1.s1 131072 79a35264 ERROR: not found, game will not run
cyberlip 010-m1.m1 131072 8be3a078 ERROR: not found, game will not run
cyberlip 010-v11.v11 524288 90224d22 ERROR: not found, game will not run
cyberlip 010-v12.v12 524288 a0cf1834 ERROR: not found, game will not run
cyberlip 010-v13.v13 524288 ae38bc84 ERROR: not found, game will not run
cyberlip 010-v14.v14 524288 70899bd2 ERROR: not found, game will not run
cyberlip 010-v21.v21 524288 586f4cb2 ERROR: not found, game will not run
cyberlip 010-c1.c1 524288 8bba5113 ERROR: not found, game will not run
cyberlip 010-c2.c2 524288 cbf66432 ERROR: not found, game will not run
cyberlip 010-c3.c3 524288 e4f86efc ERROR: not found, game will not run
cyberlip 010-c4.c4 524288 f7be4674 ERROR: not found, game will not run
cyberlip 010-c5.c5 524288 e8076da0 ERROR: not found, game will not run
cyberlip 010-c6.c6 524288 c495c567 ERROR: not found, game will not run
diggerma dig-p1.bin 524288 eda433d7 WARNING: wrong name (dig_p1.rom)
diggerma dig-s1.bin 65536 9b3168f0 ERROR: not found, game will not run
diggerma dig-m1.bin 65536 e777a234 ERROR: not found, game will not run
diggerma dig-v1.bin 524288 ee15bda4 WARNING: wrong name (dig_v1.rom)
diggerma dig-c1.bin 524288 3db0a4ed WARNING: wrong name (dig_c1.rom)
diggerma dig-c2.bin 524288 3e632161 WARNING: wrong name (dig_c2.rom)
doubledr 082-p1.p1 1048576 34ab832a ERROR: not found, game will not run
doubledr 082-s1.s1 131072 bef995c5 ERROR: not found, game will not run
doubledr 082-m1.m1 131072 10b144de ERROR: not found, game will not run
doubledr 082-v1.v1 2097152 cc1128e4 ERROR: not found, game will not run
doubledr 082-v2.v2 2097152 c3ff5554 ERROR: not found, game will not run
doubledr 082-c1.c1 2097152 b478c725 ERROR: not found, game will not run
doubledr 082-c2.c2 2097152 2857da32 ERROR: not found, game will not run
doubledr 082-c3.c3 2097152 8b0d378e ERROR: not found, game will not run
doubledr 082-c4.c4 2097152 c7d2f596 ERROR: not found, game will not run
doubledr 082-c5.c5 2097152 ec87bff6 ERROR: not found, game will not run
doubledr 082-c6.c6 2097152 844a8a11 ERROR: not found, game will not run
doubledr 082-c7.c7 1048576 727c4d02 ERROR: not found, game will not run
doubledr 082-c8.c8 1048576 69a5fa37 ERROR: not found, game will not run
dragonsh EP2.bin 524288 f25c71ad ERROR: not found, game will not run
dragonsh EP1.bin 524288 f353448c ERROR: not found, game will not run
dragonsh s1.s1 131072 706477a7 ERROR: not found, game will not run
dragonsh no3.bin 16777216 81821826 ERROR: not found, game will not run
dragonsh no4.bin 16777216 3601d568 ERROR: not found, game will not run
eightman 025-p1.p1 524288 43344cb0 WARNING: wrong name (025-p1.bin)
eightman 025-s1.s1 131072 a402202b WARNING: wrong name (025-s1.bin)
eightman 025-m1.m1 131072 9927034c WARNING: wrong name (025-m1.bin)
eightman 025-v1.v1 1048576 4558558a WARNING: wrong name (025-v1.bin)
eightman 025-v2.v2 1048576 c5e052e9 WARNING: wrong name (025-v2.bin)
eightman 025-c1.c1 1048576 555e16a4 WARNING: wrong name (025-c1.bin)
eightman 025-c2.c2 1048576 e1ee51c3 WARNING: wrong name (025-c2.bin)
eightman 025-c3.c3 524288 0923d5b0 WARNING: wrong name (025-c3.bin)
eightman 025-c4.c4 524288 e3eca67b WARNING: wrong name (025-c4.bin)
fatfury1 033-p1.p1 524288 47ebdc2f ERROR: not found, game will not run
fatfury1 033-p2.p2 131072 c473af1c ERROR: not found, game will not run
fatfury1 033-s1.s1 131072 3c3bdf8c ERROR: not found, game will not run
fatfury1 033-m1.m1 131072 5be10ffd ERROR: not found, game will not run
fatfury1 033-v1.v1 1048576 212fd20d ERROR: not found, game will not run
fatfury1 033-v2.v2 1048576 fa2ae47f ERROR: not found, game will not run
fatfury1 033-c1.c1 1048576 74317e54 ERROR: not found, game will not run
fatfury1 033-c2.c2 1048576 5bb952f3 ERROR: not found, game will not run
fatfury1 033-c3.c3 1048576 9b714a7c ERROR: not found, game will not run
fatfury1 033-c4.c4 1048576 9397476a ERROR: not found, game will not run
fatfury2 047-p1.p1 1048576 ecfdbb69 ERROR: not found, game will not run
fatfury2 047-s1.s1 131072 d7dbbf39 ERROR: not found, game will not run
fatfury2 047-m1.m1 131072 820b0ba7 ERROR: not found, game will not run
fatfury2 047-v1.v1 2097152 d9d00784 ERROR: not found, game will not run
fatfury2 047-v2.v2 2097152 2c9a4b33 ERROR: not found, game will not run
fatfury2 047-c1.c1 1048576 f72a939e ERROR: not found, game will not run
fatfury2 047-c2.c2 1048576 05119a0d ERROR: not found, game will not run
fatfury2 047-c3.c3 1048576 01e00738 ERROR: not found, game will not run
fatfury2 047-c4.c4 1048576 9fe27432 ERROR: not found, game will not run
fatfursp 058-p1.p1 1048576 2f585ba2 ERROR: not found, game will not run
fatfursp 058-p2.sp2 524288 d7c71a6b ERROR: not found, game will not run
fatfursp 058-s1.s1 131072 2df03197 ERROR: not found, game will not run
fatfursp 058-m1.m1 131072 ccc5186e ERROR: not found, game will not run
fatfursp 058-v1.v1 2097152 55d7ce84 ERROR: not found, game will not run
fatfursp 058-v2.v2 2097152 ee080b10 ERROR: not found, game will not run
fatfursp 058-v3.v3 1048576 f9eb3d4a ERROR: not found, game will not run
fatfursp 058-c1.c1 2097152 044ab13c ERROR: not found, game will not run
fatfursp 058-c2.c2 2097152 11e6bf96 ERROR: not found, game will not run
fatfursp 058-c3.c3 2097152 6f7938d5 ERROR: not found, game will not run
fatfursp 058-c4.c4 2097152 4ad066ff ERROR: not found, game will not run
fatfursp 058-c5.c5 2097152 49c5e0bf ERROR: not found, game will not run
fatfursp 058-c6.c6 2097152 8ff1f43d ERROR: not found, game will not run
fatfurspa 058-p1.p1 1048576 2f585ba2 ERROR: not found, game will not run
fatfurspa 058-p2.sp2 524288 d7c71a6b ERROR: not found, game will not run
fatfurspa 058-epr.ep1 524288 9f0c1e1a ERROR: not found, game will not run
fatfurspa 058-s1.s1 131072 2df03197 ERROR: not found, game will not run
fatfurspa 058-m1.m1 131072 ccc5186e ERROR: not found, game will not run
fatfurspa 058-v1.v1 2097152 55d7ce84 ERROR: not found, game will not run
fatfurspa 058-v2.v2 2097152 ee080b10 ERROR: not found, game will not run
fatfurspa 058-v3.v3 1048576 f9eb3d4a ERROR: not found, game will not run
fatfurspa 058-c1.c1 2097152 044ab13c ERROR: not found, game will not run
fatfurspa 058-c2.c2 2097152 11e6bf96 ERROR: not found, game will not run
fatfurspa 058-c3.c3 2097152 6f7938d5 ERROR: not found, game will not run
fatfurspa 058-c4.c4 2097152 4ad066ff ERROR: not found, game will not run
fatfurspa 058-c5.c5 2097152 49c5e0bf ERROR: not found, game will not run
fatfurspa 058-c6.c6 2097152 8ff1f43d ERROR: not found, game will not run
fatfury3 069-p1.p1 1048576 a8bcfbbc ERROR: not found, game will not run
fatfury3 069-sp2.sp2 2097152 dbe963ed ERROR: not found, game will not run
fatfury3 069-s1.s1 131072 0b33a800 ERROR: not found, game will not run
fatfury3 069-m1.m1 131072 fce72926 ERROR: not found, game will not run
fatfury3 069-v1.v1 4194304 2bdbd4db ERROR: not found, game will not run
fatfury3 069-v2.v2 4194304 a698a487 ERROR: not found, game will not run
fatfury3 069-v3.v3 2097152 581c5304 ERROR: not found, game will not run
fatfury3 069-c1.c1 4194304 e302f93c ERROR: not found, game will not run
fatfury3 069-c2.c2 4194304 1053a455 ERROR: not found, game will not run
fatfury3 069-c3.c3 4194304 1c0fde2f ERROR: not found, game will not run
fatfury3 069-c4.c4 4194304 a25fc3d0 ERROR: not found, game will not run
fatfury3 069-c5.c5 2097152 b3ec6fa6 ERROR: not found, game will not run
fatfury3 069-c6.c6 2097152 69210441 ERROR: not found, game will not run
fightfev 060-p1.p1 1048576 2a104b50 ERROR: not found, game will not run
fightfev 060-s1.s1 131072 d62a72e9 ERROR: not found, game will not run
fightfev 060-m1.m1 131072 0b7c4e65 ERROR: not found, game will not run
fightfev 060-v1.v1 2097152 f417c215 ERROR: not found, game will not run
fightfev 060-v2.v2 1048576 efcff7cf ERROR: not found, game will not run
fightfev 060-c1.c1 2097152 8908fff9 ERROR: not found, game will not run
fightfev 060-c2.c2 2097152 c6649492 ERROR: not found, game will not run
fightfev 060-c3.c3 2097152 0956b437 ERROR: not found, game will not run
fightfev 060-c4.c4 2097152 026f3b62 ERROR: not found, game will not run
fightfeva 060-p1.p1 1048576 2a104b50 ERROR: not found, game will not run
fightfeva 1.sp2 524288 3032041b ERROR: not found, game will not run
fightfeva 060-s1.s1 131072 d62a72e9 ERROR: not found, game will not run
fightfeva 060-m1.m1 131072 0b7c4e65 ERROR: not found, game will not run
fightfeva 060-v1.v1 2097152 f417c215 ERROR: not found, game will not run
fightfeva 060-v2.v2 1048576 efcff7cf ERROR: not found, game will not run
fightfeva 060-c1.c1 2097152 8908fff9 ERROR: not found, game will not run
fightfeva 060-c2.c2 2097152 c6649492 ERROR: not found, game will not run
fightfeva 060-c3.c3 2097152 0956b437 ERROR: not found, game will not run
fightfeva 060-c4.c4 2097152 026f3b62 ERROR: not found, game will not run
from2 098-p1.rom 524288 09675541 ERROR: not found, game will not run
from2 098-s1.rom 131072 0e6a7c73 ERROR: not found, game will not run
from2 098-m1.rom 131072 da4878cf ERROR: not found, game will not run
from2 098-v1.rom 1048576 6f8ccddc ERROR: not found, game will not run
from2 098-c1.rom 4194304 29148bf7 ERROR: not found, game will not run
from2 098-c2.rom 4194304 226b1263 ERROR: not found, game will not run
fbfrenzy 034-p1.p1 524288 cdef6b19 ERROR: not found, game will not run
fbfrenzy 034-s1.s1 131072 8472ed44 ERROR: not found, game will not run
fbfrenzy 034-m1.m1 131072 f41b16b8 ERROR: not found, game will not run
fbfrenzy 034-v1.v1 1048576 50c9d0dd ERROR: not found, game will not run
fbfrenzy 034-v2.v2 1048576 5aa15686 ERROR: not found, game will not run
fbfrenzy 034-c1.c1 1048576 91c56e78 ERROR: not found, game will not run
fbfrenzy 034-c2.c2 1048576 9743ea2f ERROR: not found, game will not run
fbfrenzy 034-c3.c3 524288 e5aa65f5 ERROR: not found, game will not run
fbfrenzy 034-c4.c4 524288 0eb138cc ERROR: not found, game will not run
ganryu 252-c1.c1 8388608 50ee7882 ERROR: not found, game will not run
ganryu 252-c2.c2 8388608 62585474 ERROR: not found, game will not run
ganryu 252-p1.p1 1048576 4b8ac4fb ERROR: not found, game will not run
ganryu 252-m1.m1 131072 30cc4099 ERROR: not found, game will not run
ganryu 252-v1.v1 4194304 e5946733 ERROR: not found, game will not run
ganryun gann_c1.rom 8388608 6bf7605b ERROR: not found, game will not run
ganryun gann_c2.rom 8388608 596792ce ERROR: not found, game will not run
ganryun 252-p1.p1 1048576 4b8ac4fb ERROR: not found, game will not run
ganryun gann_s1.rom 131072 a8dadec9 ERROR: not found, game will not run
ganryun 252-m1.m1 131072 30cc4099 ERROR: not found, game will not run
ganryun 252-v1.v1 4194304 e5946733 ERROR: not found, game will not run
garou 253-c1.c1 8388608 0603e046 ERROR: not found, game will not run
garou 253-c2.c2 8388608 0917d2a4 ERROR: not found, game will not run
garou 253-c3.c3 8388608 6737c92d ERROR: not found, game will not run
garou 253-c4.c4 8388608 5ba92ec6 ERROR: not found, game will not run
garou 253-c5.c5 8388608 3eab5557 ERROR: not found, game will not run
garou 253-c6.c6 8388608 308d098b ERROR: not found, game will not run
garou 253-c7.c7 8388608 c0e995ae ERROR: not found, game will not run
garou 253-c8.c8 8388608 21a11303 ERROR: not found, game will not run
garou 253-ep1.p1 2097152 ea3171a4 ERROR: not found, game will not run
garou 253-ep2.p2 2097152 382f704b ERROR: not found, game will not run
garou 253-ep3.p3 2097152 e395bfdd ERROR: not found, game will not run
garou 253-ep4.p4 2097152 da92c08e ERROR: not found, game will not run
garou kf.neo-sma 262144 98bc93dc ERROR: not found, game will not run
garou 253-m1.m1 262144 36a806be ERROR: not found, game will not run
garou 253-v1.v1 4194304 263e388c ERROR: not found, game will not run
garou 253-v2.v2 4194304 2c6bc7be ERROR: not found, game will not run
garou 253-v3.v3 4194304 0425b27d ERROR: not found, game will not run
garou 253-v4.v4 4194304 a54be8a9 ERROR: not found, game will not run
garouh 253-c1.c1 8388608 0603e046 ERROR: not found, game will not run
garouh 253-c2.c2 8388608 0917d2a4 ERROR: not found, game will not run
garouh 253-c3.c3 8388608 6737c92d ERROR: not found, game will not run
garouh 253-c4.c4 8388608 5ba92ec6 ERROR: not found, game will not run
garouh 253-c5.c5 8388608 3eab5557 ERROR: not found, game will not run
garouh 253-c6.c6 8388608 308d098b ERROR: not found, game will not run
garouh 253-c7.c7 8388608 c0e995ae ERROR: not found, game will not run
garouh 253-c8.c8 8388608 21a11303 ERROR: not found, game will not run
garouh 253-p1.p1 4194304 18ae5d7e ERROR: not found, game will not run
garouh 253-p2.p2 4194304 afffa779 ERROR: not found, game will not run
garouh ke.neo-sma 262144 96c72233 ERROR: not found, game will not run
garouh 253-m1.m1 262144 36a806be ERROR: not found, game will not run
garouh 253-v1.v1 4194304 263e388c ERROR: not found, game will not run
garouh 253-v2.v2 4194304 2c6bc7be ERROR: not found, game will not run
garouh 253-v3.v3 4194304 0425b27d ERROR: not found, game will not run
garouh 253-v4.v4 4194304 a54be8a9 ERROR: not found, game will not run
garoun motwn_c1.rom 8388608 497be3f2 ERROR: not found, game will not run
garoun motwn_c2.rom 8388608 6a9e95ca ERROR: not found, game will not run
garoun motwn_c3.rom 8388608 39373d2f ERROR: not found, game will not run
garoun motwn_c4.rom 8388608 4de23f6c ERROR: not found, game will not run
garoun motwn_c5.rom 8388608 16634ba5 ERROR: not found, game will not run
garoun motwn_c6.rom 8388608 95671ffd ERROR: not found, game will not run
garoun motwn_c7.rom 8388608 e36ce77f ERROR: not found, game will not run
garoun motwn_c8.rom 8388608 ddbd1096 ERROR: not found, game will not run
garoun 253-ep1.p1 2097152 ea3171a4 ERROR: not found, game will not run
garoun 253-ep2.p2 2097152 382f704b ERROR: not found, game will not run
garoun 253-ep3.p3 2097152 e395bfdd ERROR: not found, game will not run
garoun 253-ep4.p4 2097152 da92c08e ERROR: not found, game will not run
garoun kf.neo-sma 262144 98bc93dc ERROR: not found, game will not run
garoun 253-m1.m1 262144 36a806be ERROR: not found, game will not run
garoun 253-v1.v1 4194304 263e388c ERROR: not found, game will not run
garoun 253-v2.v2 4194304 2c6bc7be ERROR: not found, game will not run
garoun 253-v3.v3 4194304 0425b27d ERROR: not found, game will not run
garoun 253-v4.v4 4194304 a54be8a9 ERROR: not found, game will not run
garoup proto_253-p1.p1 1048576 c72f0c16 ERROR: not found, game will not run
garoup proto_253-p2.p2 4194304 bf8de565 ERROR: not found, game will not run
garoup proto_253-s1.s1 131072 779989de ERROR: not found, game will not run
garoup proto_253-m1.m1 262144 bbe464f7 ERROR: not found, game will not run
garoup proto_253-v1.v1 4194304 274f3923 ERROR: not found, game will not run
garoup proto_253-v2.v2 4194304 8f86dabe ERROR: not found, game will not run
garoup proto_253-v3.v3 4194304 05fd06cd ERROR: not found, game will not run
garoup proto_253-v4.v4 4194304 14984063 ERROR: not found, game will not run
garoup proto_253-c1.c1 8388608 5bb5d137 ERROR: not found, game will not run
garoup proto_253-c2.c2 8388608 5c8d2960 ERROR: not found, game will not run
garoup proto_253-c3.c3 8388608 234d16fc ERROR: not found, game will not run
garoup proto_253-c4.c4 8388608 b9b5b993 ERROR: not found, game will not run
garoup proto_253-c5.c5 8388608 722615d2 ERROR: not found, game will not run
garoup proto_253-c6.c6 8388608 0a6fab38 ERROR: not found, game will not run
garoup proto_253-c7.c7 8388608 d68e806f ERROR: not found, game will not run
garoup proto_253-c8.c8 8388608 f778fe99 ERROR: not found, game will not run
garoubl garou-p1.bin 1048576 fd446d59 ERROR: not found, game will not run
garoubl garou-p2.bin 4194304 3fb10a84 ERROR: not found, game will not run
garoubl garou-s1.bin 131072 df720e33 ERROR: not found, game will not run
garoubl garou-m1.bin 524288 7c51d002 ERROR: not found, game will not run
garoubl garou-c1.bin 16777216 e2ac83fa ERROR: not found, game will not run
garoubl garou-c2.bin 16777216 7c344b24 ERROR: not found, game will not run
garoubl garou-c3.bin 16777216 d3aec5a6 ERROR: not found, game will not run
garoubl garou-c4.bin 16777216 e02a242d ERROR: not found, game will not run
garoubl garou-v1.bin 4194304 98d736e4 ERROR: not found, game will not run
garoubl garou-v2.bin 4194304 eb43c03f ERROR: not found, game will not run
garoubl garou-v3.bin 4194304 10a0f814 ERROR: not found, game will not run
garoubl garou-v4.bin 4194304 8918fdd3 ERROR: not found, game will not run
gpilots 020-p1.p1 524288 e6f2fe64 ERROR: not found, game will not run
gpilots 020-p2.p2 131072 edcb22ac ERROR: not found, game will not run
gpilots 020-s1.s1 131072 a6d83d53 ERROR: not found, game will not run
gpilots 020-m1.m1 131072 48409377 ERROR: not found, game will not run
gpilots 020-v11.v11 1048576 1b526c8b ERROR: not found, game will not run
gpilots 020-v12.v12 524288 4a9e6f03 ERROR: not found, game will not run
gpilots 020-v21.v21 524288 7abf113d ERROR: not found, game will not run
gpilots 020-c1.c1 1048576 bd6fe78e ERROR: not found, game will not run
gpilots 020-c2.c2 1048576 5f4a925c ERROR: not found, game will not run
gpilots 020-c3.c3 1048576 d1e42fd0 ERROR: not found, game will not run
gpilots 020-c4.c4 1048576 edde439b ERROR: not found, game will not run
gpilotsh 020-hp1.p1 524288 7cdb01ce ERROR: not found, game will not run
gpilotsh 020-p2.p2 131072 edcb22ac ERROR: not found, game will not run
gpilotsh 020-s1.s1 131072 a6d83d53 ERROR: not found, game will not run
gpilotsh 020-m1.m1 131072 48409377 ERROR: not found, game will not run
gpilotsh 020-v11.v11 1048576 1b526c8b ERROR: not found, game will not run
gpilotsh 020-v12.v12 524288 4a9e6f03 ERROR: not found, game will not run
gpilotsh 020-v21.v21 524288 7abf113d ERROR: not found, game will not run
gpilotsh 020-c1.c1 1048576 bd6fe78e ERROR: not found, game will not run
gpilotsh 020-c2.c2 1048576 5f4a925c ERROR: not found, game will not run
gpilotsh 020-c3.c3 1048576 d1e42fd0 ERROR: not found, game will not run
gpilotsh 020-c4.c4 1048576 edde439b ERROR: not found, game will not run
ghostlop proto_228-p1.p1 1048576 6033172e ERROR: not found, game will not run
ghostlop proto_228-s1.s1 131072 83c24e81 ERROR: not found, game will not run
ghostlop proto_228-m1.m1 131072 fd833b33 ERROR: not found, game will not run
ghostlop proto_228-v1.v1 2097152 c603fce6 ERROR: not found, game will not run
ghostlop proto_228-c1.c1 4194304 bfc99efe ERROR: not found, game will not run
ghostlop proto_228-c2.c2 4194304 69788082 ERROR: not found, game will not run
goalx3 209-p1.p1 1048576 2a019a79 ERROR: not found, game will not run
goalx3 209-s1.s1 131072 c0eaad86 ERROR: not found, game will not run
goalx3 209-m1.m1 131072 cd758325 ERROR: not found, game will not run
goalx3 209-v1.v1 2097152 ef214212 ERROR: not found, game will not run
goalx3 209-c1.c1 4194304 b49d980e ERROR: not found, game will not run
goalx3 209-c2.c2 4194304 5649b015 ERROR: not found, game will not run
goalx3 209-c3.c3 1048576 5f91bace ERROR: not found, game will not run
goalx3 209-c4.c4 1048576 1e9f76f2 ERROR: not found, game will not run
gururin 067-p1.p1 524288 4cea8a49 WARNING: wrong name (067-p1.bin)
gururin 067-s1.s1 131072 b119e1eb ERROR: not found, game will not run
gururin 067-m1.m1 131072 9e3c6328 ERROR: not found, game will not run
gururin 067-v1.v1 524288 cf23afd0 WARNING: wrong name (067-v1.bin)
gururin 067-c1.c1 2097152 35866126 WARNING: wrong name (067-c1.bin)
gururin 067-c2.c2 2097152 9db64084 WARNING: wrong name (067-c2.bin)
janshin 048-p1.p1 1048576 fa818cbb ERROR: not found, game will not run
janshin 048-s1.s1 131072 8285b25a ERROR: not found, game will not run
janshin 048-m1.m1 131072 310467c7 ERROR: not found, game will not run
janshin 048-v1.v1 2097152 f1947d2b ERROR: not found, game will not run
janshin 048-c1.c1 2097152 3fa890e9 ERROR: not found, game will not run
janshin 048-c2.c1 2097152 59c48ad8 ERROR: not found, game will not run
kabukikl 092-p1.p1 1048576 28ec9b77 ERROR: not found, game will not run
kabukikl 092-s1.s1 131072 a3d68ee2 ERROR: not found, game will not run
kabukikl 092-m1.m1 131072 91957ef6 ERROR: not found, game will not run
kabukikl 092-v1.v1 2097152 69e90596 ERROR: not found, game will not run
kabukikl 092-v2.v2 2097152 7abdb75d ERROR: not found, game will not run
kabukikl 092-v3.v3 2097152 eccc98d3 ERROR: not found, game will not run
kabukikl 092-v4.v4 1048576 a7c9c949 ERROR: not found, game will not run
kabukikl 092-c1.c1 4194304 2a9fab01 ERROR: not found, game will not run
kabukikl 092-c2.c2 4194304 6d2bac02 ERROR: not found, game will not run
kabukikl 092-c3.c3 4194304 5da735d6 ERROR: not found, game will not run
kabukikl 092-c4.c4 4194304 de07f997 ERROR: not found, game will not run
karnovr 066-p1.p1 1048576 8c86fd22 ERROR: not found, game will not run
karnovr 066-s1.s1 131072 bae5d5e5 ERROR: not found, game will not run
karnovr 066-m1.m1 131072 030beae4 ERROR: not found, game will not run
karnovr 066-v1.v1 2097152 0b7ea37a ERROR: not found, game will not run
karnovr 066-c1.c1 2097152 09dfe061 ERROR: not found, game will not run
karnovr 066-c2.c2 2097152 e0f6682a ERROR: not found, game will not run
karnovr 066-c3.c3 2097152 a673b4f7 ERROR: not found, game will not run
karnovr 066-c4.c4 2097152 cb3dc5f4 ERROR: not found, game will not run
karnovr 066-c5.c5 2097152 9a28785d ERROR: not found, game will not run
karnovr 066-c6.c6 2097152 c15c01ed ERROR: not found, game will not run
kog 5232-c1a.bin 8388608 4eab9b0a ERROR: not found, game will not run
kog 5232-c2a.bin 8388608 697f8fd0 ERROR: not found, game will not run
kog 5232-c1b.bin 8388608 1143fdf3 ERROR: not found, game will not run
kog 5232-c2b.bin 8388608 ea82cf8f ERROR: not found, game will not run
kog 5232-c3.bin 4194304 abd1be07 ERROR: not found, game will not run
kog 5232-c4.bin 4194304 d2bd967b ERROR: not found, game will not run
kog 5232-p1.bin 1048576 d2413ec6 ERROR: not found, game will not run
kog 232-p2.sp2 4194304 158b23f6 ERROR: not found, game will not run
kog 5232-s1.bin 131072 0bef69da ERROR: not found, game will not run
kog 232-m1.m1 131072 45348747 ERROR: not found, game will not run
kog 232-v1.v1 4194304 22a2b5b5 ERROR: not found, game will not run
kog 232-v2.v2 4194304 2304e744 ERROR: not found, game will not run
kog 232-v3.v3 4194304 759eb954 ERROR: not found, game will not run
kotm 016-p1.p1 524288 1b818731 ERROR: not found, game will not run
kotm 016-p2.p2 131072 12afdc2b ERROR: not found, game will not run
kotm 016-s1.s1 131072 1a2eeeb3 ERROR: not found, game will not run
kotm 016-m1.m1 131072 9da9ca10 ERROR: not found, game will not run
kotm 016-v1.v1 1048576 86c0a502 ERROR: not found, game will not run
kotm 016-v2.v2 1048576 5bc23ec5 ERROR: not found, game will not run
kotm 016-c1.c1 1048576 71471c25 ERROR: not found, game will not run
kotm 016-c2.c2 1048576 320db048 ERROR: not found, game will not run
kotm 016-c3.c3 1048576 98de7995 ERROR: not found, game will not run
kotm 016-c4.c4 1048576 070506e2 ERROR: not found, game will not run
kotmh 016-hp1.p1 524288 b774621e ERROR: not found, game will not run
kotmh 016-p2.p2 131072 12afdc2b ERROR: not found, game will not run
kotmh 016-s1.s1 131072 1a2eeeb3 ERROR: not found, game will not run
kotmh 016-m1.m1 131072 9da9ca10 ERROR: not found, game will not run
kotmh 016-v1.v1 1048576 86c0a502 ERROR: not found, game will not run
kotmh 016-v2.v2 1048576 5bc23ec5 ERROR: not found, game will not run
kotmh 016-c1.c1 1048576 71471c25 ERROR: not found, game will not run
kotmh 016-c2.c2 1048576 320db048 ERROR: not found, game will not run
kotmh 016-c3.c3 1048576 98de7995 ERROR: not found, game will not run
kotmh 016-c4.c4 1048576 070506e2 ERROR: not found, game will not run
kotm2 039-p1.p1 524288 b372d54c ERROR: not found, game will not run
kotm2 039-p2.p2 524288 28661afe ERROR: not found, game will not run
kotm2 039-s1.s1 131072 63ee053a ERROR: not found, game will not run
kotm2 039-m1.m1 131072 0c5b2ad5 ERROR: not found, game will not run
kotm2 039-v2.v2 2097152 86d34b25 ERROR: not found, game will not run
kotm2 039-v4.v4 1048576 8fa62a0b ERROR: not found, game will not run
kotm2 039-c1.c1 1048576 6d1c4aa9 ERROR: not found, game will not run
kotm2 039-c2.c2 1048576 f7b75337 ERROR: not found, game will not run
kotm2 039-c3.c3 524288 bfc4f0b2 ERROR: not found, game will not run
kotm2 039-c4.c4 524288 81c9c250 ERROR: not found, game will not run
kotm2p proto_039-p1.p1 524288 3c1d17e7 ERROR: not found, game will not run
kotm2p proto_039-p2.p2 524288 bc9691f0 ERROR: not found, game will not run
kotm2p 039-s1.s1 131072 63ee053a ERROR: not found, game will not run
kotm2p 039-m1.m1 131072 0c5b2ad5 ERROR: not found, game will not run
kotm2p proto_039-v1.v1 524288 dd3566f1 ERROR: not found, game will not run
kotm2p proto_039-v2.v2 524288 57f60274 ERROR: not found, game will not run
kotm2p proto_039-v3.v3 524288 0f008a07 ERROR: not found, game will not run
kotm2p proto_039-v4.v4 524288 1943d0fe ERROR: not found, game will not run
kotm2p proto_039-v5.v5 524288 13be045b ERROR: not found, game will not run
kotm2p proto_039-v6.v6 524288 d1dd3fd6 ERROR: not found, game will not run
kotm2p proto_039-c1.c1 1048576 7192a787 ERROR: not found, game will not run
kotm2p proto_039-c2.c2 1048576 7157eca1 ERROR: not found, game will not run
kotm2p proto_039-c3.c3 1048576 11d75727 ERROR: not found, game will not run
kotm2p proto_039-c4.c4 1048576 7ad48b28 ERROR: not found, game will not run
kotm2p proto_039-c5.c5 524288 5bdaf9ca ERROR: not found, game will not run
kotm2p proto_039-c6.c6 524288 21d4be8c ERROR: not found, game will not run
kotm2p proto_039-c7.c7 524288 da55fd00 ERROR: not found, game will not run
kotm2p proto_039-c8.c8 524288 592e9267 ERROR: not found, game will not run
kizuna 216-p1.p1 1048576 75d2b3de ERROR: not found, game will not run
kizuna 216-s1.s1 131072 efdc72d7 ERROR: not found, game will not run
kizuna 216-m1.m1 131072 1b096820 ERROR: not found, game will not run
kizuna 059-v1.v1 2097152 530c50fd ERROR: not found, game will not run
kizuna 216-v2.v2 2097152 03667a8d ERROR: not found, game will not run
kizuna 059-v3.v3 2097152 7038c2f9 ERROR: not found, game will not run
kizuna 216-v4.v4 2097152 31b99bd6 ERROR: not found, game will not run
kizuna 059-c1.c1 2097152 763ba611 ERROR: not found, game will not run
kizuna 059-c2.c2 2097152 e05e8ca6 ERROR: not found, game will not run
kizuna 216-c3.c3 4194304 665c9f16 ERROR: not found, game will not run
kizuna 216-c4.c4 4194304 7f5d03db ERROR: not found, game will not run
kizuna 059-c5.c5 2097152 59013f9e ERROR: not found, game will not run
kizuna 059-c6.c6 2097152 1c8d5def ERROR: not found, game will not run
kizuna 059-c7.c7 2097152 c88f7035 ERROR: not found, game will not run
kizuna 059-c8.c8 2097152 484ce3ba ERROR: not found, game will not run
lans2004 lnsq-c1.bin 8388608 b83de59f ERROR: not found, game will not run
lans2004 lnsq-c2.bin 8388608 e08969fd ERROR: not found, game will not run
lans2004 lnsq-c3.bin 8388608 013f2cda ERROR: not found, game will not run
lans2004 lnsq-c4.bin 8388608 d8c3a758 ERROR: not found, game will not run
lans2004 lnsq-c5.bin 8388608 75500b82 ERROR: not found, game will not run
lans2004 lnsq-c6.bin 8388608 670ac13b ERROR: not found, game will not run
lans2004 lnsq-p1.bin 1048576 b40a879a ERROR: not found, game will not run
lans2004 lnsq-p21.bin 2097152 ecdb2d42 ERROR: not found, game will not run
lans2004 lnsq-p22.bin 2097152 fac5e2e7 ERROR: not found, game will not run
lans2004 lnsq-s1.bin 131072 39e82897 ERROR: not found, game will not run
lans2004 246-m1.bin 131072 d0604ad1 ERROR: not found, game will not run
lans2004 lnsq-v1.bin 4194304 4408ebc3 ERROR: not found, game will not run
lans2004 lnsq-v2.bin 4194304 3d953975 ERROR: not found, game will not run
lans2004 lnsq-v3.bin 2097152 437d1d8e ERROR: not found, game will not run
lresort 024-p1.p1 524288 89c4ab97 WARNING: wrong name (024-p1.bin)
lresort 024-s1.s1 131072 5cef5cc6 WARNING: wrong name (024-s1.bin)
lresort 024-m1.m1 131072 cec19742 WARNING: wrong name (024-m1.bin)
lresort 024-v1.v1 1048576 efdfa063 WARNING: wrong name (024-v1.bin)
lresort 024-v2.v2 1048576 3c7997c0 WARNING: wrong name (024-v2.bin)
lresort 024-c1.c1 1048576 3617c2dc WARNING: wrong name (024-c1.bin)
lresort 024-c2.c2 1048576 3f0a7fd8 WARNING: wrong name (024-c2.bin)
lresort 024-c3.c3 524288 e9f745f8 WARNING: wrong name (024-c3.bin)
lresort 024-c4.c4 524288 7382fefb WARNING: wrong name (024-c4.bin)
lresortp 024_p1_5937.podd 524288 8e6008ee ERROR: not found, game will not run
lresortp 024_p2_8d37.peven 524288 6d9ee90f ERROR: not found, game will not run
lresortp 024_s1_22fe.s1 131072 5cef5cc6 WARNING: wrong name (024-s1.bin)
lresortp 024_m1_fc7a.m1 131072 22122875 ERROR: not found, game will not run
lresortp 024_v11_b085.v11 524288 0722da38 ERROR: not found, game will not run
lresortp 024_v12_d3b7.v12 524288 670ce3ec ERROR: not found, game will not run
lresortp 024_v13_a31e.v13 524288 2e39462b ERROR: not found, game will not run
lresortp 024_v24_2f0f.v24 524288 7944754f ERROR: not found, game will not run
lresortp 024_c1_b764.c1 524288 677749ec ERROR: not found, game will not run
lresortp 024_c2_1951.c2 524288 104d7b59 ERROR: not found, game will not run
lresortp 024_c3_0f63.c3 524288 b0965a74 ERROR: not found, game will not run
lresortp 024_c4_c5b5.c4 524288 dcfc3860 ERROR: not found, game will not run
lresortp 024_c5_dd03.c5 524288 50322397 ERROR: not found, game will not run
lresortp 024_c6_c81a.c6 524288 c3c93894 ERROR: not found, game will not run
lresortp 024_c7_5edc.c7 524288 21faf72b ERROR: not found, game will not run
lresortp 024_c8_0850.c8 524288 fb57217b ERROR: not found, game will not run
lbowling 019-p1.p1 524288 a2de8445 WARNING: wrong name (019-p1.bin)
lbowling 019-s1.s1 131072 5fcdc0ed WARNING: wrong name (019-s1.bin)
lbowling 019-m1.m1 131072 d568c17d ERROR: not found, game will not run
lbowling 019-v11.v11 524288 0fb74872 WARNING: wrong name (019-v11.bin)
lbowling 019-v12.v12 524288 029faa57 WARNING: wrong name (019-v12.bin)
lbowling 019-v21.v21 524288 2efd5ada WARNING: wrong name (019-v21.bin)
lbowling 019-c1.c1 524288 4ccdef18 WARNING: wrong name (019-c1.bin)
lbowling 019-c2.c2 524288 d4dd0802 WARNING: wrong name (019-c2.bin)
legendos 029-p1.p1 524288 9d563f19 WARNING: wrong name (029-p1.bin)
legendos 029-s1.s1 131072 bcd502f0 WARNING: wrong name (029-s1.bin)
legendos 029-m1.m1 131072 6f2843f0 ERROR: not found, game will not run
legendos 029-v1.v1 1048576 85065452 WARNING: wrong name (029-v1.bin)
legendos 029-c1.c1 1048576 2f5ab875 WARNING: wrong name (029-c1.bin)
legendos 029-c2.c2 1048576 318b2711 WARNING: wrong name (029-c2.bin)
legendos 029-c3.c3 1048576 6bc52cb2 WARNING: wrong name (029-c3.bin)
legendos 029-c4.c4 1048576 37ef298c WARNING: wrong name (029-c4.bin)
magdrop2 221-p1.p1 524288 7be82353 ERROR: not found, game will not run
magdrop2 221-s1.s1 131072 2a4063a3 ERROR: not found, game will not run
magdrop2 221-m1.m1 131072 bddae628 ERROR: not found, game will not run
magdrop2 221-v1.v1 2097152 7e5e53e4 ERROR: not found, game will not run
magdrop2 221-c1.c1 4194304 1f862a14 ERROR: not found, game will not run
magdrop2 221-c2.c2 4194304 14b90536 ERROR: not found, game will not run
magdrop3 233-p1.p1 1048576 931e17fa ERROR: not found, game will not run
magdrop3 233-s1.s1 131072 7399e68a ERROR: not found, game will not run
magdrop3 233-m1.m1 131072 5beaf34e ERROR: not found, game will not run
magdrop3 233-v1.v1 4194304 58839298 ERROR: not found, game will not run
magdrop3 233-v2.v2 524288 d5e30df4 ERROR: not found, game will not run
magdrop3 233-c1.c1 4194304 65e3f4c4 ERROR: not found, game will not run
magdrop3 233-c2.c2 4194304 35dea6c9 ERROR: not found, game will not run
magdrop3 233-c3.c3 4194304 0ba2c502 ERROR: not found, game will not run
magdrop3 233-c4.c4 4194304 70dbbd6d ERROR: not found, game will not run
maglord 005-pg1.p1 524288 bd0a492d ERROR: not found, game will not run
maglord 005-s1.s1 131072 1c5369a2 ERROR: not found, game will not run
maglord 005-m1.m1 262144 26259f0f ERROR: not found, game will not run
maglord 005-v11.v11 524288 cc0455fd ERROR: not found, game will not run
maglord 005-v21.v21 524288 f94ab5b7 ERROR: not found, game will not run
maglord 005-v22.v22 524288 232cfd04 ERROR: not found, game will not run
maglord 005-c1.c1 524288 806aee34 ERROR: not found, game will not run
maglord 005-c2.c2 524288 34aa9a86 ERROR: not found, game will not run
maglord 005-c3.c3 524288 c4c2b926 ERROR: not found, game will not run
maglord 005-c4.c4 524288 9c46dcf4 ERROR: not found, game will not run
maglord 005-c5.c5 524288 69086dec ERROR: not found, game will not run
maglord 005-c6.c6 524288 ab7ac142 ERROR: not found, game will not run
maglordh 005-p1.p1 524288 599043c5 ERROR: not found, game will not run
maglordh 005-s1.s1 131072 1c5369a2 ERROR: not found, game will not run
maglordh 005-m1.m1 262144 26259f0f ERROR: not found, game will not run
maglordh 005-v11.v11 524288 cc0455fd ERROR: not found, game will not run
maglordh 005-v21.v21 524288 f94ab5b7 ERROR: not found, game will not run
maglordh 005-v22.v22 524288 232cfd04 ERROR: not found, game will not run
maglordh 005-c1.c1 524288 806aee34 ERROR: not found, game will not run
maglordh 005-c2.c2 524288 34aa9a86 ERROR: not found, game will not run
maglordh 005-c3.c3 524288 c4c2b926 ERROR: not found, game will not run
maglordh 005-c4.c4 524288 9c46dcf4 ERROR: not found, game will not run
maglordh 005-c5.c5 524288 69086dec ERROR: not found, game will not run
maglordh 005-c6.c6 524288 ab7ac142 ERROR: not found, game will not run
mahretsu 004-p1.p1 524288 fc6f53db WARNING: wrong name (004-p1.bin)
mahretsu 004-s1.s1 131072 2bd05a06 ERROR: not found, game will not run
mahretsu 004-m1.m1 131072 c71fbb3b ERROR: not found, game will not run
mahretsu 004-v11.v11 524288 b2fb2153 WARNING: wrong name (004-v1.bin)
mahretsu 004-v12.v12 524288 8503317b WARNING: wrong name (004-v2.bin)
mahretsu 004-v21.v21 524288 4999fb27 WARNING: wrong name (004-v3.bin)
mahretsu 004-v22.v22 524288 776fa2a2 WARNING: wrong name (004-v4.bin)
mahretsu 004-v23.v23 524288 b3e7eeea WARNING: wrong name (004-v5.bin)
mahretsu 004-c1.c1 524288 f1ae16bc WARNING: wrong name (004-c1.bin)
mahretsu 004-c2.c2 524288 bdc13520 WARNING: wrong name (004-c2.bin)
mahretsu 004-c3.c3 524288 9c571a37 WARNING: wrong name (004-c3.bin)
mahretsu 004-c4.c4 524288 7e81cb29 WARNING: wrong name (004-c4.bin)
matrim 266-c1.c1 8388608 505f4e30 ERROR: not found, game will not run
matrim 266-c2.c2 8388608 3cb57482 ERROR: not found, game will not run
matrim 266-c3.c3 8388608 f1cc6ad0 ERROR: not found, game will not run
matrim 266-c4.c4 8388608 45b806b7 ERROR: not found, game will not run
matrim 266-c5.c5 8388608 9a15dd6b ERROR: not found, game will not run
matrim 266-c6.c6 8388608 281cb939 ERROR: not found, game will not run
matrim 266-c7.c7 8388608 4b71f780 ERROR: not found, game will not run
matrim 266-c8.c8 8388608 29873d33 ERROR: not found, game will not run
matrim 266-p1.p1 1048576 5d4c2dc7 ERROR: not found, game will not run
matrim 266-p2.sp2 4194304 a14b1906 ERROR: not found, game will not run
matrim 266-m1.m1 131072 456c3e6c ERROR: not found, game will not run
matrim 266-v1.v1 8388608 a4f83690 ERROR: not found, game will not run
matrim 266-v2.v2 8388608 d0f69eda ERROR: not found, game will not run
matrimnd matr_c1.rom 8388608 0ab54c54 ERROR: not found, game will not run
matrimnd matr_c2.rom 8388608 b834dd89 ERROR: not found, game will not run
matrimnd matr_c3.rom 8388608 f31d68d4 ERROR: not found, game will not run
matrimnd matr_c4.rom 8388608 58cfb6e9 ERROR: not found, game will not run
matrimnd matr_c5.rom 8388608 f3c0e3fd ERROR: not found, game will not run
matrimnd matr_c6.rom 8388608 b53c8dcf ERROR: not found, game will not run
matrimnd matr_c7.rom 8388608 3c1fb02a ERROR: not found, game will not run
matrimnd matr_c8.rom 8388608 5ee31f80 ERROR: not found, game will not run
matrimnd 266-p1.p1 1048576 5d4c2dc7 ERROR: not found, game will not run
matrimnd 266-p2.sp2 4194304 a14b1906 ERROR: not found, game will not run
matrimnd 266-m1.m1 131072 456c3e6c ERROR: not found, game will not run
matrimnd 266-v1.v1 8388608 a4f83690 ERROR: not found, game will not run
matrimnd 266-v2.v2 8388608 d0f69eda ERROR: not found, game will not run
matrimbl mart-c1.bin 8388608 a5595656 ERROR: not found, game will not run
matrimbl mart-c2.bin 8388608 c5f7c300 ERROR: not found, game will not run
matrimbl mart-c3.bin 8388608 574efd7d ERROR: not found, game will not run
matrimbl mart-c4.bin 8388608 109d54d9 ERROR: not found, game will not run
matrimbl mart-c5.bin 8388608 15c9e882 ERROR: not found, game will not run
matrimbl mart-c6.bin 8388608 77497b97 ERROR: not found, game will not run
matrimbl mart-c7.bin 8388608 ab481bb6 ERROR: not found, game will not run
matrimbl mart-c8.bin 8388608 906cf267 ERROR: not found, game will not run
matrimbl 266-p1.p1 1048576 5d4c2dc7 ERROR: not found, game will not run
matrimbl 266-p2.sp2 4194304 a14b1906 ERROR: not found, game will not run
matrimbl mart-m1.bin 131072 3ea96ab1 ERROR: not found, game will not run
matrimbl mart-v1.bin 4194304 352b0a07 ERROR: not found, game will not run
matrimbl mart-v2.bin 4194304 1e9bd59e ERROR: not found, game will not run
matrimbl mart-v3.bin 4194304 e8362fcc ERROR: not found, game will not run
matrimbl mart-v4.bin 4194304 c8c79b19 ERROR: not found, game will not run
mslug 201-p1.p1 1048576 08d8daa5 ERROR: not found, game will not run
mslug 201-s1.s1 131072 2f55958d ERROR: not found, game will not run
mslug 201-m1.m1 131072 c28b3253 ERROR: not found, game will not run
mslug 201-v1.v1 4194304 23d22ed1 ERROR: not found, game will not run
mslug 201-v2.v2 4194304 472cf9db ERROR: not found, game will not run
mslug 201-c1.c1 4194304 72813676 ERROR: not found, game will not run
mslug 201-c2.c2 4194304 96f62574 ERROR: not found, game will not run
mslug 201-c3.c3 4194304 5121456a ERROR: not found, game will not run
mslug 201-c4.c4 4194304 f4ad59a3 ERROR: not found, game will not run
mslug2 241-p1.p1 1048576 2a53c5da ERROR: not found, game will not run
mslug2 241-p2.sp2 2097152 38883f44 ERROR: not found, game will not run
mslug2 241-s1.s1 131072 f3d32f0f ERROR: not found, game will not run
mslug2 241-m1.m1 131072 94520ebd ERROR: not found, game will not run
mslug2 241-v1.v1 4194304 99ec20e8 ERROR: not found, game will not run
mslug2 241-v2.v2 4194304 ecb16799 ERROR: not found, game will not run
mslug2 241-c1.c1 8388608 394b5e0d ERROR: not found, game will not run
mslug2 241-c2.c2 8388608 e5806221 ERROR: not found, game will not run
mslug2 241-c3.c3 8388608 9f6bfa6f ERROR: not found, game will not run
mslug2 241-c4.c4 8388608 7d3e306f ERROR: not found, game will not run
mslug2t 941-p1.p1 1048576 df5d6fbc ERROR: not found, game will not run
mslug2t 241-p2.sp2 2097152 38883f44 ERROR: not found, game will not run
mslug2t 241-s1.s1 131072 f3d32f0f ERROR: not found, game will not run
mslug2t 241-m1.m1 131072 94520ebd ERROR: not found, game will not run
mslug2t 241-v1.v1 4194304 99ec20e8 ERROR: not found, game will not run
mslug2t 241-v2.v2 4194304 ecb16799 ERROR: not found, game will not run
mslug2t 241-c1.c1 8388608 394b5e0d ERROR: not found, game will not run
mslug2t 241-c2.c2 8388608 e5806221 ERROR: not found, game will not run
mslug2t 241-c3.c3 8388608 9f6bfa6f ERROR: not found, game will not run
mslug2t 241-c4.c4 8388608 7d3e306f ERROR: not found, game will not run
mslugx 250-p1.p1 1048576 81f1f60b ERROR: not found, game will not run
mslugx 250-p2.ep1 4194304 1fda2e12 ERROR: not found, game will not run
mslugx 250-s1.s1 131072 fb6f441d ERROR: not found, game will not run
mslugx 250-m1.m1 131072 fd42a842 ERROR: not found, game will not run
mslugx 250-v1.v1 4194304 c79ede73 ERROR: not found, game will not run
mslugx 250-v2.v2 4194304 ea9aabe1 ERROR: not found, game will not run
mslugx 250-v3.v3 2097152 2ca65102 ERROR: not found, game will not run
mslugx 250-c1.c1 8388608 09a52c6f ERROR: not found, game will not run
mslugx 250-c2.c2 8388608 31679821 ERROR: not found, game will not run
mslugx 250-c3.c3 8388608 fd602019 ERROR: not found, game will not run
mslugx 250-c4.c4 8388608 31354513 ERROR: not found, game will not run
mslugx 250-c5.c5 8388608 a4b56124 ERROR: not found, game will not run
mslugx 250-c6.c6 8388608 83e3e69d ERROR: not found, game will not run
mslug3 256-c1.c1 8388608 5a79c34e ERROR: not found, game will not run
mslug3 256-c2.c2 8388608 944c362c ERROR: not found, game will not run
mslug3 256-c3.c3 8388608 6e69d36f ERROR: not found, game will not run
mslug3 256-c4.c4 8388608 b755b4eb ERROR: not found, game will not run
mslug3 256-c5.c5 8388608 7aacab47 ERROR: not found, game will not run
mslug3 256-c6.c6 8388608 c698fd5d ERROR: not found, game will not run
mslug3 256-c7.c7 8388608 cfceddd2 ERROR: not found, game will not run
mslug3 256-c8.c8 8388608 4d9be34c ERROR: not found, game will not run
mslug3 256-pg1.p1 4194304 b07edfd5 ERROR: not found, game will not run
mslug3 256-pg2.p2 4194304 6097c26b ERROR: not found, game will not run
mslug3 neo-sma 262144 9cd55736 ERROR: not found, game will not run
mslug3 256-m1.m1 524288 eaeec116 ERROR: not found, game will not run
mslug3 256-v1.v1 4194304 f2690241 ERROR: not found, game will not run
mslug3 256-v2.v2 4194304 7e2a10bd ERROR: not found, game will not run
mslug3 256-v3.v3 4194304 0eaec17c ERROR: not found, game will not run
mslug3 256-v4.v4 4194304 9b4b22d4 ERROR: not found, game will not run
mslug3h 256-c1.c1 8388608 5a79c34e ERROR: not found, game will not run
mslug3h 256-c2.c2 8388608 944c362c ERROR: not found, game will not run
mslug3h 256-c3.c3 8388608 6e69d36f ERROR: not found, game will not run
mslug3h 256-c4.c4 8388608 b755b4eb ERROR: not found, game will not run
mslug3h 256-c5.c5 8388608 7aacab47 ERROR: not found, game will not run
mslug3h 256-c6.c6 8388608 c698fd5d ERROR: not found, game will not run
mslug3h 256-c7.c7 8388608 cfceddd2 ERROR: not found, game will not run
mslug3h 256-c8.c8 8388608 4d9be34c ERROR: not found, game will not run
mslug3h 256-ph1.p1 1048576 9c42ca85 ERROR: not found, game will not run
mslug3h 256-ph2.sp2 4194304 1f3d8ce8 ERROR: not found, game will not run
mslug3h 256-m1.m1 524288 eaeec116 ERROR: not found, game will not run
mslug3h 256-v1.v1 4194304 f2690241 ERROR: not found, game will not run
mslug3h 256-v2.v2 4194304 7e2a10bd ERROR: not found, game will not run
mslug3h 256-v3.v3 4194304 0eaec17c ERROR: not found, game will not run
mslug3h 256-v4.v4 4194304 9b4b22d4 ERROR: not found, game will not run
mslug3nd ms3n_c1.rom 8388608 3540398c ERROR: not found, game will not run
mslug3nd ms3n_c2.rom 8388608 bdd220f0 ERROR: not found, game will not run
mslug3nd ms3n_c3.rom 8388608 bfaade82 ERROR: not found, game will not run
mslug3nd ms3n_c4.rom 8388608 1463add6 ERROR: not found, game will not run
mslug3nd ms3n_c5.rom 8388608 48ca7f28 ERROR: not found, game will not run
mslug3nd ms3n_c6.rom 8388608 806eb36f ERROR: not found, game will not run
mslug3nd ms3n_c7.rom 8388608 9395b809 ERROR: not found, game will not run
mslug3nd ms3n_c8.rom 8388608 a369f9d4 ERROR: not found, game will not run
mslug3nd 256-ph1.bin 1048576 9c42ca85 ERROR: not found, game will not run
mslug3nd 256-ph2.bin 4194304 1f3d8ce8 ERROR: not found, game will not run