-
Notifications
You must be signed in to change notification settings - Fork 9
/
log.txt
14497 lines (13709 loc) · 354 KB
/
log.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
Title : 24 - The Game
Game ID : SLUS_212.68
Hash : 0x54A955F965
Hash Offset : 33DFE8
Commands offset : 346818
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323288
Data Number : 0000000D
Param 1 : 04000000
Param 2 : 00000000
Param 3 : 00030002
Param 4 : 000000E7
Param 5 : AA6EAD45
Param 6 : 000002EF
Param 7 : 00030002
Param 8 : 000000F3
Param 9 : 476EA0E4
Param 10 : 000002FA
Param 11 : 00020003
Param 12 : 104155B0
Param 13 : 10415668
Title : 24 - The Game
Game ID : SCES_533.58
Hash : 0xAC7169206D
Hash Offset : 33E000
Commands offset : 346800
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323254
Data Number : 0000000D
Param 1 : 04000000
Param 2 : 00000000
Param 3 : 00030002
Param 4 : 000000E7
Param 5 : AA6EAD45
Param 6 : 000002EF
Param 7 : 00030002
Param 8 : 000000F3
Param 9 : 476EA0E4
Param 10 : 000002FA
Param 11 : 00020003
Param 12 : 10415630
Param 13 : 104156E8
Title : Ace Combat 4 - Shattered Skies
Game ID : SLUS_201.52
Hash : 0x3BC13D916D
Hash Offset : 33E018
Commands offset : 3467C8
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 003467E0
Data Number : 00000001
Sector : 001A7658
Offset : 000000CC
Size : 00000018
Patched data offset : 0x51CE70
Patched data : 2C480A4B008843482C600B4BFF02004AFF02004AFF02004A
Original data offset : 0x51CE58
Original data : 2C480A4B2C600B4BFF02004AFF02004AFF02004A00884348
Title : Ace Combat 5 - The Unsung War
Game ID : SLUS_208.51
Hash : 0xCC31CD61C5
Hash Offset : 33E030
Commands offset : 346790
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 003467A8
Data Number : 00000001
Sector : 00210F89
Offset : 0000039C
Size : 00000020
Patched data offset : 0x51B1B0
Patched data : 2C60004B008849482C68004B00884A482C680C4B00884B48FF02004AFF02004A
Original data offset : 0x51B190
Original data : 2C60004B2C68004B2C680C4BFF02004AFF02004A0088494800884A4800884B48
Title : Ace Combat Zero - The Belkan War
Game ID : SLUS_213.46
Hash : 0x4CB14DE1CD
Hash Offset : 33E048
Commands offset : 346758
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 00346770
Data Number : 00000001
Sector : 00000192
Offset : 000006C4
Size : 00000020
Patched data offset : 0x51B1B0
Patched data : 2C60004B008849482C68004B00884A482C680C4B00884B48FF02004AFF02004A
Original data offset : 0x51B190
Original data : 2C60004B2C68004B2C680C4BFF02004AFF02004A0088494800884A4800884B48
Title : Amplitude
Game ID : SCUS_972.58
Hash : 0x26918DC0AD
Hash Offset : 33E060
Commands offset : 346720
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 00346738
Data Number : 00000001
Sector : 000003AC
Offset : 0000060C
Size : 0000000C
Patched data offset : 0x51C608
Patched data : 0080224800602348B855004A
Original data offset : 0x51C5F8
Original data : B855004A0080224800602348
Title : Ape Escape 3
Game ID : SCUS_975.01
Hash : 0xEF594508DD
Hash Offset : 33E078
Commands offset : 51DD18
Commands count : 0x1
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 003C458C
Title : Ape Escape 3
Game ID : SCES_536.42
Hash : 0xD409115835
Hash Offset : 33E090
Commands offset : 51DD00
Commands count : 0x1
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 003C4854
Title : All-Star Baseball 2004
Game ID : SLUS_205.69
Hash : 0x84798529DD
Hash Offset : 33E0A8
Commands offset : 51DCE8
Commands count : 0x1
[GX] Command ID : 0x26
[Net] Command ID : 0x2A
Nothing to do
Title : Arc the Lad - End of Darkness
Game ID : SLUS_211.65
Hash : 0x3CC13D91C5
Hash Offset : 33E0C0
Commands offset : 51DCD0
Commands count : 0x1
[GX] Command ID : 0x0D
[Net] Command ID : 0x0F
Param 1 : 0026DDB8
Param 2 : 0026FEAC
Title : ATV Quad Power Racing 2
Game ID : SLUS_205.70
Hash : 0x84798529C5
Hash Offset : 33E0D8
Commands offset : 346708
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 003231FC
Data Number : 00000016
Param 1 : 05000000
Param 2 : 00000000
Param 3 : 00030002
Param 4 : 00000000
Param 5 : 980BDB50
Param 6 : 00000405
Param 7 : 00040002
Param 8 : 00000062
Param 9 : E129D759
Param 10 : 00000466
Param 11 : 000004B8
Param 12 : 00050003
Param 13 : 20227CF0
Param 14 : 00227D54
Param 15 : 00227DA0
Param 16 : 00227DD4
Param 17 : 20227DD8
Param 18 : 00040003
Param 19 : 002900B8
Param 20 : 00290128
Param 21 : 20290130
Param 22 : 002901B8
Title : Baldur's Gate - Dark Alliance
Game ID : SLUS_200.35
Hash : 0x3F905A98D
Hash Offset : 33E0F0
Commands offset : 33B990
Commands count : 0x3
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00138FCC
[GX] Function offset : 0x366C4
[Net] Function ID : 0x13
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 001394A8
[GX] Function offset : 0x34EDC
[Net] Function ID : 0x14
[GX] Command ID : 0x1F
[Net] Command ID : 0x23
Nothing to do
Title : Baldur's Gate - Dark Alliance 2
Game ID : SLUS_206.75
Hash : 0xA459A5092D
Hash Offset : 33E108
Commands offset : 33B948
Commands count : 0x3
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 0022D3E0
[GX] Function offset : 0x366C4
[Net] Function ID : 0x13
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 0022D830
[GX] Function offset : 0x34EDC
[Net] Function ID : 0x14
[GX] Command ID : 0x1F
[Net] Command ID : 0x23
Nothing to do
Title : Barbarian
Game ID : SLUS_201.36
Hash : 0x3BC13D91ED
Hash Offset : 33E120
Commands offset : 3466F0
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 003231B0
Data Number : 00000013
Param 1 : 04000000
Param 2 : 00000000
Param 3 : 00040002
Param 4 : 00000000
Param 5 : 4EE97EC6
Param 6 : 00000200
Param 7 : 00000212
Param 8 : 00040003
Param 9 : 001FD8D0
Param 10 : 001FD914
Param 11 : 001FD960
Param 12 : 001FD9B0
Param 13 : 00060003
Param 14 : 001FDDCC
Param 15 : 001FDE2C
Param 16 : 001FDE78
Param 17 : 001FDEC0
Param 18 : 001FDEEC
Param 19 : 001FDF08
Title : Battlefield 2 - Mordern Combat
Game ID : SLUS_210.26
Hash : 0x1CE11DB19D
Hash Offset : 33E138
Commands offset : 51DCB8
Commands count : 0x1
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 00386864
Title : Bully
Game ID : SLUS_212.69
Hash : 0x54A955F96D
Hash Offset : 33E150
Commands offset : 51DCA0
Commands count : 0x1
[GX] Command ID : 0x15
[Net] Command ID : 0x17
Param : 01
Title : Burnout 2 - Point of Impact
Game ID : SLUS_204.97
Hash : 0x946995398D
Hash Offset : 33E168
Commands offset : 33B900
Commands count : 0x3
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 0024F04C
[GX] Function offset : 0x36E28
[Net] Function ID : 0x19
[GX] Command ID : 0x0D
[Net] Command ID : 0x0F
Param 1 : 00132610
Param 2 : 00132A70
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 003466D0
Data Number : 00000001
Sector : 00000531
Offset : 000005CC
Size : 00000008
Patched data offset : 0x51C5E0
Patched data : 0800E00300000000
Original data offset : 0x51C5D8
Original data : E0FFBD2790898727
Title : Burnout 3 - Takedown
Game ID : SLUS_210.50
Hash : 0x1CE11DB15D
Hash Offset : 33E180
Commands offset : 51DC70
Commands count : 0x2
[GX] Command ID : 0x1E
[Net] Command ID : 0x21
Param : 00000000
[GX] Command ID : 0x0A
[Net] Command ID : 0x0C
Param 1 : 0000
Param 2 : 0000
Title : CART Fury - Championship Racing
Game ID : SLUS_201.41
Hash : 0x3BC13D91C5
Hash Offset : 33E198
Commands offset : 346698
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 003466B0
Data Number : 00000001
Sector : 000E3D56
Offset : 00000730
Size : 00000038
Patched data offset : 0x51B798
Patched data : 0010033C0100022405008210009063340200022402008210001063240D0000000000628C00014230FDFF4014000000000800E00300000000
Original data offset : 0x51B760
Original data : 0010033C10E065340000A78C20E066340000C88C010003240418830000C00524FF03E730244005012538E3002538E8000000C7AC0F000000
Title : Castle of Shikigami 2
Game ID : SLUS_209.62
Hash : 0xEC11ED416D
Hash Offset : 33E1B0
Commands offset : 33B8E8
Commands count : 0x1
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 001F9F58
[GX] Function offset : 0x33F98
[Net] Function ID : 0x04
Title : Champions of Norrath
Game ID : SLUS_205.65
Hash : 0x84798529BD
Hash Offset : 33E1C8
Commands offset : 33B888
Commands count : 0x4
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00164338
[GX] Function offset : 0x366C4
[Net] Function ID : 0x13
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 001646E8
[GX] Function offset : 0x3795C
[Net] Function ID : 0x15
[GX] Command ID : 0x1F
[Net] Command ID : 0x23
Nothing to do
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 002D0818
[GX] Function offset : 0x3521C
[Net] Function ID : 0x16
Title : Champions of Norrath - Realms of EverQuest
Game ID : SLES_523.25
Hash : 0xAB71892135
Hash Offset : 33E1E0
Commands offset : 33B840
Commands count : 0x3
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00166748
[GX] Function offset : 0x366C4
[Net] Function ID : 0x13
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00166AF0
[GX] Function offset : 0x3795C
[Net] Function ID : 0x15
[GX] Command ID : 0x1F
[Net] Command ID : 0x23
Nothing to do
Title : Champions - Return to Arms
Game ID : SLUS_209.73
Hash : 0xEC11ED4115
Hash Offset : 33E1F8
Commands offset : 33B7F8
Commands count : 0x3
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 001717D8
[GX] Function offset : 0x366C4
[Net] Function ID : 0x13
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00171AE0
[GX] Function offset : 0x3795C
[Net] Function ID : 0x15
[GX] Command ID : 0x1F
[Net] Command ID : 0x23
Nothing to do
Title : Champions - Return to Arms
Game ID : SLES_530.39
Hash : 0x7BA159F1B5
Hash Offset : 33E210
Commands offset : 33B7B0
Commands count : 0x3
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00171940
[GX] Function offset : 0x366C4
[Net] Function ID : 0x13
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00171CE0
[GX] Function offset : 0x3795C
[Net] Function ID : 0x15
[GX] Command ID : 0x1F
[Net] Command ID : 0x23
Nothing to do
Title : Commandos - Strike Force
Game ID : SLES_527.68
Hash : 0x3BE119B18D
Hash Offset : 33E228
Commands offset : 51DBF8
Commands count : 0x5
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B1850
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B1858
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B185C
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B1864
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B187C
Title : Commandos Strike Force
Game ID : SLUS_211.03
Hash : 0xCF10DA1E5
Hash Offset : 33E240
Commands offset : 51DBF8
Commands count : 0x5
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B1850
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B1858
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B185C
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B1864
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 001B187C
Title : Conflict - Global Terror
Game ID : SLUS_211.72
Hash : 0x3CC13D910D
Hash Offset : 33E258
Commands offset : 51DBE0
Commands count : 0x1
[GX] Command ID : 0x0F
[Net] Command ID : 0x11
Param : 00000208
Title : Conflict - Global Storm
Game ID : SLES_525.73
Hash : 0xE339C169BD
Hash Offset : 33E270
Commands offset : 51DBE0
Commands count : 0x1
[GX] Command ID : 0x0F
[Net] Command ID : 0x11
Param : 00000208
Title : Crash Bandicoot Twinsanity
Game ID : SLUS_209.09
Hash : 0xFC01FD5105
Hash Offset : 33E288
Commands offset : 346680
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323190
Data Number : 00000008
Param 1 : 04000000
Param 2 : 00000000
Param 3 : 00030002
Param 4 : 00000000
Param 5 : B62CBF9B
Param 6 : 00000200
Param 7 : 00010003
Param 8 : 102B157C
Title : Crash Twinsanity
Game ID : SLES_525.68
Hash : 0xE339C16995
Hash Offset : 33E2A0
Commands offset : 346650
Commands count : 0x2
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323170
Data Number : 00000008
Param 1 : 04000000
Param 2 : 00000000
Param 3 : 00030002
Param 4 : 00000000
Param 5 : B62CBF9B
Param 6 : 00000200
Param 7 : 00010003
Param 8 : 102B21EC
[GX] Command ID : 0x08
[Net] Command ID : 0x09
Data Offset : 0051DBC8
Data Number : 00000001
Offset : 001923E8
Original 1 : 0071182F
Original 2 : 5440FFFB
Patched 1 : 00000000
Patched 2 : 00000000
Title : Dance Dance Revolution Extreme
Game ID : SLUS_209.16
Hash : 0xFC01FD51CD
Hash Offset : 33E2B8
Commands offset : 51DBB0
Commands count : 0x1
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 00121F64
Title : Dance Factory
Game ID : SLUS_212.96
Hash : 0x5CA15DF14D
Hash Offset : 33E2D0
Commands offset : 51DB98
Commands count : 0x1
[GX] Command ID : 0x27
[Net] Command ID : 0x2B
Nothing to do
Title : Dawn of Mana
Game ID : SLUS_215.74
Hash : 0x8579852925
Hash Offset : 33E2E8
Commands offset : 346638
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323160
Data Number : 00000004
Param 1 : 00000000
Param 2 : 00000000
Param 3 : 00010001
Param 4 : 0DDF000C
Title : Dance Dance Revolution MAX
Game ID : SLUS_204.37
Hash : 0x639965C95D
Hash Offset : 33E300
Commands offset : 51DB80
Commands count : 0x1
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 0011EDF0
Title : Dance Dance Revolution MAX 2
Game ID : SLUS_207.11
Hash : 0xAC51AD0105
Hash Offset : 33E318
Commands offset : 51DB50
Commands count : 0x2
[GX] Command ID : 0x0D
[Net] Command ID : 0x0F
Param 1 : 0011F364
Param 2 : 0011F3F8
[GX] Command ID : 0x0C
[Net] Command ID : 0x0E
Param : 0011F8C4
Title : Devil May Cry
Game ID : SLUS_202.16
Hash : 0x2BD12D817D
Hash Offset : 33E330
Commands offset : 51DB38
Commands count : 0x1
[GX] Command ID : 0x17
[Net] Command ID : 0x1A
Nothing to do
Title : Devil May Cry 3
Game ID : SLUS_209.64
Hash : 0xEC11ED415D
Hash Offset : 33E348
Commands offset : 33B780
Commands count : 0x2
[GX] Command ID : 0x08
[Net] Command ID : 0x09
Data Offset : 0051DB08
Data Number : 00000002
Offset : 00418750
Original 1 : 1062FFFA
Original 2 : 00000000
Patched 1 : 00000000
Patched 2 : 00000000
Offset : 00418808
Original 1 : 1062FFFA
Original 2 : 00000000
Patched 1 : 00000000
Patched 2 : 00000000
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00209860
[GX] Function offset : 0x37714
[Net] Function ID : 0x33
Title : Devil May Cry 3 - Dante's Awakening [Special Edition]
Game ID : SLUS_213.61
Hash : 0x4CB14DE155
Hash Offset : 33E360
Commands offset : 33B750
Commands count : 0x2
[GX] Command ID : 0x08
[Net] Command ID : 0x09
Data Offset : 0051DAD8
Data Number : 00000002
Offset : 004290E0
Original 1 : 1062FFFA
Original 2 : 00000000
Patched 1 : 00000000
Patched 2 : 00000000
Offset : 00429198
Original 1 : 1062FFFA
Original 2 : 00000000
Patched 1 : 00000000
Patched 2 : 00000000
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 0020A9F0
[GX] Function offset : 0x37714
[Net] Function ID : 0x33
Title : Disney's Extreme Skate Adventure
Game ID : SLUS_206.07
Hash : 0x8C718D21E5
Hash Offset : 33E378
Commands offset : 33B720
Commands count : 0x2
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A40
PatchedDataMask : 80000000FFFFFFFF
PatchedData : 8000000053400000
OriginalDataMask : 80000000FFFFFFFF
OriginalData : 80000000D3400000
[GX] Command ID : 0x12
[Net] Command ID : 0x14
Nothing to do
Title : Driving Emotion Type S
Game ID : SLUS_201.13
Hash : 0x33C935992D
Hash Offset : 33E390
Commands offset : 346620
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323158
Data Number : 00000002
Param 1 : 00021000
Param 2 : 00000000
Title : Driving Emotion Type-S
Game ID : SLES_500.73
Hash : 0x508971D92D
Hash Offset : 33E3A8
Commands offset : 346620
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323158
Data Number : 00000002
Param 1 : 00021000
Param 2 : 00000000
Title : Dropship - United Peace Force
Game ID : SLUS_204.63
Hash : 0x6B916DC185
Hash Offset : 33E3C0
Commands offset : 3465E8
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 00346600
Data Number : 00000001
Sector : 000002B0
Offset : 00000250
Size : 00000058
Patched data offset : 0x51BF80
Patched data : 04024634180066AC018006341C0066AC0020063C200066ACE8000634240066AC280060FC300060FC0500063C0408C634380060AC3C0066AC400060AC47000624440066AC480060AC4C0067AC000090442000804660000624
Original data offset : 0x51BF28
Original data : 0402463400100A3C3C500A0000009044180067AC108B838F0500023C0408473402804A350E000924200080461C0066AC108B8B8F08000824470002246000062420006AFD280069FD300060FD380068FD400067FD480062FD
Title : Everblue 2
Game ID : SLUS_205.98
Hash : 0x8C718D21AD
Hash Offset : 33E3D8
Commands offset : 3465B0
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 003465C8
Data Number : 00000001
Sector : 000001F5
Offset : 00000468
Size : 000000B0
Patched data offset : 0x51C6F8
Patched data : 1C21C04BBC03E54BBC61E84BBD68E84BBE70E84B0B7AE84BFD39274A5C29C04BBC03E64BBC61E94BBD68E94BBE70E94B4B7AE94BFD41284A9C31C04BBC03E74BBC61EA4BBD68EA4BBE70EA4B8B7AEA4BFD49294ADC39C04BBC03E84BBC61EB4BBD68EB4BBE70EB4BCB7AEB4B3C23C14B1C42C04BBC03E94B3C23C24B6F08C54BAB10C54BFD512A4AFD592B4A5C4AC04BBC03EA4B6F08C64BAB10C64B6F08C74BAB10C74BBF03004A9C52C04BBC03EB4B
Original data offset : 0x51C648
Original data : BC03E54B1C21C04BBC61E84BBD68E84BBE70E84B0B7AE84BFD39274ABC03E64B5C29C04BBC61E94BBD68E94BBE70E94B4B7AE94BFD41284ABC03E74B9C31C04BBC61EA4BBD68EA4BBE70EA4B8B7AEA4BFD49294ABC03E84BDC39C04BBC61EB4BBD68EB4BBE70EB4BCB7AEB4B3C23C14BBC03E94B1C42C04B3C23C24B6F08C54BAB10C54BFD512A4AFD592B4ABC03EA4B5C4AC04B6F08C64BAB10C64B6F08C74BAB10C74BBF03004ABC03EB4B9C52C04B
Title : dot Hack - Part 1 - Infection
Game ID : SLUS_202.67
Hash : 0x5BA15DF195
Hash Offset : 33E3F0
Commands offset : 33B6F0
Commands count : 0x2
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A80
PatchedDataMask : FFFFFFFFFFFFFFFF
PatchedData : 0111948D80000EFC
OriginalDataMask : FFFFFFFFFFFFFFFF
OriginalData : 0111948D10030203
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A60
PatchedDataMask : FFFFFFFFFFFFFFFF
PatchedData : 01E0A7408000033C
OriginalDataMask : FFFFFFFFFFFFFFFF
OriginalData : 01E0A74080001EFC
Title : dot Hack - Part 2 - Mutation
Game ID : SLUS_205.62
Hash : 0x8479852985
Hash Offset : 33E408
Commands offset : 33B6F0
Commands count : 0x2
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A80
PatchedDataMask : FFFFFFFFFFFFFFFF
PatchedData : 0111948D80000EFC
OriginalDataMask : FFFFFFFFFFFFFFFF
OriginalData : 0111948D10030203
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A60
PatchedDataMask : FFFFFFFFFFFFFFFF
PatchedData : 01E0A7408000033C
OriginalDataMask : FFFFFFFFFFFFFFFF
OriginalData : 01E0A74080001EFC
Title : dot Hack - Part 3 - Outbreak
Game ID : SLUS_205.63
Hash : 0x847985298D
Hash Offset : 33E420
Commands offset : 33B6F0
Commands count : 0x2
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A80
PatchedDataMask : FFFFFFFFFFFFFFFF
PatchedData : 0111948D80000EFC
OriginalDataMask : FFFFFFFFFFFFFFFF
OriginalData : 0111948D10030203
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A60
PatchedDataMask : FFFFFFFFFFFFFFFF
PatchedData : 01E0A7408000033C
OriginalDataMask : FFFFFFFFFFFFFFFF
OriginalData : 01E0A74080001EFC
Title : dot Hack - Part 4 - Quarantine
Game ID : SLUS_205.64
Hash : 0x84798529B5
Hash Offset : 33E438
Commands offset : 33B6F0
Commands count : 0x2
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A80
PatchedDataMask : FFFFFFFFFFFFFFFF
PatchedData : 0111948D80000EFC
OriginalDataMask : FFFFFFFFFFFFFFFF
OriginalData : 0111948D10030203
[GX] Command ID : 0x07
[Net] Command ID : 0x08
Data Offset : 00322A60
PatchedDataMask : FFFFFFFFFFFFFFFF
PatchedData : 01E0A7408000033C
OriginalDataMask : FFFFFFFFFFFFFFFF
OriginalData : 01E0A74080001EFC
Title : dot Hack - G.U. Vol.1 - Rebirth
Game ID : SLUS_212.58
Hash : 0x54A955F995
Hash Offset : 33E450
Commands offset : 51DAC0
Commands count : 0x1
[GX] Command ID : 0x06
[Net] Command ID : 0x07
Param : 00000008
Title : dot Hack - G.U. Vol.2 - Reminisce
Game ID : SLUS_214.88
Hash : 0x6C916DC17D
Hash Offset : 33E468
Commands offset : 51DAC0
Commands count : 0x1
[GX] Command ID : 0x06
[Net] Command ID : 0x07
Param : 00000008
Title : dot Hack - G.U. Vol.3 - Redemption
Game ID : SLUS_214.89
Hash : 0x6C916DC175
Hash Offset : 33E480
Commands offset : 51DAC0
Commands count : 0x1
[GX] Command ID : 0x06
[Net] Command ID : 0x07
Param : 00000008
Title : Final Fantasy X
Game ID : SLUS_203.12
Hash : 0x43B945E915
Hash Offset : 33E498
Commands offset : 346520
Commands count : 0x2
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 00346550
Data Number : 00000003
Sector : 00000271
Offset : 000003BC
Size : 00000020
Patched data offset : 0x51B0F0
Patched data : 0440044B008048480540044BFF02004AFF02004AFF02004AFF02004A00804948
Original data offset : 0x51B0D0
Original data : 0440044B0540044BFF02004AFF02004AFF02004AFF02004A0080484800804948
Sector : 00000271
Offset : 0000054C
Size : 00000018
Patched data offset : 0x51B0B8
Patched data : 008848480540044B008849480640044BFF02004AFF02004A
Original data offset : 0x51B0A0
Original data : 0540044B0640044BFF02004AFF02004A0088484800884948
Sector : 00000456
Offset : 00000038
Size : 00000014
Patched data offset : 0x51B088
Patched data : 00804248FF02004A3C63F44BFF02004A6005804A
Original data offset : 0x51B070
Original data : 6005804AFF02004A3C63F44BFF02004A00804248
[GX] Command ID : 0x29
[Net] Command ID : 0x2D
Nothing to do
Title : Final Fantasy X-2
Game ID : SLUS_206.72
Hash : 0xA459A50935
Hash Offset : 33E4B0
Commands offset : 346488
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B
Data Offset : 003464A0
Data Number : 00000004
Sector : 00000294
Offset : 000002A4
Size : 00000010
Patched data offset : 0x51B260
Patched data : 0440044B008048480540044BFF02004A
Original data offset : 0x51B250
Original data : 0440044B0540044BFF02004AFF02004A
Sector : 00000294
Offset : 000002BC
Size : 00000008
Patched data offset : 0x51B248
Patched data : FF02004A00804948
Original data offset : 0x51B240
Original data : 0080484800804948
Sector : 00000294
Offset : 0000043C
Size : 00000018
Patched data offset : 0x51B228
Patched data : 008848480540044B008849480640044BFF02004AFF02004A
Original data offset : 0x51B210
Original data : 0540044B0640044BFF02004AFF02004A0088484800884948
Sector : 0000038F
Offset : 0000041C
Size : 00000008
Patched data offset : 0x51DAB8
Patched data : 0800E00300000000
Original data offset : 0x51DAB0
Original data : E0FFBD270000B0FF
Title : Disney's Finding Nemo
Game ID : SLUS_206.28
Hash : 0xB449B51985
Hash Offset : 33E4C8
Commands offset : 33B6C0
Commands count : 0x2
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00187528
[GX] Function offset : 0x34DD0
[Net] Function ID : 0x12
[GX] Command ID : 0x02
[Net] Command ID : 0x03
Nothing to do
Title : Gallop Racer 2006
Game ID : SLUS_213.93
Hash : 0x748975D96D
Hash Offset : 33E4E0
Commands offset : 33B6A8
Commands count : 0x1
[GX] Command ID : 0x00
[Net] Command ID : 0x01
Param : 00158804
[GX] Function offset : 0x34224
[Net] Function ID : 0x06
Title : Getaway, The - Black Monday
Game ID : SCUS_974.08
Hash : 0xFF49551825
Hash Offset : 33E4F8
Commands offset : 346470
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323150
Data Number : 00000002
Param 1 : 00021000
Param 2 : 00000000
Title : Getaway, The - Black Monday
Game ID : SCES_527.58
Hash : 0x33E9F1B835
Hash Offset : 33E510
Commands offset : 346470
Commands count : 0x1
[GX] Command ID : 0x10
[Net] Command ID : 0x12
Data Offset : 00323150
Data Number : 00000002
Param 1 : 00021000
Param 2 : 00000000
Title : Ghost in the Shell - Stane Alone Complex
Game ID : SLUS_210.06
Hash : 0x14E915B9F5
Hash Offset : 33E528
Commands offset : 345FB8
Commands count : 0x1
[GX] Command ID : 0x09
[Net] Command ID : 0x0B