-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathME3_Tree.csv
We can't make this file beautiful and searchable because it's too large.
27494 lines (27494 loc) · 876 KB
/
ME3_Tree.csv
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
0xC4D061E7,CitHub_Camps
0xCD63A14B,CitHub_Commons
0x3716CF8B,CitHub_Docks
0x724F0DCB,CitHub_Embassy
0xDFAB8B0F,CitHub_Hospital
0x806FBDC3,CitHub_Purgatory
0x627F3A53,NorCabin
0x15722DD6,NorCargo
0x05C29B95,NorCIC
0xD9B2043D,NorCrew
0x88AC7D54,NorEng
0x55B70561,NumIcon01
0x92D58D99,NumIcon02
0x8B709FAF,NumIcon03
0x6E00162C,NumIcon04
0xDF23D848,NumIcon05
0xA3749556,NumIcon06
0xA1198107,NumIcon07
0x38F03BE6,NumIcon08
0x381DC01B,NumIcon09
0x7FDEA1ED,NumIcon10
0x3134F680,HMM_ARM_CTHb_Tnt_Mask
0x8A5C313B,ADP_ASA_Diff
0xB0D82E2D,ADP_ASA_Norm
0x02621447,ADP_ASA_Spec
0x837920A0,ADP_ASA_Strp
0x93678123,ADP_ASA_Tint
0x93ECBC79,HMF_ARM_MUP_Diff
0xDF55EC75,HMF_ARM_MUP_Norm
0xFAB2B3C1,HMF_ARM_MUP_Spec
0x78D24E10,HMF_ARM_MUP_Strp
0xD0AB19E1,HMF_ARM_MUP_Tint
0x86582457,MP_SOL_HMM_Diff
0x47A6EABE,MP_SOL_HMM_Norm
0x1AE368C8,MP_SOL_HMM_Spec
0x85D6EC48,MP_SOL_HMM_Strp
0x9EE87F98,MP_SOL_HMM_Tint
0xB3CBFCAB,WPN_ASLa_Diff
0x5ED97211,WPN_ASLa_Norm
0xB617BCBE,WPN_ASLa_Spec
0x8BA3F0F1,WPN_ASLa_Tint
0x17836EC0,WPN_PSTa_Diff
0x10471125,WPN_PSTa_Norm
0xA4E25886,WPN_PSTa_Spec
0xF4295780,WPN_PSTa_Tint
0x9BA77E49,Biotic_Flux
0x1609B6CA,HeatSink_Stack
0x5D0E74D4,Annex_Hill_tex
0x0F39A7B0,OmniBlade
0x05F493CE,Condensation_Mask
0x3D5B918E,Condensation_Normal
0x34346392,Condensation_Stack
0xF51C7446,BlueExplosion
0x0F8F2BE5,Biotic_Current
0xDED87430,fx_Dot_01
0xAD3FD896,fx_AlphaGrad_02
0x9A653857,fx_AlphaGrad_05
0xFA4E3904,Current01
0xDD46CA54,fx_fireball01
0x41F61326,Ring_Clamped
0x6D0FF23D,HMM_ARM_MUP_Diff
0x53D7697B,HMM_ARM_MUP_Norm
0xC9F1E57F,HMM_ARM_MUP_Spec
0x8148A191,HMM_ARM_MUP_Strp
0x68C0E4EE,HMM_ARM_MUP_Tint
0x738FAA8B,WPN_BLSb_Diff
0x6B2720E6,WPN_BLSb_Norm
0xB0DD05E4,WPN_BLSb_Spec
0xE999983A,WPN_BLSb_Tint
0x71A3F10A,WPN_PSTc_Diff
0x7DF368A4,WPN_PSTc_Norm
0x8F2986F5,WPN_PSTc_Spec
0x057B3D5A,WPN_PSTc_Tint
0x1B81622B,Vanguard_Run_FB
0x52D4A3FC,GRNa_Norm
0x0C59BF7F,GRNa_Stack
0x63289F1B,WpnReticleShotgun_I1
0x1E8CDB13,LightMapVector_Colour_0
0xFADD0856,LightMapVector_Colour_0
0xCC806226,LightMapVector_Dir_0
0xA1DB665E,LightMapVector_Dir_0
0x1480CB63,MM_Placeholder_Diff
0x2DAF51F6,Water_Mask
0xE9D5764D,Water_Norm
0x051F8B7D,Data_pad_01
0xDEC5AFFB,DataPad02_Diff_Cine
0x10F00990,DataPad02_Msk3_Cine
0x55F36FE2,DataPad02_Norm_Cine
0x0ED75D8D,Datapad01_Diff
0x4714E4BB,Datapad01_Norm
0xDC40EA71,AlliDropShip_Clean_Bck_Diff
0x24D93553,AlliDropShip_Clean_Bck_Norm
0xFEB99EDF,AlliDropShip_Clean_Bck_Spec
0x53EF17F7,AlliDropShip_Clean_Dcl_Diff
0x62F1F1E3,AlliDropShip_Clean_Frt_Diff
0x4484E669,AlliDropShip_Clean_Frt_Norm
0x603D40BF,AlliDropShip_Clean_Frt_Spec
0x4A58ADAA,AlliDropShip_Clean_Gun_Diff
0xB85A4CEC,AlliDropShip_Clean_Gun_Norm
0x39962533,AlliDropShip_Clean_Gun_Spec
0x8F9FFE05,AlliDropShip_Clean_Mnt_Diff
0xE01CE372,AlliDropShip_Clean_Mnt_Norm
0x486394D1,AlliDropShip_Clean_Mnt_Spec
0xF320877F,CubemapFace0
0x89AEEEBD,CubemapFace1
0x587CCE8C,CubemapFace2
0x7791CBE1,CubemapFace3
0xEC794EEA,CubemapFace4
0x7CC84B8E,CubemapFace5
0xC1B21585,CubemapFace0
0x41F2E6EB,CubemapFace1
0xEE86AFCF,CubemapFace2
0xC324C157,CubemapFace3
0xA77C920F,CubemapFace4
0xAC59199B,CubemapFace5
0xE0E1CE63,ShuttleDecals_02_Diff
0xF21EC98C,ShuttleDecals_02_Mask
0x6230E5FD,ShuttleDecals_02_Norm
0x540C650E,ShuttleDecals_Diff
0x2F01E7E0,ShuttleSeats_Diff
0x0537A4B0,ShuttleTrims1_Diff
0xC952CDC7,ShuttleTrims1_Norm
0xC109E517,ShuttleTrims2_Diff
0x500D8776,ShuttleTrims2_Norm
0x5F2422F2,ShuttleTrims_Diff
0xFDBE7C55,ShuttleTrims_MasterRGB_Spec
0xE555A4D8,ShuttleTrims_NORM
0x43D7585A,HMM_ARM_CTHb_Nav_Diff_Stack
0x98A16C00,HMM_ARM_CTHb_Nav_Norm_Stack
0xE09AA6B9,HMM_ARM_CTHb_Nav_Spwr_Stack
0x12B09936,HMM_HED_PROLash_Opac_M01
0x473B562E,HMM_HED_PRO_Add3
0x5BE8912C,HMM_HED_PROCustom_ArchedBrow
0xA901A140,HMM_HED_PROBald_Scalp_Diff_Stack
0xF394E97A,HMM_HED_PROBase_Face_Diff_Stack
0xDE374303,HMM_HED_PROCustom_Military_Diff
0x5E1EEF21,EYE_Lens_Norm
0x40882263,HMM_HED_PROBase_Face_Frk1
0xB0E3A611,HED_PRO_MASK1
0x2D5C2098,NewHead_Wrinkles_Mask1
0xFBE176E2,HMM_HED_PROBald_Scalp_Norm_Stack
0x4C2EE763,HMM_HED_PROBase_Face_Norm_Stack
0x2AD52D02,HMM_HED_PROBase_Scalp_Norm_Stack
0x53C5F329,HMM_HED_PROCustom_Military_Norm
0xF3AFF836,HMM_HED_PRO_WKL_BLK
0x2E2E123A,HMM_HIR_Cru_Diff
0x981C7933,HMM_HIR_Sar_Tang
0x89916C93,HED_PRO_Teeth
0x77628470,LD_Spec_04
0x07AD9847,LD_Spec_05
0x2A214911,CubemapFace0
0xE2916504,WarningSigns_Diff
0x5809D8F6,Lightbeam_Mask01
0x9ED179A0,fx_holo_distortion
0xC615EE2D,Holomod_05_Tex
0x864D5BA3,Shuttle_Int_Holo
0x3ED0ADC1,Shuttle_Int_Holo
0x61B79092,SplashFace_Norm
0x9E7BF5CC,SplashFace_Stack
0x2ABC4D2F,GradientFrame
0x96DE1656,Trauma_Mask
0x25E411A7,Benezia
0xE5D04D2D,Kaiden_01
0xCDF3F3E5,DirectionalMaxComponent0
0x6136E0AC,LightMapVector_Colour_0
0x20A36936,LightMapVector_Colour_0
0x448EB9F7,LightMapVector_Colour_0
0x71295A57,LightMapVector_Colour_0
0xEF1C7C91,LightMapVector_Colour_0
0xEA1C7FEA,LightMapVector_Colour_0
0x2724A649,LightMapVector_Colour_0
0x17580463,LightMapVector_Colour_0
0xD0ECC9E6,LightMapVector_Colour_0
0xC42DA7C7,LightMapVector_Colour_0
0x22168ADB,LightMapVector_Dir_0
0xE0DA73CA,LightMapVector_Dir_0
0x76D8B747,LightMapVector_Dir_0
0xA1C029BF,LightMapVector_Dir_0
0x69DE64EE,LightMapVector_Dir_0
0x82A1F105,LightMapVector_Dir_0
0xABFFC9D9,LightMapVector_Dir_0
0xD95ED3B2,LightMapVector_Dir_0
0x20749A63,LightMapVector_Dir_0
0x6B2B1BAA,LightMapVector_Dir_0
0x3D481B51,NormalizedAverageColor0
0xEBD0BB06,ShadowMapTexture2D
0x18892B02,AmmoBox01_Diff
0x28CD06A7,AmmoBox01_Msk3
0x9D37F0D3,AmmoBox01_Norm
0xC6F0091E,CanisterSludge01_Diff
0x141BB72D,CanisterSludge01_Msk3
0xB1B76D27,CanisterSludge01_Norm
0xC70EAC31,ZMB_ARM_NKDc_Diff_Stack
0x5B7C6993,ZMB_ARM_NKDc_Norm_Stack
0x739A8D32,CorpseTarp01_Diff
0x0AFCD41B,CorpseTarp01_Msk3
0x7C4C7DCF,CorpseTarp01_Norm
0xC5C4509E,Crate02_M_Diff
0x07FCC2A7,Crate02_M_MSK3
0x371D99BE,Crate02_M_Norm
0xFFC5CD54,PaperBurnt_DIFF
0xD4B3AAA3,PaperPiles_Diff
0x3A03C53C,PaperPiles_Norm
0x2B54E28F,TechScanner01_Diff
0x8518A2D4,TechScanner01_Msk3
0x3C189F31,TechScanner01_Norm
0xB15FC1B9,TechTool01_Diff
0x1538DDE2,TechTool01_Msk3
0x0F77F51C,TechTool01_Norm
0x263F2C55,Desk01_Diff
0x7D05A305,Desk01_Msk3
0x4816970B,Desk01_Norm
0xF884FB23,Junk01_Diff
0x74BFCAA1,Junk01_Msk3
0x1A9E3B3E,Junk01_Norm
0x2EE45BE3,Junk05_Diff
0x3146A097,Junk05_Msk3
0xBA741978,Junk05_Norm
0xCFA11DF9,Junk08_Diff
0x6BAE8441,Junk08_Msk3
0x6EAE303A,Junk08_Norm
0x14DCED40,Stretcher01_Diff
0x8E28BBE0,Stretcher01_Msk3
0x11C4AEE9,Stretcher01_Norm
0x646614B9,Wall_Cover01_Diff
0x99DB008F,Wall_Cover01_Msk3
0xC324FB08,Wall_Cover01_Norm
0xB9729407,Dream_FoliageSheet_Diff
0x7A48D080,DreamTree01_DiffDreamTree01_Diff
0x858741E4,DreamTree01_NormDreamTree01_Diff
0x7D4BE270,FoliageSheet_Norm
0x0E4E63DA,Pres_Branch_01_Diff
0x0136D18F,Pres_Branch_01_Mask
0xD2B72AA8,Pres_Branch_01_Norm
0xCB57A583,AmmoCase02_Diff
0x5FD0E5C0,AmmoCase02_Msk3
0x7DD24A44,AmmoCase02_Norm
0x9CB5D149,Cyprus_Tree_Norm
0x9EE3CC76,Branch_DIFF
0x451DBA90,Cyprus_Tree_Diff
0xB34A4D2A,Destroyed_DIFF
0xF01D3184,Destroyed_NORM
0x28EE9E0B,Planter_Dirt_Diff
0xA8436471,Planter_Dirt_Norm
0x2016EC01,paper_scrap
0x157A1737,RealFire_GroundFire_Wide
0x930985E7,Small_Flame
0x00C28465,DirectionalMaxComponent0
0x5EB2205A,DirectionalMaxComponent0
0x12196E5F,DirectionalMaxComponent0
0xFE589CBB,DirectionalMaxComponent0
0x70A4857A,DirectionalMaxComponent0
0x0A2BFEB0,DirectionalMaxComponent0
0xD8593B05,DirectionalMaxComponent0
0x026DB2CA,DirectionalMaxComponent0
0xE8219DD8,DirectionalMaxComponent0
0x8AC971FF,DirectionalMaxComponent0
0x301F6510,DirectionalMaxComponent0
0x64A8FA53,DirectionalMaxComponent1
0xBA131795,DirectionalMaxComponent1
0xF4DD17CE,DirectionalMaxComponent1
0xA4799402,LightMapVector_Colour_0
0x9BB193B5,LightMapVector_Colour_0
0x2D294D01,LightMapVector_Colour_0
0xA948C362,LightMapVector_Colour_0
0x3D28D5C8,LightMapVector_Colour_0
0x60025489,LightMapVector_Colour_0
0x68F06335,LightMapVector_Colour_0
0x86DA6CE5,LightMapVector_Colour_0
0x27CFFF53,LightMapVector_Colour_0
0x7911A485,LightMapVector_Colour_0
0x9F92A955,LightMapVector_Colour_0
0xE241C4A8,LightMapVector_Colour_0
0xA69F3DA8,LightMapVector_Colour_0
0xD52D0F44,LightMapVector_Colour_0
0xB2DE9538,LightMapVector_Colour_0
0x20B867EF,LightMapVector_Colour_0
0x28B33B3D,LightMapVector_Colour_0
0x79043AEF,LightMapVector_Dir_0
0xAD468A17,LightMapVector_Dir_0
0x252697CB,LightMapVector_Dir_0
0x7BF428FE,LightMapVector_Dir_0
0x8DE2A6FC,LightMapVector_Dir_0
0xE9728299,LightMapVector_Dir_0
0x97DD96B3,LightMapVector_Dir_0
0x7C2F47A6,LightMapVector_Dir_0
0x0486DC97,LightMapVector_Dir_0
0x42AF6987,LightMapVector_Dir_0
0x0109D8C3,LightMapVector_Dir_0
0xDDC0823B,LightMapVector_Dir_0
0xE1939CBD,LightMapVector_Dir_0
0x807B6C66,LightMapVector_Dir_0
0x4B7826D9,LightMapVector_Dir_0
0xB5490DE2,LightMapVector_Dir_0
0xE122D783,LightMapVector_Dir_0
0xD43504EF,NormalizedAverageColor0
0x67FB27AE,NormalizedAverageColor0
0x00D89C57,NormalizedAverageColor0
0x7585D523,NormalizedAverageColor0
0x63885716,NormalizedAverageColor0
0x842B6744,NormalizedAverageColor0
0xEED1680D,NormalizedAverageColor0
0xEDEB1670,NormalizedAverageColor0
0xD2F018B9,NormalizedAverageColor0
0x092C96ED,NormalizedAverageColor0
0x792DA27F,NormalizedAverageColor0
0x1113C3C4,NormalizedAverageColor1
0xB49D2278,NormalizedAverageColor1
0x6CAA451E,NormalizedAverageColor1
0x44E6C554,ShadowMapTexture2D
0x81F079A9,ShadowMapTexture2D
0x66C60FC4,ShadowMapTexture2D
0xEF82635C,ShadowMapTexture2D
0x8BBB2E65,ShadowMapTexture2D
0xA2987813,ShadowMapTexture2D
0x1E580684,ShadowMapTexture2D
0xB013C64F,ShadowMapTexture2D
0xBC0EDE54,ShadowMapTexture2D
0xFE6E1A6B,ShadowMapTexture2D
0xA1F0A396,ShadowMapTexture2D
0x07CD095A,ShadowMapTexture2D
0xDDA68086,ShadowMapTexture2D
0x3671CF4D,ShadowMapTexture2D
0xE8660DF4,ShadowMapTexture2D
0xD1508295,ShadowMapTexture2D
0x7C328BBA,ShadowMapTexture2D
0xF10068BD,ShadowMapTexture2D
0x7EAE3405,ShadowMapTexture2D
0x0E08C5FA,HoverCar01b_Dam_Diff
0xEFD86ED2,HoverCar01b_Dam_Msk3
0xBEEE9E13,HoverCar01b_Dam_Norm
0x6A3FC303,CBT_AGS_MSK
0xD9895952,LightbeamMask_02
0x6569B56D,Brushed_Metal_Diff
0xE8AAD2B8,BlackFloor_Diff
0x5BEC6701,BlackFloor_Norm
0x89EB00D9,Gravel_Diff
0x4DA8BB80,Gravel_Norm
0x17AB6B83,Water_Diff
0x3473E295,Planter_Dirt_Diff
0xC8E0791F,fx_Drop
0x5AE4A79D,FBFB01
0xA193AA2E,DirectionalMaxComponent0
0x3F6E7A3B,LightMapVector_Colour_0
0x482389C6,LightMapVector_Colour_0
0x20217D83,LightMapVector_Colour_0
0x789689CF,LightMapVector_Dir_0
0x532C3F41,LightMapVector_Dir_0
0xB63AAE7F,LightMapVector_Dir_0
0x8B84BA31,NormalizedAverageColor0
0xDE7812E6,DirectionalMaxComponent0
0xB42C7E33,LightMapVector_Colour_0
0x40F8DA19,LightMapVector_Colour_0
0x4E1581FC,LightMapVector_Dir_0
0xC65D381D,LightMapVector_Dir_0
0x6F4378F9,NormalizedAverageColor0
0x460A35BB,DirectionalMaxComponent0
0x67C8A74E,DirectionalMaxComponent0
0x3FC33A75,DirectionalMaxComponent1
0x57AB0C49,LightMapVector_Colour_0
0x2A63F536,LightMapVector_Colour_0
0xC3822203,LightMapVector_Colour_0
0x02234292,LightMapVector_Colour_0
0x4DB1D30E,LightMapVector_Colour_0
0x6AB437E8,LightMapVector_Colour_0
0x633941E7,LightMapVector_Colour_0
0x0B2AE7F0,LightMapVector_Colour_0
0x1F589D33,LightMapVector_Colour_0
0x8D028AAA,LightMapVector_Colour_0
0x6DF71556,LightMapVector_Colour_0
0x5716B865,LightMapVector_Dir_0
0x2F10E926,LightMapVector_Dir_0
0xB4A516F6,LightMapVector_Dir_0
0xC75899E4,LightMapVector_Dir_0
0x0C74E6FF,LightMapVector_Dir_0
0xF31FA1A9,LightMapVector_Dir_0
0xEDE35E33,LightMapVector_Dir_0
0x64A16ACF,LightMapVector_Dir_0
0xA5668DC2,LightMapVector_Dir_0
0xD6E70E29,LightMapVector_Dir_0
0xC22104E4,LightMapVector_Dir_0
0xBF78AA7E,NormalizedAverageColor0
0x204BB0B9,NormalizedAverageColor0
0x798D5644,NormalizedAverageColor1
0x96D69658,ShadowMapTexture2D
0xC09034A0,ShadowMapTexture2D
0xDA8F5C17,Sink01_Diff
0x70D8ABF7,Sink01_Msk3
0x8F169AD9,Sink01_Norm
0x24752BC9,ice50_storageshelf_diff
0x8584B91A,ice50_storageshelf_norm
0x6E0E1C86,Dumpster01_Diff
0x9212E6F8,Dumpster01_Msk3
0xD8D97057,Dumpster01_Norm
0x983FE991,GroundCover_NORM
0x30B2280C,Pattern_Diff
0x9665E158,distort_06
0x88FC2B52,water_caustic_01
0x6693C6E9,GroundCover_DIFF
0x6D98C073,DirectionalMaxComponent0
0x543FFCAC,LightMapVector_Colour_0
0xD19D0596,LightMapVector_Colour_0
0x729F828B,LightMapVector_Dir_0
0xBD08CE1E,LightMapVector_Dir_0
0x46405ED4,NormalizedAverageColor0
0x0BA75AFD,LightMapVector_Colour_0
0x834D139C,LightMapVector_Dir_0
0xBC76E578,LightMapVector_Colour_0
0xB4483662,LightMapVector_Dir_0
0xD326118D,LightMapVector_Colour_0
0xD5C73ECF,LightMapVector_Colour_0
0x33709BCF,LightMapVector_Dir_0
0xCD16B518,LightMapVector_Dir_0
0x7BF66EED,TableExam01_Diff
0xC2413EC1,TableExam01_Msk3
0x7776FFA3,TableExam01_Norm
0x008F56AB,DirectionalMaxComponent0
0xD70D54C9,LightMapVector_Colour_0
0xE585BA99,LightMapVector_Colour_0
0x0466DD60,LightMapVector_Colour_0
0xE3E6C739,LightMapVector_Colour_0
0xDBD80578,LightMapVector_Colour_0
0xC26D2ECB,LightMapVector_Dir_0
0x3D4FFFA4,LightMapVector_Dir_0
0xD1DB5044,LightMapVector_Dir_0
0x29949E32,LightMapVector_Dir_0
0x127EA75C,LightMapVector_Dir_0
0xD6685378,NormalizedAverageColor0
0xCF443048,ShadowMapTexture2D
0x959AE624,ChairReclining01_Diff
0x675A19EF,ChairReclining01_Msk3
0x875FA2E0,ChairReclining01_Norm
0x7B05E9A2,HoverCar01a_Dam_Diff
0x65CAF769,HoverCar01a_Dam_Msk3
0x22E1DC14,HoverCar01a_Dam_Norm
0x51E2FB20,Ladders_Diff
0x23CDFF02,Concrete_Diff
0x496530D6,Concrete_NORM
0xCFA32157,DirectionalMaxComponent0
0x920BD1F6,LightMapVector_Colour_0
0xBC60B5B0,LightMapVector_Colour_0
0xA2EC00B6,LightMapVector_Dir_0
0x3EAB7EBF,LightMapVector_Dir_0
0xE22CF1AC,NormalizedAverageColor0
0x7C5823BC,ShadowMapTexture2D
0x38112C8D,DirectionalMaxComponent0
0xB82BC69A,DirectionalMaxComponent0
0x984A7745,DirectionalMaxComponent0
0xF261F138,DirectionalMaxComponent0
0xBA0617B4,DirectionalMaxComponent0
0x8BD4E6AE,DirectionalMaxComponent1
0x7E439A6D,LightMapVector_Colour_0
0xC58E133B,LightMapVector_Colour_0
0x457A21EC,LightMapVector_Colour_0
0xCE0645D4,LightMapVector_Colour_0
0x50E30C41,LightMapVector_Colour_0
0xCD8FFF07,LightMapVector_Colour_0
0x71885E37,LightMapVector_Colour_0
0x83A7493F,LightMapVector_Colour_0
0x31597B8C,LightMapVector_Colour_0
0x0C032C74,LightMapVector_Colour_0
0xBE7FDCBB,LightMapVector_Dir_0
0x12C04D52,LightMapVector_Dir_0
0xA1844874,LightMapVector_Dir_0
0xEB792225,LightMapVector_Dir_0
0x8929BDA7,LightMapVector_Dir_0
0x11A16FE3,LightMapVector_Dir_0
0xF60EC2BF,LightMapVector_Dir_0
0x99BD5580,LightMapVector_Dir_0
0xD9EDA933,LightMapVector_Dir_0
0xD4A3D8CE,LightMapVector_Dir_0
0x335E5A1F,NormalizedAverageColor0
0xBEBCD21A,NormalizedAverageColor0
0xBE1DCA26,NormalizedAverageColor0
0x9A0ADBC8,NormalizedAverageColor0
0xB7029B67,NormalizedAverageColor0
0x1F4703BA,NormalizedAverageColor1
0xDA39F46B,ShadowMapTexture2D
0x95508719,ShadowMapTexture2D
0xD76F146C,ShadowMapTexture2D
0xA335C052,ShadowMapTexture2D
0x6DB37257,ShadowMapTexture2D
0x26E5A5E7,ShadowMapTexture2D
0xE4EF2741,ShadowMapTexture2D
0x143EEB79,DirectionalMaxComponent1
0x9EBBD884,LightMapVector_Colour_0
0xC344EB7D,LightMapVector_Colour_0
0x1911ABC6,LightMapVector_Dir_0
0x5CDCBC3F,LightMapVector_Dir_0
0x5985FB76,NormalizedAverageColor1
0x44B672A9,ShadowMapTexture2D
0x1ABD0B7E,Bar_Table_02_diff
0xD200638B,Bar_Table_02_norm
0xE1841958,Bar_Table_02_spec
0xAC7D5730,Bar_Table_02_spwr
0xE9714056,Bar_Table_02_tmis
0x508C25F7,Chair_Bar_02_Diff
0x0CD55AFD,Chair_Bar_02_Norm
0x76D06F3A,CubemapFace0
0xD44155BA,Chair_Bar_02_Spec
0x7E7ED112,Chair_Bar_02_Spwr
0xFD473357,Chair_Bar_02_Tmis
0x37626D7D,ChairReclining03_Diff
0x908C3746,ChairReclining03_Msk3
0xCA4A8FDD,ChairReclining03_Norm
0x6A278A65,TableCoffee01_Diff
0xC39FEFFE,TableCoffee01_Msk3
0x4E092439,TableCoffee01_Norm
0xF82DCA71,Damaged
0xB82408DD,Default_Black
0xD0BF4DBC,Default_Norm
0xC83965AD,Gravel_512_Norm
0x7C176B54,DirectionalMaxComponent0
0x2FF73A3C,LightMapVector_Colour_0
0x4F3E921B,LightMapVector_Colour_0
0x4721C330,LightMapVector_Colour_0
0x1B7ACA9D,LightMapVector_Colour_0
0xA29CA4CB,LightMapVector_Colour_0
0xB7B0982D,LightMapVector_Colour_0
0x8442B46F,LightMapVector_Colour_0
0xE39F2C1B,LightMapVector_Dir_0
0x774646EA,LightMapVector_Dir_0
0x45274A5A,LightMapVector_Dir_0
0x4914E888,LightMapVector_Dir_0
0x646CAECD,LightMapVector_Dir_0
0xCBE1DEE1,LightMapVector_Dir_0
0x9AE8F125,LightMapVector_Dir_0
0xB6851C8A,NormalizedAverageColor0
0xF7577847,ShadowMapTexture2D
0x921FBFDC,CBT_AGSc_Diff
0xF6315687,CBT_AGSc_Norm
0xF97F0DFD,CBT_AGSc_Spec
0x4748E13A,Slime_Decal
0x52FCE3CF,liquid_Splash_FB
0x9EECD1D5,epicenterTexture2
0x02C0B0CD,DirectionalMaxComponent0
0xD6D19FE1,LightMapVector_Colour_0
0xCEC78F41,LightMapVector_Dir_0
0xF6700BF7,NormalizedAverageColor0
0x2C1F47C3,DirectionalMaxComponent0
0xD1BD4BBE,DirectionalMaxComponent0
0x639614A2,DirectionalMaxComponent0
0x4060872D,DirectionalMaxComponent0
0xEA54D581,LightMapVector_Colour_0
0x4DC86BC7,LightMapVector_Colour_0
0x5A73AFF5,LightMapVector_Colour_0
0x62EA5357,LightMapVector_Colour_0
0x9E8E3789,LightMapVector_Colour_0
0x9C0FF897,LightMapVector_Colour_0
0x5EA37DDA,LightMapVector_Colour_0
0x8E405153,LightMapVector_Colour_0
0x499B5A28,LightMapVector_Colour_0
0x84F2768A,LightMapVector_Dir_0
0xDF1E6E75,LightMapVector_Dir_0
0x69523180,LightMapVector_Dir_0
0x68AD142E,LightMapVector_Dir_0
0xAE5BCA4A,LightMapVector_Dir_0
0xD9E60A4A,LightMapVector_Dir_0
0xBBF3C969,LightMapVector_Dir_0
0xCF885593,LightMapVector_Dir_0
0x34ADBDD4,LightMapVector_Dir_0
0x72E9703E,NormalizedAverageColor0
0x64819F90,NormalizedAverageColor0
0x4B86EBFB,NormalizedAverageColor0
0x53EEB4C4,NormalizedAverageColor0
0x2E365261,ShadowMapTexture2D
0x06B98B04,ShadowMapTexture2D
0x1C5B0629,ShadowMapTexture2D
0x7DDAE4E4,ShadowMapTexture2D
0xE2A0709C,ShadowMapTexture2D
0x3AA5A5A7,ShadowMapTexture2D
0xEC6EF77A,ShadowMapTexture2D
0x4CC893D7,Temple_DoorLight
0xFFC29DA7,Temple_Statue_Base_DIF
0x37C78DC9,Temple_Statue_Base_NM
0x66E4CA3D,Temple_Statue_Breaks
0x38F393D4,Temple_Statue_Dress_DIF
0x323DA8BC,Temple_Statue_Dress_NM
0xDF0DFF4D,Temple_Statue_Skirt_DIF
0xE2E7146B,Temple_Statue_Skirt_NM
0xB3DAE997,Temple_Statue_Torso_DIF
0x5F732FD5,Temple_Statue_Torso_NM
0x3DA930CD,CliffTiled_NORM
0xCA56ABC9,Statue_Core_Diff
0x85141477,LightMapVector_Colour_0
0x388F58F0,LightMapVector_Colour_0
0x4B7A83F7,LightMapVector_Colour_0
0xC962D7A7,LightMapVector_Colour_0
0xD2554D9E,LightMapVector_Dir_0
0xC20BA450,LightMapVector_Dir_0
0x47D2FE01,LightMapVector_Dir_0
0x03AC31BE,LightMapVector_Dir_0
0x5F7858DA,ShadowMapTexture2D
0xA6257B43,LightMapVector_Colour_0
0xA5C22900,LightMapVector_Dir_0
0x0A0820C4,ShadowMapTexture2D
0x878264A3,ShadowMapTexture2D
0xBFF73AA6,DirectionalMaxComponent0
0x6655FA85,LightMapVector_Colour_0
0x3D7FEB4E,LightMapVector_Colour_0
0x4D282F0A,LightMapVector_Colour_0
0x261FCFA3,LightMapVector_Colour_0
0x4381A5AA,LightMapVector_Colour_0
0x11EA3DED,LightMapVector_Dir_0
0xC856EB98,LightMapVector_Dir_0
0x9B169221,LightMapVector_Dir_0
0x48C700D4,LightMapVector_Dir_0
0xCF2D5101,LightMapVector_Dir_0
0x1B916C68,NormalizedAverageColor0
0x6C0A174B,ShadowMapTexture2D
0xC0339249,Parchment01_Diff
0x42789CDF,Parchment01_Msk3
0x380E2FBC,Parchment01_Norm
0x78624F53,Shield01_Diff
0x1BC5574B,Shield01_Msk3
0xCDFE2EE8,Shield01_Norm
0x2AB5F3FC,Statue01_Diff
0xE1CAB597,Statue01_Msk3
0x83D51A55,Statue01_Norm
0xD123E7AF,Sword01_Diff
0xCFA4D482,Sword01_Msk3
0xB017F2B9,Sword01_Norm
0x9AEE58BC,ProtheanArtifact01_diff
0xCB6E38D5,ProtheanArtifact01_emis
0xEF07B4A0,ProtheanArtifact01_norm
0xCD0E45A2,thessia_fresco_DIFF
0xB3E0B8DB,thessia_fresco_NORM
0xF9B8CC40,DirectionalMaxComponent0
0x721F9BE9,DirectionalMaxComponent0
0x5A9F874B,DirectionalMaxComponent0
0x23FEA710,DirectionalMaxComponent0
0x8E7D899B,DirectionalMaxComponent1
0xB75C9B97,DirectionalMaxComponent1
0x4E388DD2,DirectionalMaxComponent1
0xB7D54E80,DirectionalMaxComponent1
0x6FAB0FCD,DirectionalMaxComponent1
0x0D69B071,DirectionalMaxComponent1
0x977D836B,LightMapVector_Colour_0
0x59516306,LightMapVector_Colour_0
0xFD06FE93,LightMapVector_Colour_0
0x51995C33,LightMapVector_Colour_0
0x84BD0868,LightMapVector_Colour_0
0x1FD169A2,LightMapVector_Colour_0
0xACC4A669,LightMapVector_Colour_0
0xED1D08BF,LightMapVector_Colour_0
0x855321DE,LightMapVector_Colour_0
0xB52AF230,LightMapVector_Colour_0
0xAF9E7CE8,LightMapVector_Colour_0
0x33BDC6A1,LightMapVector_Colour_0
0x02414428,LightMapVector_Colour_0
0x2D07DC9C,LightMapVector_Colour_0
0x36BD629D,LightMapVector_Colour_0
0x7BC5D39C,LightMapVector_Colour_0
0xA33D9D27,LightMapVector_Colour_0
0xA769DCFC,LightMapVector_Colour_0
0x7563BAF9,LightMapVector_Colour_0
0x31E5052F,LightMapVector_Colour_0
0x489A3796,LightMapVector_Colour_0
0x6F91623C,LightMapVector_Colour_0
0xF5B30526,LightMapVector_Colour_0
0xA3A04424,LightMapVector_Colour_0
0xA4A8C67E,LightMapVector_Colour_0
0x5E924E51,LightMapVector_Colour_0
0x9053B53A,LightMapVector_Colour_0
0xC9B0021C,LightMapVector_Colour_0
0x257E8BA4,LightMapVector_Colour_0
0xF2483281,LightMapVector_Colour_0
0x6A25A31D,LightMapVector_Colour_0
0x1E9371AC,LightMapVector_Colour_0
0x72B285A2,LightMapVector_Colour_0
0x401D67E3,LightMapVector_Colour_0
0xCEE95C7F,LightMapVector_Colour_0
0x11343486,LightMapVector_Colour_0
0x512310C0,LightMapVector_Dir_0
0x24619A14,LightMapVector_Dir_0
0x3E71AA14,LightMapVector_Dir_0
0xEA8EB22E,LightMapVector_Dir_0
0xEA24D324,LightMapVector_Dir_0
0x7C37AA19,LightMapVector_Dir_0
0x5DDE3D54,LightMapVector_Dir_0
0x874E779C,LightMapVector_Dir_0
0x4208CF06,LightMapVector_Dir_0
0xB7D417A1,LightMapVector_Dir_0
0x52513D17,LightMapVector_Dir_0
0xA260F794,LightMapVector_Dir_0
0xEF2EA87A,LightMapVector_Dir_0
0x95DA39E6,LightMapVector_Dir_0
0x9EE0ED6C,LightMapVector_Dir_0
0x8F927A81,LightMapVector_Dir_0
0xC9642984,LightMapVector_Dir_0
0xD0ADCAAE,LightMapVector_Dir_0
0x54D744C3,LightMapVector_Dir_0
0x62C2B29A,LightMapVector_Dir_0
0x68B4CDF3,LightMapVector_Dir_0
0x6F561953,LightMapVector_Dir_0
0x28B9CD93,LightMapVector_Dir_0
0xE2AC268F,LightMapVector_Dir_0
0x3A85E9C0,LightMapVector_Dir_0
0xDEF0C96F,LightMapVector_Dir_0
0x6B97A209,LightMapVector_Dir_0
0xD583BB50,LightMapVector_Dir_0
0x1574EDAE,LightMapVector_Dir_0
0xD25C18ED,LightMapVector_Dir_0
0x212367DE,LightMapVector_Dir_0
0x4C6BD812,LightMapVector_Dir_0
0x82904C12,LightMapVector_Dir_0
0x18D9AD12,LightMapVector_Dir_0
0xF928CFBC,LightMapVector_Dir_0
0x15982DA8,LightMapVector_Dir_0
0x5811EC9F,NormalizedAverageColor0
0x884E3E2A,NormalizedAverageColor0
0x44607368,NormalizedAverageColor0
0x20382B6A,NormalizedAverageColor0
0x27684A59,NormalizedAverageColor1
0x4CB04B2E,NormalizedAverageColor1
0x9DF6D339,NormalizedAverageColor1
0x471A36DD,NormalizedAverageColor1
0x103703BE,NormalizedAverageColor1
0x4ADCA477,NormalizedAverageColor1
0x1BC4AE75,ShadowMapTexture2D
0xF8FE5489,ShadowMapTexture2D
0x663E9C27,ShadowMapTexture2D
0x38A013D7,ShadowMapTexture2D
0xACC4ACE0,ShadowMapTexture2D
0x848AB7A7,ShadowMapTexture2D
0x70E26C9E,ShadowMapTexture2D
0x9929B4E8,ShadowMapTexture2D
0x35C63170,ShadowMapTexture2D
0xAD6C60BC,ShadowMapTexture2D
0x20DA6FBE,ShadowMapTexture2D
0x9B6D8952,Wallscreen02_Diff
0x1E715FA6,Wallscreen02_Msk3
0x572B9093,Wallscreen02_Norm
0xB08C8B03,Chart_Hologram1
0xD11BAE2B,H_Graphs2
0x452EC110,H_Graphs3
0x4910DC62,H_Graphs3
0x17772600,Holomod_07_Tex
0x486559FB,N7_Screen_00
0x71A4E626,Glass_decal
0x7076FA0E,Glass_decal_Normal
0x09D2E396,Glass_Bits
0x4EB73C8A,Glass_Shards_Norm
0x13DE3E35,DirectionalMaxComponent0
0x8D0B27B8,DirectionalMaxComponent0
0x086CA10D,DirectionalMaxComponent0
0x5359C725,DirectionalMaxComponent1
0x0F31CCC7,NormalizedAverageColor0
0xC10A681E,NormalizedAverageColor0
0x20D03226,NormalizedAverageColor0
0xCC1ED1EC,NormalizedAverageColor1
0x87AD1D1A,ShadowMapTexture2D
0xF49476F5,ShadowMapTexture2D
0x4AA8D4E8,DirectionalMaxComponent0
0xC48035D7,DirectionalMaxComponent1
0x653994C8,DirectionalMaxComponent1
0xE7A63803,NormalizedAverageColor0
0x7F7238E0,NormalizedAverageColor1
0x28243532,NormalizedAverageColor1
0x168CA977,Normandy_Door02_Diff
0x0F3EE703,Normandy_Door02_Norm
0xCFC054A8,Normandy_Door02_Top_Diff
0x9F0BFC45,Normandy_Door02_Top_Norm
0x0F6E44E3,GUI_Terminal2_Diff
0x519DC37F,GUI_Terminal2_Middle_Diff
0x0C94733F,GUI_Terminal2_Middle_Norm
0x5DE3CBA3,GUI_Terminal2_Middle_Spec
0x60EEB3DC,GUI_Terminal2_Norm
0xBD7C72F1,GUI_Terminal2_Spec
0xF719E46E,Detail_Sheet02_Diff
0x1220C4C4,Detail_Sheet02_Msk
0x0AAD87E1,Detail_Sheet02_Norm
0x3C3CBC2D,TechInset_Msk01
0xE2730612,TechInset_Norm01
0xAD8E556B,CubemapFace0
0xE25A4771,ME3_FontMaster_01
0xE13D4C32,Panel_Diff_02
0x15BEC590,Panel_Norm_02
0x7A9AF8D6,WarningSigns02
0x6A3AE869,WarningSigns03
0xC5C40297,Eng_Floor02_Norm
0xE258C0A3,Eng_Wall02b_Diff
0xC7FD8522,Eng_Wall02b_Norm
0xC6EF4699,Tech_Diff01
0xCA87982C,Tech_Norm01
0x99C9E569,TechInset_Norm01
0x4D558A87,MM_Placeholder_Detail_Norm
0xC78EEF65,NOR10_Gradient01
0xF9FB99E5,Bend_Norm
0xFCFC5F0F,CleanPanel_Diff
0xD588B56E,CleanPanel_Norm
0xC1D6A9AC,CockpitChair_DIFF
0x51BD9F8E,CockpitChair_NORM
0x4110678D,Floor01_Diff
0xA00B3CDE,Floor01_Norm
0xA8FCFB53,Light01_Msk
0x8BF84879,NOR10_CONTROLPANNEL01_DIFF
0xEB24C657,NOR10_CONTROLPANNEL01_EMIS
0x2D64D01B,NOR10_CONTROLPANNEL02_DIFF
0xCC543DC1,NOR10_CONTROLPANNEL02_emis
0x47D3B364,NOR10_CONTROLPANNEL02_NORM
0xD8613C4E,NOR10_WALL04_DIFF
0xF0629DB3,NOR10_WALL04_NORM
0xF03C35E8,NOR10_WALL06_DIFF
0x47EAC2CE,Nor_Conduit01_Diff
0xB6599545,Nor_Conduit01_Norm
0xCA1F54E2,NOR_Light01_Diff
0xF475CDD5,NOR_Light01_Norm
0xB30C4061,Nor_metal_grating_01
0xE1467DBB,Nor_metal_grating_Norm_02
0x9D02341A,CubemapFace0
0xA193E8F6,Tarp_cloth_01_diff
0x3BC9EBB0,Tarp_cloth_01_norm
0xDC3FB6F4,Temp
0xD0569C47,Trims01_Diff
0x185B9416,Trims01_Norm
0x44E4F428,Trims03_Diff
0x7D4DC3F1,Trims03_Norm
0x2B5E175C,Wall01_Diff
0x384CEC2B,Wall01_Norm
0xEF084EC7,Wall02_Diff
0x93CC40FC,Wall02_Norm
0xCE44A6C1,Wall03_Norm
0x6E858746,Holomod_02_Tex
0x245DE738,Holomod_06_Tex
0xE8BFAB88,Holomod_09_Tex
0x92271F15,Holomod_11_Tex
0x1B2AED01,Keyboard_01_Tex
0xDB6E1936,LightMapVector_Colour_0
0x37B8DFF9,LightMapVector_Colour_0
0xAA483ACA,LightMapVector_Colour_0
0x339858AE,LightMapVector_Colour_0
0x5A67BAB2,LightMapVector_Colour_0
0x3CFBE877,LightMapVector_Colour_0
0x19C69900,LightMapVector_Colour_0
0xC29E3D71,LightMapVector_Colour_0
0x8DF862B4,LightMapVector_Colour_0
0x67BBB2D0,LightMapVector_Colour_0
0x2B5F34B0,LightMapVector_Colour_0
0xEC5F68E6,LightMapVector_Colour_0
0xF2BD5436,LightMapVector_Colour_0
0x4C279914,LightMapVector_Colour_0
0x164D91FF,LightMapVector_Colour_0
0xEEEF3D22,LightMapVector_Colour_0
0xE578C7F6,LightMapVector_Colour_0
0xB683494E,LightMapVector_Colour_0
0x317C96D0,LightMapVector_Colour_0
0x18F137FB,LightMapVector_Colour_0
0xC94630B3,LightMapVector_Colour_0
0xE382F8C9,LightMapVector_Colour_0
0xD9C913F1,LightMapVector_Colour_0
0x2A81521F,LightMapVector_Colour_0
0x565835BD,LightMapVector_Colour_0
0x30E4FB2F,LightMapVector_Colour_0
0x4A0BA8F6,LightMapVector_Colour_0
0xD351A327,LightMapVector_Colour_0
0x58ABFDA2,LightMapVector_Colour_0
0xF4B6A86E,LightMapVector_Colour_0
0x7F1A7F68,LightMapVector_Colour_0
0x4014FDBC,LightMapVector_Colour_0
0x79B037B7,LightMapVector_Colour_0
0xA9EC1EEC,LightMapVector_Colour_0
0x7455F242,LightMapVector_Colour_0
0x645FA2BB,LightMapVector_Colour_0
0x8E629E69,LightMapVector_Colour_0
0xD327D27F,LightMapVector_Colour_0
0x46463347,LightMapVector_Colour_0
0x21A16569,LightMapVector_Colour_0
0x9A4F5C5E,LightMapVector_Colour_0
0xB23721A2,LightMapVector_Colour_0
0xA947DC9F,LightMapVector_Colour_0
0x0858DB76,LightMapVector_Colour_0
0x8CC3FFDD,LightMapVector_Colour_0
0xDA822292,LightMapVector_Colour_0
0xDF474621,LightMapVector_Colour_0
0x0FF06757,LightMapVector_Dir_0
0xB9967E4E,LightMapVector_Dir_0
0xA829F9BD,LightMapVector_Dir_0
0x8D2BB7E6,LightMapVector_Dir_0
0x4F23CE4B,LightMapVector_Dir_0
0xCDD17074,LightMapVector_Dir_0
0x61C7E93A,LightMapVector_Dir_0
0xA4208A1C,LightMapVector_Dir_0
0x7DD2D003,LightMapVector_Dir_0
0x8F863CC1,LightMapVector_Dir_0
0x4265AD57,LightMapVector_Dir_0
0x020EE9BC,LightMapVector_Dir_0
0x77993A7E,LightMapVector_Dir_0
0xAFA9C603,LightMapVector_Dir_0
0x2329D98F,LightMapVector_Dir_0
0x21C37091,LightMapVector_Dir_0
0xF04565C0,LightMapVector_Dir_0
0xA6313E98,LightMapVector_Dir_0
0x111AA966,LightMapVector_Dir_0
0x9575446A,LightMapVector_Dir_0
0x81034E81,LightMapVector_Dir_0
0xD2DECD01,LightMapVector_Dir_0
0x38945283,LightMapVector_Dir_0
0x633E056E,LightMapVector_Dir_0
0x1107164A,LightMapVector_Dir_0
0xF735DB63,LightMapVector_Dir_0
0x3F3D2555,LightMapVector_Dir_0
0x255770F1,LightMapVector_Dir_0
0x32F54AF1,LightMapVector_Dir_0
0xB68930F7,LightMapVector_Dir_0
0x8C12256E,LightMapVector_Dir_0
0x41655379,LightMapVector_Dir_0
0xB9826A25,LightMapVector_Dir_0
0xA67AA594,LightMapVector_Dir_0
0x93A19BAB,LightMapVector_Dir_0
0x0FFF5A4B,LightMapVector_Dir_0
0xB7A06FB4,LightMapVector_Dir_0
0xF3D66F7B,LightMapVector_Dir_0
0x3E34E82C,LightMapVector_Dir_0
0xAD9EFBC0,LightMapVector_Dir_0
0x05934542,LightMapVector_Dir_0
0x6B9FB849,LightMapVector_Dir_0
0x6337368E,LightMapVector_Dir_0
0xD1776A55,LightMapVector_Dir_0
0xDCB26FE3,LightMapVector_Dir_0
0x14EB6937,LightMapVector_Dir_0
0x1B907D40,LightMapVector_Dir_0
0x9091FD45,ShadowMapTexture2D
0x105FCF8C,Barrel01_A_Diff
0xC1D00C8E,Barrel01_D_Diff
0x41B02FCC,Barrel01_Msk3
0x691C0700,Barrel01_Norm
0xDE790DFC,Crate01_Dirty_L_Diff
0xD4185F5E,Crate01_Dirty_L_Msk3
0xB6528F38,Crate01_Dirty_L_Norm
0xE525A9D2,Crate01_Dirty_M_Diff
0x346FBAA3,Crate01_Dirty_M_Msk3
0xB5FCEAB3,Crate01_Dirty_M_Norm
0xF3B73B0B,Crate_SM_Diff
0xCA373F62,Crate_SM_Norm
0x8987B7AF,CrateNor01_Diff
0x4F3B84A0,CrateNor01_Msk3
0x65A881F9,CrateNor01_Norm
0x6206B902,CrateShipping01_Diff_A
0x3CA50BA9,CrateShipping01_Diff_C
0xA1970813,CrateShipping01_Msk3
0x0EA94D76,CrateShipping01_Norm
0x16FC6F37,Lamp_Desk02_Diff
0x0E97E27B,Lamp_Desk02_Msk3
0xCA3CD6F6,Lamp_Desk02_Norm
0xBD82F860,TechTester01_Diff
0xAD4E549A,TechTester01_Msk3
0xE3F5A6FB,TechTester01_Norm
0x6491CA6E,Bench02_Diff
0xAD31599D,Bench02_Msk3
0x38AC5D90,Bench02_Norm
0x48F2B26F,ChairOffice01_Diff
0x44EE1343,ChairOffice01_Msk3
0xDA812095,ChairOffice01_Norm
0xFEDEE14F,ACUnit01_Diff
0xF115F9E6,ACUnit01_Msk3
0x0AC3EAE4,ACUnit01_Norm
0xC728A8C7,Crane01_Diff
0x49AF3E67,Crane01_Msk3
0xEF3204E9,Crane01_Norm
0xB959FC2C,EquipmentLab08_Norm
0x03599842,EquipmentLab08_Worn_Diff
0x6D850919,EquipmentLab08_Worn_Msk3
0x6A7818ED,GarbageCan01_Diff
0x4969D51B,GarbageCan01_Msk3
0x0E5A9878,GarbageCan01_Norm
0x7AC0CB67,LandingPad01_Diff
0xA8DE752C,LandingPad01_Msk3
0xDBCF3A76,LandingPad01_Norm
0xEDD0B922,Machinery01_Diff
0x1E7E7584,Machinery01_Msk3
0x65FB177A,Machinery01_Norm
0x2AC9ADBA,Machinery02_Diff
0x3804D718,Machinery02_Msk3
0x2117F094,Machinery02_Norm
0xBD857FC7,Tank03_Diff
0xB53B30C9,Tank03_Msk3
0xDFBD8BE0,Tank03_Norm
0xBC469146,Computer01_Diff
0x8B3BA4FF,Computer01_Norm
0x919369D5,Computer02_Diff
0x72577181,Computer02_Norm
0x88DE877E,FoodDispenser02_Diff
0x1E2CF27C,FoodDispenser02_Msk3
0x28783B42,FoodDispenser02_Norm
0x8C1BCBFD,Terminal01_Diff
0x076AA689,Terminal01_Msk3
0x1F5E96C5,Terminal01_Norm
0x3B4D3C01,Forklift01_Diff
0x6A815437,Forklift01_Norm
0x7538941A,GBL_ARM_ALL_White
0x413DAA67,HoverCar01_Citadel_Diff
0x88D37FC8,HoverCar01_Citadel_Norm
0x97F39AE0,HoverCar01_Citadel_Tint
0x4E331A21,HoverCar02_Cinematic_LightBar_Diff
0xA4091B2A,HoverCar02_Cinematic_LightBar_MaskA
0xC693FDA6,HoverCar02_Cinematic_LightBar_MaskB
0x0C2FB3F5,HoverCar02_Cinematic_LightBar_MaskC
0x4CAFEB77,HoverCar02_Cinematic_LightBar_Norm
0x97760475,HoverCar02_Cinematic_LightBar_Spec