-
Notifications
You must be signed in to change notification settings - Fork 5
/
filemap phoenix 3 eu.txt
2490 lines (2418 loc) · 189 KB
/
filemap phoenix 3 eu.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
0x00000000 1 "logo1.gbapal" "logo1.8bpp" 32 24 8
0x0000403c 1 "logo2.gbapal" "logo2.8bpp" 32 24 8
// 0x00008078 1 "" 0x00000800 uncompressed font no (uses message box tiles)
// 0x00008878 1 "" 0x00001020 uncompressed message box tiles yes
// 0x00009898 1 "" 0x00000480 uncompressed message box tiles 2 yes
// 0x00009d18 1 "" 0x0000b000 uncompressed name tags no (uses message box tiles)
// 0x00014d18 1 "" 0x00000220 uncompressed green dot yes
// 0x00014f38 1 "" 0x00000300 uncompressed arrows no
// 0x00015238 1 "" 0x00000480 uncompressed exclamation marks no
// 0x000156b8 1 "" 0x00008000 uncompressed unknown japanese text no
// 0x0001d6b8 1 "" 0x00000400 uncompressed gba buttons no
// 0x0001dab8 1 "" 0x00001000 uncompressed testemony text no
// 0x0001eab8 1 "" 0x00000a00 uncompressed gba cross examination elements
// 0x0001f4b8 1 "" 0x00000500 uncompressed gba pointer finger
// 0x0001f9b8 1 "" 0x00000200 uncompressed correct tick
// 0x0001fbb8 1 "" 0x000002e0 uncompressed unknown court wall
// 0x0001fe98 1 "" 0x00002800 uncompressed japanese guilty-not guilty text
// 0x00022698 1 "" 0x00000020 uncompressed unknown dot
// 0x000226b8 1 "" 0x00000080 uncompressed unknown arrow
// 0x00022738 1 "" 0x00002500 uncompressed court furniture
// 0x00024c38 1 "" 0x00003000 uncompressed french not guilty
// 0x00027c38 1 "" 0x00000200 uncompressed lock
// 0x00027e38 1 "" 0x00003000 uncompressed english not guilty
// 0x0002ae38 1 "" 0x00000380 uncompressed unknown tiles
// 0x0002b1b8 1 "" 0x00000920 uncompressed unknown garbage
// 0x0002bad8 1 "" 0x00041000 uncompressed main font
// 0x0006cad8 1 "" 0x00005820 uncompressed "german, spanish/italian not guilty" yes
// 0x000722f8 1 "" 0x000004e0 uncompressed killer/victim icons yes
// 0x000727d8 1 "" 0a000004a0 uncompressed "various map icons (car, snowmobile, red dot, gem)"
// 0x00072c78 1 "" 0x00000400 uncompressed line and selection highlight
0x00073078 1 "touchscreen background phoenix.gbapal" "touchscreen background phoenix.4bpp" 32 24 4
0x00075378 1 "touchscreen background prosecution.gbapal" "touchscreen background prosecution.4bpp" 32 24 4
0x00077dc0 1 "courtroom background.gbapal" "courtroom background.4bpp" 32 24 4
0x0007bdd0 1 "blurred courtroom.gbapal" "blurred courtroom.4bpp" 32 24 4
0x0007d9c0 1 "speedlines with border.gbapal" "speedlines with border.4bpp" 32 24 4
0x0007e924 1 "touchscreen background mia.gbapal" "touchscreen background mia.4bpp" 32 24 4
0x00081100 1 "touchscreen background edgeworth.gbapal" "touchscreen background edgeworth.4bpp" 32 24 4
0x00083a1c 2 "capcom logo (no license).gbapal" "capcom logo (no license)" 32 4
0x00085e94 2 "capcom logo.gbapal" "capcom logo" 32 4
0x000885dc 2 "capcom logo grayscale.gbapal" "capcom logo grayscale" 32 4
// 0x0008986c 1 "" 0x00000020 uncompressed unknown palette
0x0008988c 2 "defense lobby.gbapal" "defense lobby" 32 4
0x00090d4c 2 "courtroom defense bench.gbapal" "courtroom defense bench" 32 4
0x00092d18 2 "courtroom prosecution bench.gbapal" "courtroom prosecution bench" 32 4
0x00094b70 2 "courtroom witness stand.gbapal" "courtroom witness stand" 32 4
0x00096fc0 2 "courtroom judge bench.gbapal" "courtroom judge bench" 32 4
0x0009ecd4 2 "courtroom defense aid bench.gbapal" "courtroom defense aid bench" 32 4
0x000a5a64 2 "courtroom full view.gbapal" "courtroom full view" 32 4
0x000ae6fc 2 "courtroom bluescale.gbapal" "courtroom bluescale" 32 4
0x000b3034 2 "gavel slam background.gbapal" "gavel slam background" 32 4
0x000b5554 2 "speedlines.gbapal" "speedlines" 32 4
0x000b6660 2 "detention center.gbapal" "detention center" 32 4
0x000bc594 2 "phoenix office.gbapal" "phoenix office" 32 4
0x000c39f0 2 "police hq inside.gbapal" "police hq inside" 32 4
0x000caf74 2 "police hq inside duplicate.gbapal" "police hq inside duplicate" 32 4
0x000d24f8 2 "courtroom background with scanlines.gbapal" "courtroom background with scanlines" 32 4
0x000d6570 2 "phoenix thinking courtroom grayscale.gbapal" "phoenix thinking courtroom grayscale" 32 4
0x000d8e30 2 "maya thinking courtroom grayscale.gbapal" "maya thinking courtroom grayscale" 32 4
0x000db63c 2 "edgeworth thinking courtroom grayscale.gbapal" "edgeworth thinking courtroom grayscale" 32 4
0x000ddf38 2 "phoenix thinking blank grayscale.gbapal" "phoenix thinking blank grayscale" 32 4
0x000dfbd8 2 "edgeworth thinking blank grayscale.gbapal" "edgeworth thinking blank grayscale" 32 4
0x000e1870 2 "judge bench with judge base.gbapal" "judge bench with judge base" 32 4
0x000e8ad0 2 "japanese save transfer topscreen.gbapal" "japanese save transfer topscreen" 32 4
0x000f006c 2 "japanese save transfer touchscreen.gbapal" "japanese save transfer touchscreen" 32 4
0x000f8304 2 "french save error message.gbapal" "french save error message" 32 4
// 0x000f9074 1 "" 0x000013a0 uncompressed french save error message with garbage before yes
0x000fa414 2 "german save error message.gbapal" "german save error message" 32 4
// 0x000fb1c0 1 "" 0x000015e0 uncompressed german save error message with garbage before yes
0x000fc7a0 2 "french write error message.gbapal" "french write error message" 32 4
// 0x000fd51c 1 "" 0x00001380 uncompressed french write error message with garbage before yes
0x000fe89c 2 "german write error message.gbapal" "german write error message" 32 4
// 0x000ff67c 1 "" 0x000015a0 uncompressed german write error message with garbage before yes
0x00100c1c 2 "main menu case 1 background.gbapal" "main menu case 1 background" 32 8
0x00114a58 2 "main menu case 2 background.gbapal" "main menu case 2 background" 32 8
0x0012779c 2 "main menu case 3 background.gbapal" "main menu case 3 background" 32 8
0x0013ab14 2 "main menu case 4 background.gbapal" "main menu case 4 background" 32 8
0x0014e0a4 2 "main menu case 5 background.gbapal" "main menu case 5 background" 32 8
0x0015f784 2 "main menu locked background.gbapal" "main menu locked background" 32 8
0x001703bc 2 "case 1 intro dead victim.gbapal" "case 1 intro dead victim" 32 4
0x00176080 2 "case 1 intro scared phoenix.gbapal" "case 1 intro scared phoenix" 32 4
0x0017ade4 2 "case 1 intro bw background of conversation.gbapal" "case 1 intro bw background of conversation" 32 4
0x0017f040 1 "case 1 intro phoenix lower body over victim.gbapal" "case 1 intro phoenix lower body over victim.4bpp" 12 10 4
0x0017f7cc 1 "case 1 intro bw phoenix and victim conversing.gbapal" "case 1 intro bw phoenix and victim conversing.8bpp" 8 32 8
0x00180648 2 "case 1 photo of victim on ground.gbapal" "case 1 photo of victim on ground" 32 4
0x001839fc 2 "case 1 photo of victims hand with medicine french.gbapal" "case 1 photo of victims hand with medicine french" 32 4
0x00186344 2 "case 1 phoenix with culprit.gbapal" "case 1 phoenix with culprit" 32 4
0x0018aa5c 2 "case 1 victim with culprit.gbapal" "case 1 victim with culprit" 32 4
0x0018efe0 2 "case 1 newspaper article french.gbapal" "case 1 newspaper article french" 32 4
0x001900cc 2 "case 1 files of old case 1-2 french.gbapal" "case 1 files of old case 1-2 french" 32 4
0x00191068 2 "case 1 files of old case 2-2 french.gbapal" "case 1 files of old case 2-2 french" 32 4
0x001921fc 2 "case 1 photo of victims hand with medicine german.gbapal" "case 1 photo of victims hand with medicine german" 32 4
0x00194b44 2 "case 1 newspaper article german.gbapal" "case 1 newspaper article german" 32 4
0x00195c60 2 "case 1 files of old case 1-2 german.gbapal" "case 1 files of old case 1-2 german" 32 4
0x00196bf8 2 "case 1 files of old case 2-2 german.gbapal" "case 1 files of old case 2-2 german" 32 4
0x00197e04 2 "case 2 lordly tailor french.gbapal" "case 2 lordly tailor french" 32 4
0x001a0e38 2 "case 2 lordly tailor basement french.gbapal" "case 2 lordly tailor basement french" 64 4
0x001b07ac 2 "case 2 luke atmeys office.gbapal" "case 2 luke atmeys office" 32 4
0x001b9954 2 "case 2 mask de masque lair.gbapal" "case 2 mask de masque lair" 32 4
0x001c217c 2 "case 2 kb security presidents office.gbapal" "case 2 kb security presidents office" 32 4
0x001ca3b8 2 "case 2 kb security guard office.gbapal" "case 2 kb security guard office" 32 4
0x001d2924 2 "case 2 calling card text french.gbapal" "case 2 calling card text french" 32 4
0x001d3a10 2 "case 2 blackmail letter french.gbapal" "case 2 blackmail letter french" 32 4
0x001d4aa0 2 "case 2 intro safe.gbapal" "case 2 intro safe" 32 4
0x001d6c3c 2 "case 2 intro open safe with calling french.gbapal" "case 2 intro open safe with calling french" 32 4
0x001d7f34 2 "case 2 intro calling card close up french.gbapal" "case 2 intro calling card close up french" 32 4
0x001de824 2 "case 2 intro stage lights.gbapal" "case 2 intro stage lights" 32 4
0x001e19b0 2 "case 2 intro moon.gbapal" "case 2 intro moon" 32 4
0x001e3ed4 2 "case 2 intro gumshoe silhouette.gbapal" "case 2 intro gumshoe silhouette" 32 4
0x001e4c2c 1 "case 2 intro de masque flying left side.gbapal" "case 2 intro de masque flying left side.4bpp" 12 24 4
0x001e5364 1 "case 2 intro de masque flying right side 1.gbapal" "case 2 intro de masque flying right side 1.4bpp" 10 24 4
0x001e5960 1 "case 2 intro de masque flying right side 2.gbapal" "case 2 intro de masque flying right side 2.4bpp" 10 24 4
0x001e5f30 2 "case 2 list of stolen items french.gbapal" "case 2 list of stolen items french" 32 4
0x001e6e80 2 "case 2 poster of exhibition french.gbapal" "case 2 poster of exhibition french" 32 4
0x001eb090 2 "case 2 dead mia from phoenix 1.gbapal" "case 2 dead mia from phoenix 1" 32 4
0x001eeb68 2 "case 2 kurain village from phoenix 2.gbapal" "case 2 kurain village from phoenix 2" 32 4
0x001f36c8 2 "case 2 pearl fixing urn french.gbapal" "case 2 pearl fixing urn french" 32 4
0x001f7360 2 "case 2 atmey and de masque.gbapal" "case 2 atmey and de masque" 32 4
0x001fec98 2 "case 2 photo of de masque with box french.gbapal" "case 2 photo of de masque with box french" 32 4
0x002031fc 2 "case 2 de masque looking awesome.gbapal" "case 2 de masque looking awesome" 32 4
0x0020b354 2 "case 2 maya with victim from case 2 phoenix 2.gbapal" "case 2 maya with victim from case 2 phoenix 2" 32 4
0x0020ef4c 2 "case 2 run delite with muggers and desiree.gbapal" "case 2 run delite with muggers and desiree" 32 4
0x0021327c 2 "case 2 newspaper article with ron and atmey french.gbapal" "case 2 newspaper article with ron and atmey french" 32 4
0x0021c77c 2 "case 2 atmey hiding french.gbapal" "case 2 atmey hiding french" 32 4
0x002205e0 2 "case 2 kb security president dead.gbapal" "case 2 kb security president dead" 32 4
0x002240e8 2 "case 2 clumsy adrian french.gbapal" "case 2 clumsy adrian french" 32 4
0x00228784 2 "case 2 adrian with broken urn french.gbapal" "case 2 adrian with broken urn french" 32 4
0x0022c67c 2 "case 2 de masque in basement.gbapal" "case 2 de masque in basement" 32 4
0x002316cc 2 "case 2 maya and pearl with fixed urn french.gbapal" "case 2 maya and pearl with fixed urn french" 32 4
0x0023859c 2 "case 2 lordly tailor german.gbapal" "case 2 lordly tailor german" 32 4
0x00241578 2 "case 2 lordly tailor basement german.gbapal" "case 2 lordly tailor basement german" 64 4
0x00250eec 2 "case 2 calling card text german.gbapal" "case 2 calling card text german" 32 4
0x00251fbc 2 "case 2 blackmail letter german.gbapal" "case 2 blackmail letter german" 32 4
0x00253090 2 "case 2 intro calling card close up german.gbapal" "case 2 intro calling card close up german" 32 4
0x00259980 2 "case 2 list of stolen items german.gbapal" "case 2 list of stolen items german" 32 4
0x0025a8cc 2 "case 2 poster of exhibition german.gbapal" "case 2 poster of exhibition german" 32 4
0x0025eac8 2 "case 2 pearl fixing urn german.gbapal" "case 2 pearl fixing urn german" 32 4
0x0026275c 2 "case 2 photo of de masque with box german.gbapal" "case 2 photo of de masque with box german" 32 4
0x00266cc0 2 "case 2 newspaper article with ron and atmey german.gbapal" "case 2 newspaper article with ron and atmey german" 32 4
0x00270564 2 "case 2 atmey hiding german.gbapal" "case 2 atmey hiding german" 32 4
0x002743c8 2 "case 2 clumsy adrian german.gbapal" "case 2 clumsy adrian german" 32 4
0x00278a60 2 "case 2 maya and pearl with fixed urn german.gbapal" "case 2 maya and pearl with fixed urn german" 32 4
0x0027f930 2 "case 2 intro open safe with calling card german.gbapal" "case 2 intro open safe with calling card german" 32 4
0x00280c28 2 "case 2 adrian with broken urn german.gbapal" "case 2 adrian with broken urn german" 32 4
0x00284b20 2 "case 3 tres bien french.gbapal" "case 3 tres bien french" 64 4
0x00295574 2 "case 3 tres bien kitchen.gbapal" "case 3 tres bien kitchen" 32 4
0x0029e578 2 "case 3 vitamin square french.gbapal" "case 3 vitamin square french" 32 4
0x002a5e0c 2 "case 3 blue screen inc.gbapal" "case 3 blue screen inc" 32 4
0x002ae318 2 "case 3 tender lender french.gbapal" "case 3 tender lender french" 32 4
0x002b77f4 2 "case 3 intro victim in restaurant.gbapal" "case 3 intro victim in restaurant" 32 8
0x002bfef8 1 "case 3 victim inverted.gbapal" "case 3 victim inverted.4bpp" 21 22 4
0x002c17cc 1 "case 3 intro victim in restaurant top part of victim.gbapal" "case 3 intro victim in restaurant top part of victim.8bpp" 32 10 8
0x002c4d0c 2 "case 3 intro hand of culprit.gbapal" "case 3 intro hand of culprit" 32 4
0x002c680c 2 "case 3 intro cup of coffee.gbapal" "case 3 intro cup of coffee" 32 4
0x002c83e8 2 "case 3 map of tres bien french.gbapal" "case 3 map of tres bien french" 32 4
0x002c938c 2 "case 3 victim at table.gbapal" "case 3 victim at table" 32 4
0x002ccc48 2 "case 3 maggey unconscious.gbapal" "case 3 maggey unconscious" 32 4
0x002cfd98 2 "case 3 newspaper with scribbles french.gbapal" "case 3 newspaper with scribbles french" 32 4
0x002d4040 2 "case 3 dead victim at table french.gbapal" "case 3 dead victim at table french" 32 4
0x002d71ec 2 "case 3 photo of victim at table.gbapal" "case 3 photo of victim at table" 32 4
0x002da304 2 "case 3 viola as waitress.gbapal" "case 3 viola as waitress" 32 4
0x002ddab0 2 "case 3 tigres accident.gbapal" "case 3 tigres accident" 32 4
0x002e0e84 2 "case 3 victim listening to radio french.gbapal" "case 3 victim listening to radio french" 32 4
0x002e4bc4 2 "case 3 victim wins french.gbapal" "case 3 victim wins french" 32 4
0x002e90d0 2 "case 3 gumshoe saves the day.gbapal" "case 3 gumshoe saves the day" 32 4
0x002f08a4 2 "case 3 maggey munching french.gbapal" "case 3 maggey munching french" 32 4
0x002f82a0 2 "case 3 empty lunchbox french.gbapal" "case 3 empty lunchbox french" 32 4
0x002fca7c 2 "case 3 tres bien german.gbapal" "case 3 tres bien german" 64 4
0x0030d4d0 2 "case 3 vitamin square german.gbapal" "case 3 vitamin square german" 32 4
0x00314d84 2 "case 3 tender lender german.gbapal" "case 3 tender lender german" 32 4
0x0031e270 2 "case 3 map of tres bien german.gbapal" "case 3 map of tres bien german" 32 4
0x0031f1f8 2 "case 3 newspaper with scribbles german.gbapal" "case 3 newspaper with scribbles german" 32 4
0x003235a0 2 "case 3 dead victim at table german.gbapal" "case 3 dead victim at table german" 32 4
0x0032674c 2 "case 3 victim listening to radio german.gbapal" "case 3 victim listening to radio german" 32 4
0x0032a48c 2 "case 3 victim wins german.gbapal" "case 3 victim wins german" 32 4
0x0032e998 2 "case 3 maggey munching german.gbapal" "case 3 maggey munching german" 32 4
0x00336394 2 "case 3 empty lunchbox german.gbapal" "case 3 empty lunchbox german" 32 4
0x0033ab70 2 "case 4 intro bridge.gbapal" "case 4 intro bridge" 32 8
0x003409a4 2 "case 4 intro kidnapper with victim in focus.gbapal" "case 4 intro kidnapper with victim in focus" 32 4
0x00343dcc 2 "case 4 intro policewoman in focus.gbapal" "case 4 intro policewoman in focus" 32 4
0x00347944 2 "case 4 intro phoenix in hospital.gbapal" "case 4 intro phoenix in hospital" 32 4
0x00349bf8 2 "case 4 victims notes french.gbapal" "case 4 victims notes french" 32 4
0x0034ab4c 2 "case 4 map of bridge french.gbapal" "case 4 map of bridge french" 32 4
0x0034c7b4 2 "case 4 photo of victim in trunk.gbapal" "case 4 photo of victim in trunk" 32 4
0x0034ffec 2 "case 4 photo of fawles on bridge.gbapal" "case 4 photo of fawles on bridge" 32 4
0x003542b8 2 "case 4 policewoman with kidnapper and victim.gbapal" "case 4 policewoman with kidnapper and victim" 32 4
0x00358ac0 2 "case 4 victims notes german.gbapal" "case 4 victims notes german" 32 4
0x003599e8 2 "case 4 map of bridge german.gbapal" "case 4 map of bridge german" 32 4
0x0035b650 2 "case 5 hazakura temple entrance.gbapal" "case 5 hazakura temple entrance" 32 4
0x00363878 2 "case 5 hazakura temple courtyard.gbapal" "case 5 hazakura temple courtyard" 32 4
0x0036c0e4 2 "case 5 hazakura temple main hall.gbapal" "case 5 hazakura temple main hall" 32 4
0x003768a8 2 "case 5 dusky bridge french.gbapal" "case 5 dusky bridge french" 32 4
0x0037f954 2 "case 5 dusky bridge burnt down french.gbapal" "case 5 dusky bridge burnt down french" 32 4
0x00388cc4 2 "case 5 dusky bridge at night french.gbapal" "case 5 dusky bridge at night french" 32 4
0x00391664 2 "case 5 heavenly hall french.gbapal" "case 5 heavenly hall french" 32 4
0x0039a4b8 2 "case 5 outside of inner temple french.gbapal" "case 5 outside of inner temple french" 64 4
0x003ab634 2 "case 5 inside inner temple.gbapal" "case 5 inside inner temple" 32 4
0x003b59f8 2 "case 5 inner temple garden french.gbapal" "case 5 inner temple garden french" 32 4
0x003bff4c 2 "case 5 old photo of mia and maya french.gbapal" "case 5 old photo of mia and maya french" 32 4
0x003c9154 2 "case 5 intro victim in front of statue.gbapal" "case 5 intro victim in front of statue" 32 8
0x003ce25c 2 "case 5 weather report french.gbapal" "case 5 weather report french" 32 4
0x003cf2fc 2 "case 5 larrys letter french.gbapal" "case 5 larrys letter french" 32 4
0x003d01e4 2 "case 5 map of hazakura temple french.gbapal" "case 5 map of hazakura temple french" 32 4
0x003d2294 2 "case 5 morgans instructions 1-3 french.gbapal" "case 5 morgans instructions 1-3 french" 32 4
0x003d446c 2 "case 5 morgans instructions 2-3 french.gbapal" "case 5 morgans instructions 2-3 french" 32 4
0x003d65a0 2 "case 5 morgans instructions 3-3 french.gbapal" "case 5 morgans instructions 3-3 french" 32 4
0x003d89e4 2 "case 5 magazine article french.gbapal" "case 5 magazine article french" 32 4
0x003dcb64 2 "case 5 picture of elise.gbapal" "case 5 picture of elise" 32 4
0x003e44cc 2 "case 5 scroll french.gbapal" "case 5 scroll french" 32 4
0x003e61f0 2 "case 5 summoning.gbapal" "case 5 summoning" 32 4
0x003e9124 2 "case 5 larry at heavenly hall.gbapal" "case 5 larry at heavenly hall" 32 4
0x003ee8b0 2 "case 5 iris stabbing victim.gbapal" "case 5 iris stabbing victim" 32 4
0x003f37d4 2 "case 5 photo of tracks.gbapal" "case 5 photo of tracks" 32 4
0x003f6f84 2 "case 5 photo of victim.gbapal" "case 5 photo of victim" 32 4
0x003fa748 2 "case 5 larrys drawing.gbapal" "case 5 larrys drawing" 32 4
0x004050f8 2 "case 5 scroll with sauce.gbapal" "case 5 scroll with sauce" 32 4
0x00407290 2 "case 5 burning bridge.gbapal" "case 5 burning bridge" 32 8
0x0040d3fc 2 "case 5 godot with sword staff.gbapal" "case 5 godot with sword staff" 32 4
0x0041158c 2 "case 5 photo of burned down bridge.gbapal" "case 5 photo of burned down bridge" 32 4
0x0041510c 2 "case 5 edgeworth in elevator from case 4 from phoenix 1.gbapal" "case 5 edgeworth in elevator from case 4 from phoenix 1" 32 4
0x00419a00 1 "case 5 larry looking down with stretched out hand.gbapal" "case 5 larry looking down with stretched out hand.8bpp" 16 16 8
0x0041c960 2 "case 5 hazakura temple courtyard at night.gbapal" "case 5 hazakura temple courtyard at night" 32 4
0x0041fb54 2 "case 5 maya attacking elise.gbapal" "case 5 maya attacking elise" 32 4
0x004245f0 2 "case 5 ghost of dahlia.gbapal" "case 5 ghost of dahlia" 32 4
0x00425dd4 2 "case 5 ghost of dahlia angry 1.gbapal" "case 5 ghost of dahlia angry 1" 32 4
0x00427f88 2 "case 5 ghost of dahlia angry 2.gbapal" "case 5 ghost of dahlia angry 2" 32 4
0x0042a01c 2 "case 5 ghost of dahlia angry 3.gbapal" "case 5 ghost of dahlia angry 3" 32 4
0x0042c00c 2 "case 5 blue magatama.gbapal" "case 5 blue magatama" 32 4
0x0042ea30 2 "case 5 larrys drawing of everyone.gbapal" "case 5 larrys drawing of everyone" 32 8
0x0043c130 2 "case 5 dusky bridge on fire bw french.gbapal" "case 5 dusky bridge on fire bw french" 32 4
0x004410f4 2 "case 5 dusky bridge german.gbapal" "case 5 dusky bridge german" 32 4
0x0044a15c 2 "case 5 dusky bridge burnt down german.gbapal" "case 5 dusky bridge burnt down german" 32 4
0x0045348c 2 "case 5 dusky bridge at night german.gbapal" "case 5 dusky bridge at night german" 32 4
0x0045bdd8 2 "case 5 heavenly hall german.gbapal" "case 5 heavenly hall german" 32 4
0x00464c4c 2 "case 5 outside of inner temple german.gbapal" "case 5 outside of inner temple german" 64 4
0x00475d88 2 "case 5 inner temple garden german.gbapal" "case 5 inner temple garden german" 32 4
0x004802dc 2 "case 5 old photo of mia and maya german.gbapal" "case 5 old photo of mia and maya german" 32 4
0x004894e4 2 "case 5 weather report german.gbapal" "case 5 weather report german" 32 4
0x0048a50c 2 "case 5 larrys letter german.gbapal" "case 5 larrys letter german" 32 4
0x0048b518 2 "case 5 map of hazakura temple german.gbapal" "case 5 map of hazakura temple german" 32 4
0x0048d5d4 2 "case 5 morgans instructions 1-3 german.gbapal" "case 5 morgans instructions 1-3 german" 32 4
0x0048f354 2 "case 5 morgans instructions 2-3 german.gbapal" "case 5 morgans instructions 2-3 german" 32 4
0x0049123c 2 "case 5 morgans instructions 3-3 german.gbapal" "case 5 morgans instructions 3-3 german" 32 4
0x00493318 2 "case 5 magazine article german.gbapal" "case 5 magazine article german" 32 4
0x00497434 2 "case 5 scroll german.gbapal" "case 5 scroll german" 32 4
0x00499158 2 "case 5 dusky bridge on fire bw german.gbapal" "case 5 dusky bridge on fire bw german" 32 4
0x0049e108 1 "case 5 godots red visor in court.gbapal" "case 5 godots red visor in court.4bpp" 32 24 4
0x0049ef98 2 "case 1 intro touchscreen french.gbapal" "case 1 intro touchscreen french" 32 4
0x0049fff0 2 "case 2 intro touchscreen french.gbapal" "case 2 intro touchscreen french" 32 4
0x004a0fd0 2 "case 3 intro touchscreen french.gbapal" "case 3 intro touchscreen french" 32 4
0x004a2008 2 "case 4 intro touchscreen french.gbapal" "case 4 intro touchscreen french" 32 4
0x004a3008 2 "case 5 intro touchscreen french.gbapal" "case 5 intro touchscreen french" 32 4
0x004a402c 2 "case 1 intro touchscreen german.gbapal" "case 1 intro touchscreen german" 32 4
0x004a5084 2 "case 2 intro touchscreen german.gbapal" "case 2 intro touchscreen german" 32 4
0x004a6120 2 "case 3 intro touchscreen german.gbapal" "case 3 intro touchscreen german" 32 4
0x004a7150 2 "case 4 intro touchscreen german.gbapal" "case 4 intro touchscreen german" 32 4
0x004a8258 2 "case 5 intro touchscreen german.gbapal" "case 5 intro touchscreen german" 32 4
0x004a9280 3 "case 2 lordly tailor basement (statue 1-3)" 6 4 1337 8
0x004a97f0 3 "case 2 lordly tailor basement (statue 2-3)" 6 4 1337 8
0x004a9cf8 3 "case 2 lordly tailor basement (statue 3-3)" 6 3 1337 8
0x004aa0a4 3 "case 2 lordly tailor basement (moved statue 1-2)" 5 5 1337 8
0x004aa634 3 "case 2 lordly tailor basement (moved statue 2-2)" 5 5 1337 8
0x004aab88 3 "case 2 lordly tailor basement (bent shichishito)" 6 2 1337 8
0a004aae04 3 "case 2 lordly tailor basement (dropped box)" 5 4 1337 8
0x004ab108 3 "case 2 luke atmeys office (bag on table 1-2)" 6 4 1337 8
0x004ab628 3 "case 2 luke atmeys office (bag on table 2-2)" 6 4 1337 8
0x004aba20 3 "case 2 kb security presidents office (floor in front of safe)" 8 3 1337 8
0x004abe6c 3 "case 2 kb security presidents office (floor above carpet)" 3 1 1337 8
0x004abf14 3 "case 3 vitamin square (tigres scooter 1-3)" 6 2 1337 8
0x004ac13c 3 "case 3 vitamin square (tigres scooter 2-3)" 9 3 1337 8
0x004ac6e4 3 "case 3 vitamin square (tigres scooter 3-3)" 9 3 1337 8
0x004acc58 3 "case 3 tres bien kitchen (magatama on table)" 3 1 1337 8
0x004acd08 3 "case 3 tender lender (piece of paper below shogi piece)" 1 2 1337 8
0x004acd84 3 "case 4 intro bridge (person on bridge)" 2 4 1337 4
0x004ace50 3 "case 5 map of hazakura temple (location of heavenly hall)" 6 5 1337 4
0x004acfc0 3 "case 5 dusky bridge burnt down (safety planks top-left)" 5 3 1337 8
0x004ad398 3 "case 5 dusky bridge burnt down (safety planks top-mid)" 7 2 1337 8
0x004ad708 3 "case 5 dusky bridge burnt down (safety planks top-right)" 5 2 1337 8
0x004ad9a8 3 "case 5 dusky bridge burnt down (safety planks center)" 8 3 1337 8
0x004adf28 3 "case 5 dusky bridge burnt down (safety planks bottom-left)" 3 4 1337 8
0x004ae25c 3 "case 5 dusky bridge burnt down (safety planks bottom-left 2)" 2 1 1337 8
0x004ae2e8 3 "case 5 dusky bridge burnt down (safety planks bottom-right)" 2 3 1337 8
0x004ae470 3 "case 5 dusky bridge burnt down (gumshoes fix near)" 4 3 1337 8
0x004ae790 3 "case 5 dusky bridge burnt down (gumshoes fix mid)" 3 4 1337 8
0x004aeadc 3 "case 5 dusky bridge burnt down (gumshoes fix far)" 2 3 1337 8
0x004aec90 3 "case 5 hazakura temple main hall (larrys letter in left corner)" 2 2 1337 8
0x004aed98 3 "case 5 hazakura temple entrance (snow mobile with snow 1)" 4 3 1337 8
0x004af0b8 3 "case 5 hazakura temple entrance (snow mobile with snow 2)" 5 2 1337 8
0x004af318 3 "case 5 hazakura temple entrance (snow mobile with snow 3)" 4 3 1337 8
0x004af5a8 3 "case 5 hazakura temple entrance (snow mobile with snow 4)" 6 3 1337 8
0x004af9d4 3 "case 5 hazakura temple entrance (snow mobile with snow 5)" 6 3 1337 8
0x004afe20 3 "case 5 hazakura temple entrance (snow mobile with snow 6)" 8 1 1337 8
0x004aff14 3 "case 5 inside inner temple (scroll on the right top)" 3 6 1337 8
0x004b031c 3 "case 5 inside inner temple (scroll on the right bottom)" 3 6 1337 8
0x004b0754 3 "case 5 inside inner temple (trick lock chains 1)" 2 2 1337 8
0x004b0868 3 "case 5 inside inner temple (trick lock chains 1)" 2 2 1337 8
0x004b097c 3 "case 5 inside inner temple (trick lock chains 1)" 5 2 1337 8
0x004b0c4c 3 "case 5 inside inner temple (trick lock chains 1)" 2 2 1337 8
0x004b0d60 3 "case 5 inside inner temple (trick lock chains 1)" 2 2 1337 8
0x004b0e78 3 "case 5 inside inner temple (trick lock chains 1)" 3 2 1337 8
0x004b1008 3 "case 5 inside inner temple (trick lock chains 1)" 5 2 1337 8
0x004b12c4 3 "case 5 inside inner temple (trick lock chains 1)" 5 2 1337 8
0x004b1580 3 "case 5 inside inner temple (trick lock chains 2)" 2 2 1337 8
0x004b1688 3 "case 5 inside inner temple (trick lock chains 2)" 2 2 1337 8
0x004b1790 3 "case 5 inside inner temple (trick lock chains 2)" 5 2 1337 8
0x004b1a2c 3 "case 5 inside inner temple (trick lock chains 2)" 2 2 1337 8
0x004b1b38 3 "case 5 inside inner temple (trick lock chains 2)" 6 3 1337 8
0x004b2018 3 "case 5 inside inner temple (trick lock chains 2)" 2 2 1337 8
0x004b213c 3 "case 5 inside inner temple (trick lock chains 2)" 4 2 1337 8
0x004b2374 3 "case 5 inside inner temple (trick lock chains 2)" 9 1 1337 8
0x004b25f4 3 "case 5 inside inner temple (trick lock chains 2)" 6 2 1337 8
0x004b2938 3 "case 5 inside inner temple (trick lock chains 2)" 5 2 1337 8
0x004b2bf4 3 "case 5 inside inner temple (trick lock chains 2)" 1 4 1337 8
0x004b2cfc 3 "case 5 inside inner temple (trick lock chains 2)" 4 3 1337 8
0x004b3018 3 "case 5 inside inner temple (trick lock chains 2)" 6 2 1337 8
0x004b336c 3 "case 5 inside inner temple (trick lock chains 2)" 4 3 1337 8
0x004b3664 3 "case 5 outside of inner temple (rope on pole)" 6 2 1337 8
0x004b3988 3 "case 5 outside of inner temple (snow on oven 1)" 2 3 1337 8
0x004b3b30 3 "case 5 outside of inner temple (snow on oven 2)" 5 3 1337 8
0x004b3e5c 3 "case 5 outside of inner temple (snow on oven 3)" 6 1 1337 8
0x004b3fd4 3 "case 5 outside of inner temple (snow on oven 4)" 7 2 1337 8
0x004b4284 3 "case 5 map of hazakura temple (spot before heavenly hall)" 3 2 1337 4
0x004b42c0 3 "case 5 map of hazakura temple (bridge with all ropes)" 7 2 1337 4
0x004b43d0 3 "case 5 map of hazakura temple (rest of bottom right rope)" 2 1 1337 4
0x004b4400 3 "case 5 map of hazakura temple (bottom right rope with bridge)" 2 2 1337 4
0x004b445c 3 "case 4 map of bridge (blank out car)" 3 2 1337 4
0x004b447c 3 "case 4 map of bridge (bridge without planks left)" 7 2 1337 4
0x004b4508 3 "case 4 map of bridge (bridge without planks right)" 7 2 1337 4
0x004b45dc 3 "case 4 map of bridge (without bottom right rope 1)" 2 2 1337 4
0x004b4618 3 "case 4 map of bridge (without bottom right rope 2)" 2 2 1337 4
0x004b4650 3 "case 4 map of bridge (without bottom right rope 3)" 2 2 1337 4
0x004b46b4 3 "case 5 inner temple garden (snow around lantern 1)" 3 4 1337 8
0x004b4898 3 "case 5 inner temple garden (snow around lantern 2)" 4 2 1337 8
0x004b49f4 3 "case 5 inner temple garden (snow around lantern 3)" 5 1 1337 8
0x004b4ac4 3 "case 5 inner temple garden (snow around lantern 4)" 7 2 1337 8
0x004b4bd8 3 "case 5 inner temple garden (snow around lantern 5)" 6 2 1337 8
0x004b4d34 3 "case 5 inner temple garden (snow around lantern 6)" 6 2 1337 8
0x004b4ea0 3 "case 4 map of bridge (red dot on bottom right pole)" 1 1 1337 4
0x004b4ec8 3 "case 4 map of bridge (red dot on rocks 1)" 2 1 1337 4
0x004b4f08 3 "case 4 map of bridge (pole without dot)" 1 1 1337 4
0x004b4f30 3 "case 4 map of bridge (red dot on rocks 2)" 2 1 1337 4
0x004b4f6c 3 "case 4 map of bridge (rocks without dot 1)" 1 1 1337 4
0x004b4f8c 3 "case 4 map of bridge (red dot at water)" 2 1 1337 4
0x004b4fd0 3 "case 4 map of bridge (rocks without dot 2)" 1 1 1337 4
0x004b4ff0 3 "case 4 map of bridge (red dot below bridge)" 2 1 1337 4
0x004b501c 3 "case 4 map of bridge (little corner of coast)" 1 1 1337 4
0x004b503c 3 "case 4 map of bridge (red dot along rope)" 2 1 1337 4
0x004b506c 3 "case 4 map of bridge (part of rope)" 1 1 1337 4
0x004b508c 3 "case 4 map of bridge (red dot along rope)" 2 1 1337 4
0x004b50b4 3 "case 4 map of bridge (part of rope)" 1 1 1337 4
0x004b50d4 3 "case 4 map of bridge (red dot along rope)" 2 1 1337 4
0x004b50fc 3 "case 4 map of bridge (part of rope)" 1 1 1337 4
0x004b5110 3 "case 4 map of bridge (red dot along rope)" 2 1 1337 4
0x004b5150 3 "case 4 map of bridge (part of rope)" 1 1 1337 4
0x004b5164 3 "case 5 map of hazakura temple (complete bridge)" 7 2 1337 4
0x004b5270 3 "case 5 inner temple garden (talisman under tree)" 2 2 1337 8
0x004b532c 3 "case 5 inner temple garden (unknown)" 2 2 1337 8
0x004b53c8 3 "case 5 inner temple garden (part of blank lantern)" 2 2 1337 8
0x004b5428 3 "case 5 inner temple garden (middle blank lantern)" 2 4 1337 8
0x004b555c 3 "case 5 inner temple garden (unknown)" 3 2 1337 8
0x004b5630 3 "case 5 inner temple garden (snow around lantern 7)" 8 2 1337 8
0x004b5828 3 "case 5 inner temple garden (snow around lantern 8)" 4 3 1337 8
0x004b59fc 3 "case 5 inner temple garden (snow around lantern 9)" 3 2 1337 8
0x004b5af0 3 "case 5 map of hazakura temple (location of crystal)" 2 1 1337 4
0x004b5b2c 3 "case 2 lordly tailor basement (statue 1-3)" 6 4 1337 8
0x004b609c 3 "case 2 lordly tailor basement (moved statue 1-2)" 5 5 1337 8
0x004b6628 3 "case 2 lordly tailor basement (dropped box)" 5 4 1337 8
0x004b692c 3 "case 5 dusky bridge burnt down (gumshoes fix mid)" 3 4 1337 8
0x004b6c78 3 "case 5 dusky bridge burnt down (gumshoes fix far)" 2 3 1337 8
0x004b6e2c 3 "case 2 luke atmeys office (bag on table complete)" 6 8 1337 8
0x004b7720 3 "case 3 vitamin square (magazine on table)" 6 3 1337 8
0x004b7af8 3 "case 3 tender lender (badge on suit)" 1 1 1337 8
0x004b7b38 3 "case 3 tres bien (magazine stuck behind stand)" 3 4 1337 8
0x004b7d68 3 "case 3 tender lender (matchbook)" 2 2 1337 8
0x004b7e7c 3 "case 5 hazakura temple main hall (larrys letter in left corner)" 2 2 1337 8
0x004b7f90 3 "case 4 map of bridge french (with attacker-victim icons)" 5 3 1337 4
0x004b80c0 3 "case 4 map of bridge (blank out car)" 3 2 1337 4
0x004b80e0 3 "case 3 vitamin square (magazine on table)" 6 3 1337 8
0x004b84b8 3 "case 4 map of bridge german (with attacker-victim icons)" 5 3 1337 4
// 0x004b85e4 1 "" 0x00010cc0 uncompressed bustups and effects with tilemaps yes
// 0x004c92a4 1 "" 0x0000f320 uncompressed courtroom defense side with blur yes
0x004d85c4 3 "psychelock chains (unknown reference)" 16 16 1337 8
0x004d9818 0 "characters.bin" 0x002ca2dc
// 0x007a3af4 1 "" 0x00000200 uncompressed unknown palette
// 0x007a3cf4 5 0x00002094 main menu choice ???
0x007a3cf4 4 "common/graphics/interface/uncomheader-007a3cf4-000.png"
// 0x007a5d88 1 "" 0x0000a000 uncompressed main menu case titles touchscreen french
// 0x007afd88 5 0x0000c378 main menu case titles touchscreen french
0x007afd88 4 "fr/graphics/interface/uncomheader-007afd88-000.png"
0x007b1e1c 4 "fr/graphics/interface/uncomheader-007afd88-001.png"
0x007b3eb0 4 "fr/graphics/interface/uncomheader-007afd88-002.png"
0x007b5f44 4 "fr/graphics/interface/uncomheader-007afd88-003.png"
0x007b7fd8 4 "fr/graphics/interface/uncomheader-007afd88-004.png"
0x007ba06c 4 "fr/graphics/interface/uncomheader-007afd88-005.png"
// 0x007bc100 5 0x00001034 main menu episode title and numbers with arrows french
0x007bc100 4 "fr/graphics/interface/uncomheader-007bc100-000.png"
// 0x007bd134 5 0x00001128 main menu language change buttons
0x007bd134 4 "common/graphics/interface/uncomheader-007bd134-000.png"
0x007bd9c8 4 "common/graphics/interface/uncomheader-007bd134-001.png"
// 0x007be25c 5 0x00001034 french press start to save message
0x007be25c 4 "fr/graphics/interface/uncomheader-007be25c-000.png"
// 0x007bf290 5 0x00018f18 french touchscreen control elements
0x007bf290 4 "fr/graphics/interface/uncomheader-007bf290-000.png"
0x007bfac4 4 "fr/graphics/interface/uncomheader-007bf290-001.png"
0x007bfd58 4 "fr/graphics/interface/uncomheader-007bf290-002.png"
0x007bffec 4 "fr/graphics/interface/uncomheader-007bf290-003.png"
0x007c8080 4 "fr/graphics/interface/uncomheader-007bf290-004.png"
0x007d0114 4 "fr/graphics/interface/uncomheader-007bf290-005.png"
// 0x007d81a8 5 0x000080bc court doors and evidence windows
0x007d81a8 4 "common/graphics/interface/uncomheader-007d81a8-000.png"
0x007dc1dc 4 "common/graphics/interface/uncomheader-007d81a8-001.png"
0x007dc230 4 "common/graphics/interface/uncomheader-007d81a8-002.png"
// 0x007e0264 5 0x00002034 text advance animation
0x007e0264 4 "common/graphics/interface/uncomheader-007e0264-000.png"
// 0x007e2298 5 0x000135c0 new game and continue menu elements french and japanese
0x007e2298 4 "common/graphics/interface/uncomheader-007e2298-000.png"
0x007e272c 4 "common/graphics/interface/uncomheader-007e2298-001.png"
0x007e2fc0 4 "common/graphics/interface/uncomheader-007e2298-002.png"
0x007e3854 4 "common/graphics/interface/uncomheader-007e2298-003.png"
0x007e40e8 4 "common/graphics/interface/uncomheader-007e2298-004.png"
0x007e497c 4 "common/graphics/interface/uncomheader-007e2298-005.png"
0x007e5a10 4 "common/graphics/interface/uncomheader-007e2298-006.png"
0x007e6aa4 4 "common/graphics/interface/uncomheader-007e2298-007.png"
0x007eaad8 4 "common/graphics/interface/uncomheader-007e2298-008.png"
0x007eb36c 4 "common/graphics/interface/uncomheader-007e2298-009.png"
0x007ebc00 4 "common/graphics/interface/uncomheader-007e2298-010.png"
0x007ebe34 4 "common/graphics/interface/uncomheader-007e2298-011.png"
0x007ec6c8 4 "common/graphics/interface/uncomheader-007e2298-012.png"
0x007ecf5c 4 "common/graphics/interface/uncomheader-007e2298-013.png"
0x007f0f90 4 "common/graphics/interface/uncomheader-007e2298-014.png"
0x007f4fc4 4 "common/graphics/interface/uncomheader-007e2298-015.png"
// 0x007f5858 1 "" 0x0000a000 uncompressed main menu case titles touchscreen german
// 0x007ff858 5 0x0000a2e4 main menu case titles touchscreen german
0x007ff858 4 "de/graphics/interface/uncomheader-007ff858-000.png"
0x008018ec 4 "de/graphics/interface/uncomheader-007ff858-001.png"
0x00803980 4 "de/graphics/interface/uncomheader-007ff858-002.png"
0x00805a14 4 "de/graphics/interface/uncomheader-007ff858-003.png"
0x00807aa8 4 "de/graphics/interface/uncomheader-007ff858-004.png"
// 0x00809b3c 5 0x00001094 main menu episode title and numbers with arrows german
0x00809b3c 4 "de/graphics/interface/uncomheader-00809b3c-000.png"
// 0x0080abd0 5 0x00001034 german press start to save message
0x0080abd0 4 "de/graphics/interface/uncomheader-0080abd0-000.png"
// 0x0080bc04 5 0x000181bc german touchscreen control elements
0x0080bc04 4 "de/graphics/interface/uncomheader-0080bc04-000.png"
0x00813c98 4 "de/graphics/interface/uncomheader-0080bc04-001.png"
0x0081bd2c 4 "de/graphics/interface/uncomheader-0080bc04-002.png"
// 0x00823dc0 5 0x0000e59c new game and continue menu elements german
0x00823dc0 4 "de/graphics/interface/uncomheader-00823dc0-000.png"
0x00824e54 4 "de/graphics/interface/uncomheader-00823dc0-001.png"
0x00825ee8 4 "de/graphics/interface/uncomheader-00823dc0-002.png"
0x0082677c 4 "de/graphics/interface/uncomheader-00823dc0-003.png"
0x00827010 4 "de/graphics/interface/uncomheader-00823dc0-004.png"
0x008278a4 4 "de/graphics/interface/uncomheader-00823dc0-005.png"
0x00828138 4 "de/graphics/interface/uncomheader-00823dc0-006.png"
0x008291cc 4 "de/graphics/interface/uncomheader-00823dc0-007.png"
0x00829a60 4 "de/graphics/interface/uncomheader-00823dc0-008.png"
0x0082a2f4 4 "de/graphics/interface/uncomheader-00823dc0-009.png"
0x0082e328 4 "de/graphics/interface/uncomheader-00823dc0-010.png"
// 0x0083235c 5 0x000090fc delete savegame elements
0x0083235c 4 "common/graphics/interface/uncomheader-0083235c-000.png"
0x008333f0 4 "common/graphics/interface/uncomheader-0083235c-001.png"
0x00837424 4 "common/graphics/interface/uncomheader-0083235c-002.png"
// 0x0083b458 5 0x0001809c defense bustups (phoenix, mia, edgeworth)
0x0083b458 4 "common/graphics/bustups/uncomheader-0083b458-000.png"
0x0084348c 4 "common/graphics/bustups/uncomheader-0083b458-001.png"
0x0084b4c0 4 "common/graphics/bustups/uncomheader-0083b458-002.png"
// 0x008534f4 5 0x0000889c gba court speechbubbles and buttons
0x008534f4 4 "common/graphics/uncomheader-008534f4-000.png"
0x0085b528 4 "common/graphics/uncomheader-008534f4-001.png"
0x0085b95c 4 "common/graphics/uncomheader-008534f4-002.png"
// 0x0085bd90 5 0x0000e16c cross-examination bustups
0x0085bd90 4 "common/graphics/bustups/uncomheader-0085bd90-000.png"
0x0085ddc4 4 "common/graphics/bustups/uncomheader-0085bd90-001.png"
0x0085fdf8 4 "common/graphics/bustups/uncomheader-0085bd90-002.png"
0x00861e2c 4 "common/graphics/bustups/uncomheader-0085bd90-003.png"
0x00863e60 4 "common/graphics/bustups/uncomheader-0085bd90-004.png"
0x00865e94 4 "common/graphics/bustups/uncomheader-0085bd90-005.png"
0x00867ec8 4 "common/graphics/bustups/uncomheader-0085bd90-006.png"
// 0x00869efc 5 0x00002468 cross-examination bustup background bar
0x00869efc 4 "common/graphics/uncomheader-00869efc-000.png"
0x0086a330 4 "common/graphics/uncomheader-00869efc-001.png"
// 0x0086c364 5 0x00001068 unknown dust
0x0086c364 4 "common/graphics/uncomheader-0086c364-000.png"
0x0086cb98 4 "common/graphics/uncomheader-0086c364-001.png"
// 0x0086d3cc 5 0x00054ee8 various character poses
0x0086d3cc 4 "common/graphics/uncomheader-0086d3cc-000.png"
0x00871400 4 "common/graphics/uncomheader-0086d3cc-001.png"
0x00871c34 4 "common/graphics/uncomheader-0086d3cc-002.png"
0x00875c68 4 "common/graphics/uncomheader-0086d3cc-003.png"
0x00876c9c 4 "common/graphics/uncomheader-0086d3cc-004.png"
0x0087acd0 4 "common/graphics/uncomheader-0086d3cc-005.png"
0x0087bd04 4 "common/graphics/uncomheader-0086d3cc-006.png"
0x0087fd38 4 "common/graphics/uncomheader-0086d3cc-007.png"
0x00880d6c 4 "common/graphics/uncomheader-0086d3cc-008.png"
0x00884da0 4 "common/graphics/uncomheader-0086d3cc-009.png"
0x00885dd4 4 "common/graphics/uncomheader-0086d3cc-010.png"
0x00889e08 4 "common/graphics/uncomheader-0086d3cc-011.png"
0x0088ae3c 4 "common/graphics/uncomheader-0086d3cc-012.png"
0x0088ee70 4 "common/graphics/uncomheader-0086d3cc-013.png"
0x0088fea4 4 "common/graphics/uncomheader-0086d3cc-014.png"
0x00893ed8 4 "common/graphics/uncomheader-0086d3cc-015.png"
0x00894f0c 4 "common/graphics/uncomheader-0086d3cc-016.png"
0x00898f40 4 "common/graphics/uncomheader-0086d3cc-017.png"
0x00899f74 4 "common/graphics/uncomheader-0086d3cc-018.png"
0x0089dfa8 4 "common/graphics/uncomheader-0086d3cc-019.png"
0x0089efdc 4 "common/graphics/uncomheader-0086d3cc-020.png"
0x008a3010 4 "common/graphics/uncomheader-0086d3cc-021.png"
0x008a4044 4 "common/graphics/uncomheader-0086d3cc-022.png"
0x008a8078 4 "common/graphics/uncomheader-0086d3cc-023.png"
0x008a90ac 4 "common/graphics/uncomheader-0086d3cc-024.png"
0x008ad0e0 4 "common/graphics/uncomheader-0086d3cc-025.png"
0x008ae114 4 "common/graphics/uncomheader-0086d3cc-026.png"
0x008b2148 4 "common/graphics/uncomheader-0086d3cc-027.png"
0x008b317c 4 "common/graphics/uncomheader-0086d3cc-028.png"
0x008b71b0 4 "common/graphics/uncomheader-0086d3cc-029.png"
0x008b81e4 4 "common/graphics/uncomheader-0086d3cc-030.png"
0x008bc218 4 "common/graphics/uncomheader-0086d3cc-031.png"
0x008bd24c 4 "common/graphics/uncomheader-0086d3cc-032.png"
0x008c1280 4 "common/graphics/uncomheader-0086d3cc-033.png"
0x008c22b4 0 "compressed-blob-01.bin" 0x00000262
0x008c2518 0 "compressed-blob-02.bin" 0x000004c9
0x008c29e4 0 "compressed-blob-03.bin" 0x00000512
0x008c2ef8 0 "compressed-blob-04.bin" 0x0000066a
0x008c3564 0 "compressed-blob-05.bin" 0x00000919
0x008c3e80 0 "compressed-blob-06.bin" 0x000008cd
0x008c4750 0 "compressed-blob-07.bin" 0x000001da
0x008c492c 0 "compressed-blob-08.bin" 0x000002be
0x008c4bec 0 "compressed-blob-09.bin" 0x0000058c
0x008c5178 0 "compressed-blob-10.bin" 0x0000054a
0x008c56c4 0 "compressed-blob-11.bin" 0x000008af
0x008c5f74 0 "compressed-blob-12.bin" 0x00000853
0x008c67c8 0 "compressed-blob-13.bin" 0x000002bd
0x008c6a88 0 "compressed-blob-14.bin" 0x00000441
0x008c6ecc 0 "compressed-blob-15.bin" 0x00000481
0x008c7350 0 "compressed-blob-16.bin" 0x00000511
0x008c7864 0 "compressed-blob-17.bin" 0x0000064f
0x008c7eb4 0 "compressed-blob-18.bin" 0x0000069c
0x008c8550 0 "compressed-blob-19.bin" 0x000001ec
0x008c873c 0 "compressed-blob-20.bin" 0x00000315
0x008c8a54 0 "compressed-blob-21.bin" 0x00000408
0x008c8e5c 0 "compressed-blob-22.bin" 0x00000455
0x008c92b4 0 "compressed-blob-23.bin" 0x0000051b
0x008c97d0 0 "compressed-blob-24.bin" 0x000004d1
0x008c9ca4 0 "unknown archive1.bin" 0x0003243f
0x008fc0e4 0 "unknown archive2.bin" 0x00043cc7
// 0x0093fdac 5 0x0000bf78 locations french
0x0093fdac 4 "fr/graphics/choices-locations/uncomheader-0093fdac-000.png"
0x00940660 4 "fr/graphics/choices-locations/uncomheader-0093fdac-001.png"
0x00940f14 4 "fr/graphics/choices-locations/uncomheader-0093fdac-002.png"
0x009417c8 4 "fr/graphics/choices-locations/uncomheader-0093fdac-003.png"
0x0094207c 4 "fr/graphics/choices-locations/uncomheader-0093fdac-004.png"
0x00942930 4 "fr/graphics/choices-locations/uncomheader-0093fdac-005.png"
0x009431e4 4 "fr/graphics/choices-locations/uncomheader-0093fdac-006.png"
0x00943a98 4 "fr/graphics/choices-locations/uncomheader-0093fdac-007.png"
0x0094434c 4 "fr/graphics/choices-locations/uncomheader-0093fdac-008.png"
0x00944c00 4 "fr/graphics/choices-locations/uncomheader-0093fdac-009.png"
0x009454b4 4 "fr/graphics/choices-locations/uncomheader-0093fdac-010.png"
0x00945d68 4 "fr/graphics/choices-locations/uncomheader-0093fdac-011.png"
0x0094661c 4 "fr/graphics/choices-locations/uncomheader-0093fdac-012.png"
0x00946ed0 4 "fr/graphics/choices-locations/uncomheader-0093fdac-013.png"
0x00947784 4 "fr/graphics/choices-locations/uncomheader-0093fdac-014.png"
0x00948038 4 "fr/graphics/choices-locations/uncomheader-0093fdac-015.png"
0x009488ec 4 "fr/graphics/choices-locations/uncomheader-0093fdac-016.png"
0x009491a0 4 "fr/graphics/choices-locations/uncomheader-0093fdac-017.png"
0x00949a54 4 "fr/graphics/choices-locations/uncomheader-0093fdac-018.png"
0x0094a308 4 "fr/graphics/choices-locations/uncomheader-0093fdac-019.png"
0x0094abbc 4 "fr/graphics/choices-locations/uncomheader-0093fdac-020.png"
0x0094b470 4 "fr/graphics/choices-locations/uncomheader-0093fdac-021.png"
// 0x0094bd24 5 0x0000bf78 locations german
0x0094bd24 4 "de/graphics/choices-locations/uncomheader-0094bd24-000.png"
0x0094c5d8 4 "de/graphics/choices-locations/uncomheader-0094bd24-001.png"
0x0094ce8c 4 "de/graphics/choices-locations/uncomheader-0094bd24-002.png"
0x0094d740 4 "de/graphics/choices-locations/uncomheader-0094bd24-003.png"
0x0094dff4 4 "de/graphics/choices-locations/uncomheader-0094bd24-004.png"
0x0094e8a8 4 "de/graphics/choices-locations/uncomheader-0094bd24-005.png"
0x0094f15c 4 "de/graphics/choices-locations/uncomheader-0094bd24-006.png"
0x0094fa10 4 "de/graphics/choices-locations/uncomheader-0094bd24-007.png"
0x009502c4 4 "de/graphics/choices-locations/uncomheader-0094bd24-008.png"
0x00950b78 4 "de/graphics/choices-locations/uncomheader-0094bd24-009.png"
0x0095142c 4 "de/graphics/choices-locations/uncomheader-0094bd24-010.png"
0x00951ce0 4 "de/graphics/choices-locations/uncomheader-0094bd24-011.png"
0x00952594 4 "de/graphics/choices-locations/uncomheader-0094bd24-012.png"
0x00952e48 4 "de/graphics/choices-locations/uncomheader-0094bd24-013.png"
0x009536fc 4 "de/graphics/choices-locations/uncomheader-0094bd24-014.png"
0x00953fb0 4 "de/graphics/choices-locations/uncomheader-0094bd24-015.png"
0x00954864 4 "de/graphics/choices-locations/uncomheader-0094bd24-016.png"
0x00955118 4 "de/graphics/choices-locations/uncomheader-0094bd24-017.png"
0x009559cc 4 "de/graphics/choices-locations/uncomheader-0094bd24-018.png"
0x00956280 4 "de/graphics/choices-locations/uncomheader-0094bd24-019.png"
0x00956b34 4 "de/graphics/choices-locations/uncomheader-0094bd24-020.png"
0x009573e8 4 "de/graphics/choices-locations/uncomheader-0094bd24-021.png"
// 0x00957c9c 5 0x00045a00 talk topics french
0x00957c9c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-000.png"
0x00958550 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-001.png"
0x00958e04 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-002.png"
0x009596b8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-003.png"
0x00959f6c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-004.png"
0x0095a820 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-005.png"
0x0095b0d4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-006.png"
0x0095b988 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-007.png"
0x0095c23c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-008.png"
0x0095caf0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-009.png"
0x0095d3a4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-010.png"
0x0095dc58 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-011.png"
0x0095e50c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-012.png"
0x0095edc0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-013.png"
0x0095f674 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-014.png"
0x0095ff28 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-015.png"
0x009607dc 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-016.png"
0x00961090 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-017.png"
0x00961944 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-018.png"
0x009621f8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-019.png"
0x00962aac 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-020.png"
0x00963360 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-021.png"
0x00963c14 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-022.png"
0x009644c8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-023.png"
0x00964d7c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-024.png"
0x00965630 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-025.png"
0x00965ee4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-026.png"
0x00966798 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-027.png"
0x0096704c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-028.png"
0x00967900 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-029.png"
0x009681b4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-030.png"
0x00968a68 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-031.png"
0x0096931c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-032.png"
0x00969bd0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-033.png"
0x0096a484 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-034.png"
0x0096ad38 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-035.png"
0x0096b5ec 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-036.png"
0x0096bea0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-037.png"
0x0096c754 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-038.png"
0x0096d008 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-039.png"
0x0096d8bc 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-040.png"
0x0096e170 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-041.png"
0x0096ea24 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-042.png"
0x0096f2d8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-043.png"
0x0096fb8c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-044.png"
0x00970440 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-045.png"
0x00970cf4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-046.png"
0x009715a8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-047.png"
0x00971e5c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-048.png"
0x00972710 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-049.png"
0x00972fc4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-050.png"
0x00973878 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-051.png"
0x0097412c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-052.png"
0x009749e0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-053.png"
0x00975294 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-054.png"
0x00975b48 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-055.png"
0x009763fc 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-056.png"
0x00976cb0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-057.png"
0x00977564 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-058.png"
0x00977e18 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-059.png"
0x009786cc 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-060.png"
0x00978f80 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-061.png"
0x00979834 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-062.png"
0x0097a0e8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-063.png"
0x0097a99c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-064.png"
0x0097b250 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-065.png"
0x0097bb04 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-066.png"
0x0097c3b8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-067.png"
0x0097cc6c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-068.png"
0x0097d520 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-069.png"
0x0097ddd4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-070.png"
0x0097e688 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-071.png"
0x0097ef3c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-072.png"
0x0097f7f0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-073.png"
0x009800a4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-074.png"
0x00980958 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-075.png"
0x0098120c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-076.png"
0x00981ac0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-077.png"
0x00982374 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-078.png"
0x00982c28 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-079.png"
0x009834dc 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-080.png"
0x00983d90 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-081.png"
0x00984644 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-082.png"
0x00984ef8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-083.png"
0x009857ac 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-084.png"
0x00986060 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-085.png"
0x00986914 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-086.png"
0x009871c8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-087.png"
0x00987a7c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-088.png"
0x00988330 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-089.png"
0x00988be4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-090.png"
0x00989498 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-091.png"
0x00989d4c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-092.png"
0x0098a600 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-093.png"
0x0098aeb4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-094.png"
0x0098b768 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-095.png"
0x0098c01c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-096.png"
0x0098c8d0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-097.png"
0x0098d184 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-098.png"
0x0098da38 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-099.png"
0x0098e2ec 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-100.png"
0x0098eba0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-101.png"
0x0098f454 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-102.png"
0x0098fd08 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-103.png"
0x009905bc 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-104.png"
0x00990e70 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-105.png"
0x00991724 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-106.png"
0x00991fd8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-107.png"
0x0099288c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-108.png"
0x00993140 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-109.png"
0x009939f4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-110.png"
0x009942a8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-111.png"
0x00994b5c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-112.png"
0x00995410 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-113.png"
0x00995cc4 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-114.png"
0x00996578 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-115.png"
0x00996e2c 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-116.png"
0x009976e0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-117.png"
0x00997f94 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-118.png"
0x00998848 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-119.png"
0x009990fc 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-120.png"
0x009999b0 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-121.png"
0x0099a264 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-122.png"
0x0099ab18 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-123.png"
0x0099b3cc 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-124.png"
0x0099bc80 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-125.png"
0x0099c534 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-126.png"
0x0099cde8 4 "fr/graphics/choices-talktopics/uncomheader-00957c9c-127.png"
// 0x0099d69c 5 0x00045a00 talk topics german
0x0099d69c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-000.png"
0x0099df50 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-001.png"
0x0099e804 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-002.png"
0x0099f0b8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-003.png"
0x0099f96c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-004.png"
0x009a0220 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-005.png"
0x009a0ad4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-006.png"
0x009a1388 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-007.png"
0x009a1c3c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-008.png"
0x009a24f0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-009.png"
0x009a2da4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-010.png"
0x009a3658 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-011.png"
0x009a3f0c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-012.png"
0x009a47c0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-013.png"
0x009a5074 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-014.png"
0x009a5928 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-015.png"
0x009a61dc 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-016.png"
0x009a6a90 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-017.png"
0x009a7344 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-018.png"
0x009a7bf8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-019.png"
0x009a84ac 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-020.png"
0x009a8d60 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-021.png"
0x009a9614 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-022.png"
0x009a9ec8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-023.png"
0x009aa77c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-024.png"
0x009ab030 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-025.png"
0x009ab8e4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-026.png"
0x009ac198 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-027.png"
0x009aca4c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-028.png"
0x009ad300 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-029.png"
0x009adbb4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-030.png"
0x009ae468 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-031.png"
0x009aed1c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-032.png"
0x009af5d0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-033.png"
0x009afe84 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-034.png"
0x009b0738 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-035.png"
0x009b0fec 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-036.png"
0x009b18a0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-037.png"
0x009b2154 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-038.png"
0x009b2a08 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-039.png"
0x009b32bc 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-040.png"
0x009b3b70 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-041.png"
0x009b4424 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-042.png"
0x009b4cd8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-043.png"
0x009b558c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-044.png"
0x009b5e40 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-045.png"
0x009b66f4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-046.png"
0x009b6fa8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-047.png"
0x009b785c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-048.png"
0x009b8110 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-049.png"
0x009b89c4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-050.png"
0x009b9278 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-051.png"
0x009b9b2c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-052.png"
0x009ba3e0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-053.png"
0x009bac94 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-054.png"
0x009bb548 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-055.png"
0x009bbdfc 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-056.png"
0x009bc6b0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-057.png"
0x009bcf64 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-058.png"
0x009bd818 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-059.png"
0x009be0cc 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-060.png"
0x009be980 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-061.png"
0x009bf234 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-062.png"
0x009bfae8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-063.png"
0x009c039c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-064.png"
0x009c0c50 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-065.png"
0x009c1504 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-066.png"
0x009c1db8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-067.png"
0x009c266c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-068.png"
0x009c2f20 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-069.png"
0x009c37d4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-070.png"
0x009c4088 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-071.png"
0x009c493c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-072.png"
0x009c51f0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-073.png"
0x009c5aa4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-074.png"
0x009c6358 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-075.png"
0x009c6c0c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-076.png"
0x009c74c0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-077.png"
0x009c7d74 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-078.png"
0x009c8628 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-079.png"
0x009c8edc 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-080.png"
0x009c9790 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-081.png"
0x009ca044 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-082.png"
0x009ca8f8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-083.png"
0x009cb1ac 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-084.png"
0x009cba60 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-085.png"
0x009cc314 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-086.png"
0x009ccbc8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-087.png"
0x009cd47c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-088.png"
0x009cdd30 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-089.png"
0x009ce5e4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-090.png"
0x009cee98 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-091.png"
0x009cf74c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-092.png"
0x009d0000 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-093.png"
0x009d08b4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-094.png"
0x009d1168 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-095.png"
0x009d1a1c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-096.png"
0x009d22d0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-097.png"
0x009d2b84 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-098.png"
0x009d3438 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-099.png"
0x009d3cec 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-100.png"
0x009d45a0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-101.png"
0x009d4e54 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-102.png"
0x009d5708 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-103.png"
0x009d5fbc 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-104.png"
0x009d6870 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-105.png"
0x009d7124 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-106.png"
0x009d79d8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-107.png"
0x009d828c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-108.png"
0x009d8b40 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-109.png"
0x009d93f4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-110.png"
0x009d9ca8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-111.png"
0x009da55c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-112.png"
0x009dae10 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-113.png"
0x009db6c4 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-114.png"
0x009dbf78 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-115.png"
0x009dc82c 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-116.png"
0x009dd0e0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-117.png"
0x009dd994 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-118.png"
0x009de248 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-119.png"
0x009deafc 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-120.png"
0x009df3b0 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-121.png"
0x009dfc64 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-122.png"
0x009e0518 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-123.png"
0x009e0dcc 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-124.png"
0x009e1680 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-125.png"
0x009e1f34 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-126.png"
0x009e27e8 4 "de/graphics/choices-talktopics/uncomheader-0099d69c-127.png"
// 0x009e309c 5 0x001295a0 location previews
0x009e309c 4 "common/graphics/locations/uncomheader-009e309c-000.png"
0x009e72b0 4 "common/graphics/locations/uncomheader-009e309c-001.png"
0x009eb4c4 4 "common/graphics/locations/uncomheader-009e309c-002.png"
0x009ef6d8 4 "common/graphics/locations/uncomheader-009e309c-003.png"
0x009f38ec 4 "common/graphics/locations/uncomheader-009e309c-004.png"
0x009f7b00 4 "common/graphics/locations/uncomheader-009e309c-005.png"
0x009fbd14 4 "common/graphics/locations/uncomheader-009e309c-006.png"
0x009fff28 4 "common/graphics/locations/uncomheader-009e309c-007.png"
0x00a0413c 4 "common/graphics/locations/uncomheader-009e309c-008.png"
0x00a08350 4 "common/graphics/locations/uncomheader-009e309c-009.png"
0x00a0c564 4 "common/graphics/locations/uncomheader-009e309c-010.png"
0x00a10778 4 "common/graphics/locations/uncomheader-009e309c-011.png"
0x00a1498c 4 "common/graphics/locations/uncomheader-009e309c-012.png"
0x00a18ba0 4 "common/graphics/locations/uncomheader-009e309c-013.png"
0x00a1cdb4 4 "common/graphics/locations/uncomheader-009e309c-014.png"
0x00a20fc8 4 "common/graphics/locations/uncomheader-009e309c-015.png"
0x00a251dc 4 "common/graphics/locations/uncomheader-009e309c-016.png"
0x00a293f0 4 "common/graphics/locations/uncomheader-009e309c-017.png"
0x00a2d604 4 "common/graphics/locations/uncomheader-009e309c-018.png"
0x00a31818 4 "common/graphics/locations/uncomheader-009e309c-019.png"
0x00a35a2c 4 "common/graphics/locations/uncomheader-009e309c-020.png"
0x00a39c40 4 "common/graphics/locations/uncomheader-009e309c-021.png"
0x00a3de54 4 "common/graphics/locations/uncomheader-009e309c-022.png"
0x00a42068 4 "common/graphics/locations/uncomheader-009e309c-023.png"
0x00a4627c 4 "common/graphics/locations/uncomheader-009e309c-024.png"
0x00a4a490 4 "common/graphics/locations/uncomheader-009e309c-025.png"
0x00a4e6a4 4 "common/graphics/locations/uncomheader-009e309c-026.png"
0x00a528b8 4 "common/graphics/locations/uncomheader-009e309c-027.png"
0x00a56acc 4 "common/graphics/locations/uncomheader-009e309c-028.png"
0x00a5ace0 4 "common/graphics/locations/uncomheader-009e309c-029.png"
0x00a5eef4 4 "common/graphics/locations/uncomheader-009e309c-030.png"
0x00a63108 4 "common/graphics/locations/uncomheader-009e309c-031.png"
0x00a6731c 4 "common/graphics/locations/uncomheader-009e309c-032.png"
0x00a6b530 4 "common/graphics/locations/uncomheader-009e309c-033.png"
0x00a6f744 4 "common/graphics/locations/uncomheader-009e309c-034.png"
0x00a73958 4 "common/graphics/locations/uncomheader-009e309c-035.png"
0x00a77b6c 4 "common/graphics/locations/uncomheader-009e309c-036.png"
0x00a7bd80 4 "common/graphics/locations/uncomheader-009e309c-037.png"
0x00a7ff94 4 "common/graphics/locations/uncomheader-009e309c-038.png"
0x00a841a8 4 "common/graphics/locations/uncomheader-009e309c-039.png"
0x00a883bc 4 "common/graphics/locations/uncomheader-009e309c-040.png"
0x00a8c5d0 4 "common/graphics/locations/uncomheader-009e309c-041.png"
0x00a907e4 4 "common/graphics/locations/uncomheader-009e309c-042.png"
0x00a949f8 4 "common/graphics/locations/uncomheader-009e309c-043.png"
0x00a98c0c 4 "common/graphics/locations/uncomheader-009e309c-044.png"
0x00a9ce20 4 "common/graphics/locations/uncomheader-009e309c-045.png"
0x00aa1034 4 "common/graphics/locations/uncomheader-009e309c-046.png"
0x00aa5248 4 "common/graphics/locations/uncomheader-009e309c-047.png"
0x00aa945c 4 "common/graphics/locations/uncomheader-009e309c-048.png"
0x00aad670 4 "common/graphics/locations/uncomheader-009e309c-049.png"
0x00ab1884 4 "common/graphics/locations/uncomheader-009e309c-050.png"
0x00ab5a98 4 "common/graphics/locations/uncomheader-009e309c-051.png"
0x00ab9cac 4 "common/graphics/locations/uncomheader-009e309c-052.png"
0x00abdec0 4 "common/graphics/locations/uncomheader-009e309c-053.png"
0x00ac20d4 4 "common/graphics/locations/uncomheader-009e309c-054.png"
0x00ac62e8 4 "common/graphics/locations/uncomheader-009e309c-055.png"
0x00aca4fc 4 "common/graphics/locations/uncomheader-009e309c-056.png"
0x00ace710 4 "common/graphics/locations/uncomheader-009e309c-057.png"
0x00ad2924 4 "common/graphics/locations/uncomheader-009e309c-058.png"
0x00ad6b38 4 "common/graphics/locations/uncomheader-009e309c-059.png"
0x00adad4c 4 "common/graphics/locations/uncomheader-009e309c-060.png"
0x00adef60 4 "common/graphics/locations/uncomheader-009e309c-061.png"
0x00ae3174 4 "common/graphics/locations/uncomheader-009e309c-062.png"
0x00ae7388 4 "common/graphics/locations/uncomheader-009e309c-063.png"
0x00aeb59c 4 "common/graphics/locations/uncomheader-009e309c-064.png"
0x00aef7b0 4 "common/graphics/locations/uncomheader-009e309c-065.png"
0x00af39c4 4 "common/graphics/locations/uncomheader-009e309c-066.png"
0x00af7bd8 4 "common/graphics/locations/uncomheader-009e309c-067.png"
0x00afbdec 4 "common/graphics/locations/uncomheader-009e309c-068.png"
0x00b00000 4 "common/graphics/locations/uncomheader-009e309c-069.png"
0x00b04214 4 "common/graphics/locations/uncomheader-009e309c-070.png"
0x00b08428 4 "common/graphics/locations/uncomheader-009e309c-071.png"
// 0x00b0c63c 5 0x0000609c location preview static
0x00b0c63c 4 "common/graphics/locations/static-000.png"
0x00b0e670 4 "common/graphics/locations/static-001.png"
0x00b106a4 4 "common/graphics/locations/static-002.png"
// 0x00b126d8 1 "" 0x00000040 uncompressed unknown palette
0x00b12718 0 "" 0x00053480 evidence and profile pictures
// 0x00b65b98 5 0x000a82a0 evidence and profile pictures (with resizes)
0x00b65b98 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-000.png"
0x00b663cc 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-001.png"
0x00b66c00 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-002.png"
0x00b67434 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-003.png"
0x00b67c68 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-004.png"
0x00b6849c 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-005.png"
0x00b68cd0 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-006.png"
0x00b69504 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-007.png"
0x00b69d38 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-008.png"
0x00b6a56c 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-009.png"
0x00b6ada0 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-010.png"
0x00b6b5d4 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-011.png"
0x00b6be08 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-012.png"
0x00b6c63c 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-013.png"
0x00b6ce70 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-014.png"
0x00b6d6a4 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-015.png"
0x00b6ded8 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-016.png"
0x00b6e70c 4 "common/graphics/evidence-profiles/uncomheader-00b65b98-017.png"