-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathRE7_TBH_PS4_Demo.list
5169 lines (5169 loc) · 336 KB
/
RE7_TBH_PS4_Demo.list
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
natives/ps4/aaa/ambassadortrial/animation/enemy/em2000/motfsm/em2000.motfsm.13
natives/ps4/aaa/ambassadortrial/animation/enemy/em2000/motlist/em2000.motlist.50
natives/ps4/aaa/ambassadortrial/animation/enemy/em3000/motfsm/em3000.motfsm.13
natives/ps4/aaa/ambassadortrial/animation/enemy/em3000/motlist/em3000.motlist.50
natives/ps4/aaa/ambassadortrial/animation/ingame/c01/c01e07_00/motfsm/c01e07_00_em3000.motfsm.13
natives/ps4/aaa/ambassadortrial/animation/ingame/c01/c01e07_00/motfsm/c01e07_00_pl0000.motfsm.13
natives/ps4/aaa/ambassadortrial/animation/ingame/c01/c01e07_99/motfsm/c01e07_99_em3000.motfsm.13
natives/ps4/aaa/ambassadortrial/animation/ingame/c01/c01e07_99/motfsm/c01e07_99_pl0000.motfsm.13
natives/ps4/aaa/ambassadortrial/animation/ingame/c01/c01e07_99/motlist/c01e07_99_em3000.motlist.50
natives/ps4/aaa/ambassadortrial/animation/ingame/c01/c01e07_99/motlist/c01e07_99_pl0000.motlist.50
natives/ps4/aaa/ambassadortrial/animation/setmodel/sm0256/motlist/sm0256.motlist.50
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/bh_human_eye_bm.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050.mdf2.5
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050.mesh.31
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_face_albm.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_face_blend_atos.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_face_blend_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_face_intensity_msk4.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_face_msk.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_face_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_glass_albm.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_glass_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3050_rtt.rtex.4
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3070_hair_albm.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3070_hair_atos.tex.6
natives/ps4/aaa/ambassadortrial/character/enemy/em3000/em3050/em3070_hair_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/enginecol/chapter1/c01_corridor01_terrainsm.terr.2
natives/ps4/aaa/ambassadortrial/environment/enginecol/chapter1/c01_living01_terrainsm.terr.2
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_2f.mdf2.5
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_2f.mesh.31
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_3f.mdf2.5
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_3f.mesh.31
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_corridor01.mdf2.5
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_corridor01.mesh.31
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_corridor01_e.mcol.1
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_corridor01_t.mcol.1
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_corridor02.mdf2.5
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_corridor02.mesh.31
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_kitchen01.mdf2.5
natives/ps4/aaa/ambassadortrial/environment/mesh/chapter1/c01_kitchen01.mesh.31
natives/ps4/aaa/ambassadortrial/environment/textures/aaa_logo00_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/aaa_logo00_atos.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/aaa_logo00_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_ground00low_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_ground00low_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_ground01low_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_ground01low_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutframe01low_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutframe01low_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutleaf01low_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutleaf01low_atos.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutleaf01low_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutplant01low_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutplant01low_atos.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutplant01low_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutroof01low_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutroof01low_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutwall01low_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutwall01low_atos.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutwall01low_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutwood01low_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_guesthouseoutsideoutwood01low_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_plantsboardlow_albm.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_plantsboardlow_atos.tex.6
natives/ps4/aaa/ambassadortrial/environment/textures/c01_plantsboardlow_nrmr.tex.6
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/bgmchagne.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_phonemessage.scn.14
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_phonemessage/ambassador_phonemessage_100.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_phonemessage/ambassador_phonemessage_200.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_phonemessage/ambassador_phonemessage_300.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_tutorial.scn.14
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_tutorial/tutorial_attack.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_tutorial/tutorial_camera.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_tutorial/tutorial_destroyopendoor.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_tutorial/tutorial_hadcamera.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_tutorial/tutorial_inventory.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_tutorial/tutorial_opendoor.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/ambassador_tutorial/tutorial_walk.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/c01_mainflow.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/levelfsm_c01.scn.14
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_2nd_rigidbodyon_kitchenasset.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_activeon_breakablemannequin.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_bgm_horrorhouse_triggerfootstep.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_bgmstop_call_from_unknown.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_bgmstop_horrorhouse_approachingkitichen.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_doll_fallendown.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_event_jackpunchend_3f.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_gimmickstairs01adown.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_jack_appear_walkinfrontoflivingdoor.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_jackendevent.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_jump_endcard.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_keypickcupboard_unlock.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_main_completeff.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_mannequin_move.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_mannequinmove_waytobackdoor.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_open_livingdoor.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_phoneringing_afterstairsdown.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_rigidbodyon_kitchenasset.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_se_em3000growl_living.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_se_footstep.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_se_fs_creak_fromliving.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_sm0113_phoneflow.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/mainflow/fsm_sm0287_livingsecretdoorslowopen.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/other/disptitlegui.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/chapter1/other/setupprobestype.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/ambassador_tutorial.scn.14
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/ambassador_tutorial/tutorial_check_hadcrouchstand.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/ambassador_tutorial/tutorial_check_openeddoor.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/ambassador_tutorial/tutorial_crouch.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/ambassador_tutorial/tutorial_standup.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/levelfsm_ff000_trial.scn.14
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_actressghost_00.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_actressghost_01.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_actressghost_02.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_actressghost_03.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_actressghost_04.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_actressghost_05.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_actressghost_06.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_alandisappearance.fsm.12
natives/ps4/aaa/ambassadortrial/leveldesign/fsm/ff000/mainflow/fsm_ladderdownpetemessage.fsm.12
natives/ps4/aaa/ambassadortrial/master_ambassadortrial.scn.14
natives/ps4/aaa/ambassadortrial/movie/ambassadortrialendmovie.mov.1
natives/ps4/aaa/ambassadortrial/movie/ambassadortrialfirstmovie.mov.1
natives/ps4/aaa/ambassadortrial/prefab/character/em3000/fsm_em3000head.fsm.12
natives/ps4/aaa/ambassadortrial/prefab/gui/ambassadortrailingametitle.pfb.11
natives/ps4/aaa/ambassadortrial/prefab/gui/ambassadortrialcaution.pfb.11
natives/ps4/aaa/ambassadortrial/prefab/gui/ambassadortrialendcard.pfb.11
natives/ps4/aaa/ambassadortrial/prefab/gui/ambassadortrialmainmenu.pfb.11
natives/ps4/aaa/ambassadortrial/prefab/gui/ambassadortrialobjective.pfb.11
natives/ps4/aaa/ambassadortrial/prefab/props_dynamic/sm0013_cupboard01a/keylockopen/fsm_1stinteract.fsm.12
natives/ps4/aaa/ambassadortrial/prefab/props_dynamic/sm0013_cupboard01a/keylockopen/fsm_ffafteropen.fsm.12
natives/ps4/aaa/ambassadortrial/prefab/props_dynamic/sm0121_videodeck01a/ffplay00/fsm_1stinteract.fsm.12
natives/ps4/aaa/ambassadortrial/prefab/props_dynamic/sm0213_tv01a/lighted/fsm_lighted.fsm.12
natives/ps4/aaa/ambassadortrial/prefab/props_dynamic/sm0245_fusebox01a/setfuse/fsm_1stinteract.fsm.12
natives/ps4/aaa/ambassadortrial/prefab/props_dynamic/sm0245_fusebox01a/setfuse/fsm_inventoryselect.fsm.12
natives/ps4/aaa/ambassadortrial/prefab/props_dynamic/sm0250_chainlocker01a/drawerchainlock/fsm_interacttxtnocutter.fsm.12
natives/ps4/aaa/ambassadortrial/prefab/props_dynamic/sm0250_chainlocker01a/drawerchainlock/fsm_itemcheck.fsm.12
natives/ps4/aaa/ambassadortrial/scenes/bootflow.scn.14
natives/ps4/aaa/ambassadortrial/scenes/chapter1.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_2f/c01_2f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_2f/c01_2f_light/c01_2f_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_3f/c01_3f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_3f/c01_3f_light/c01_3f_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_3f/c01_3f_light/lightsetnight_c01_3f/lightsetcommon_c01_3f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_3f/c01_3f_mapzone/c01_3f_mapzone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_b1a/c01_b1a.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_b1a/c01_b1a_light/c01_b1a_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_b1a/c01_b1a_light/lightsetcommon_c01_b1a/lightsetcommon_c01_b1a.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_corridor01/c01_corridor01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_corridor01/c01_corridor01_light/c01_corridor01_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_corridor01/c01_corridor01_light/lightsetday_c01_corridor01/lightsetday_c01_corridor01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_corridor01/c01_corridor01_mapzone/c01_corridor01_mapzone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_corridor02/c01_corridor02.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_corridor02/c01_corridor02_light/c01_corridor02_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_corridor02/c01_corridor02_light/lightsetday_c01_corridor02/lightsetday_c01_corridor02.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_corridor02/c01_corridor02_mapzone/c01_corridor02_mapzone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_cullingcollision/c01_cullingcollision.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_kitchen01/c01_kitchen01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_kitchen01/c01_kitchen01_light/c01_kitchen01_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_kitchen01/c01_kitchen01_light/lightsetday_c01_kitchen01/lightsetday_c01_kitchen01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_living01/c01_living01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_living01/c01_living01_light/c01_living01_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_living01/c01_living01_mapzone/c01_living01_mapzone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_loadcollision/c01_loadcollision.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/c01_shadow01/c01_shadow01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/clip/c01e07_00/c01e07_00_camera.tml.11
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/clip/c01e07_01/c01e07_01_camera.tml.11
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/clip/c01e07_01/c01e07_01_eventbind.tml.11
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/clip/c04e10_00/c04e10_00_camera.tml.11
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/clip/sm0105_lampshade01a_lighted_anim01_bind.tml.11
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/eventlight_c01/eventlight_c01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/eventlight_c01/lightsetevent_c01e07_01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/ibl_c01/ibl_c01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/light_c01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/light_c01/zone_c01/zone_c01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/sound_c01/sound_c01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/vfx_c01/vfx_c01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/vfx_c01/vfx_c01_1f/vfx_c01_1f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/vfx_c01/vfx_c01_2f/vfx_c01_2f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/vfx_c01/vfx_c01_anywhere/vfx_c01_anywhere.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene/vfx_c01/vfx_c01_other1/vfx_c01_other1.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_2f/c01_2f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_2f/c01_2f_light/c01_2f_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_2f/c01_2f_light/lightsetcommon_c01_2f/lightsetcommon_c01_2f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_b1a/c01_b1a.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_b1a/c01_b1a_light/c01_b1a_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_b1a/c01_b1a_light/lightsetcommon_c01_b1a/lightsetcommon_c01_b1a.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_b1b/c01_b1b.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_b1b/c01_b1b_light/c01_b1b_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_b1b/c01_b1b_light/lightsetcommon_c01_b1b/lightsetcommon_c01_b1b.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_b1c/c01_b1c.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_corridor01/c01_corridor01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_corridor01/c01_corridor01_light/c01_corridor01_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_corridor01/c01_corridor01_light/lightsetcommon_c01_corridor01/lightsetcommon_c01_corridor01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_corridor01/c01_corridor01_mapzone/c01_corridor01_mapzone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_corridor02/c01_corridor02.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_corridor02/c01_corridor02_light/c01_corridor02_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_corridor02/c01_corridor02_light/lightsetcommon_c01_corridor02/lightsetcommon_c01_corridor02.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_cullingcollision/c01_cullingcollision.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_kitchen01/c01_kitchen01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_kitchen01/c01_kitchen01_light/c01_kitchen01_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_kitchen01/c01_kitchen01_light/lightsetcommon_c01_kitchen01/lightsetcommon_c01_kitchen01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_living01/c01_living01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_living01/c01_living01_light/c01_living01_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_living01/c01_living01_light/lightsetcommon_c01_living01/lightsetcommon_c01_living01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_living01/c01_living01_mapzone/c01_living01_mapzone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_loadcollision/c01_loadcollision.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_outside01/c01_outside01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_outside01/c01_outside01_light/c01_outside01_light.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_outside01/c01_outside01_light/lightsetcommon_c01_outside01/lightsetcommon_c01_outside01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_outside01/c01_outside01_mapzone/c01_outside01_mapzone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_outside10/c01_outside10.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_outside11/c01_outside11.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_outsideb/c01_outsideb.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/c01_shadow01/c01_shadow01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/enemy_ff000/enemy_ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/event_ff000/event_ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/levelfsm_ff000/levelfsm_ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/levelfsm_ff000/npc_ff000/npc_ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/levelfsm_ff000/npc_ff000/pos_c01f01_em6200/pos_c01f01_em6200.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/levelfsm_ff000/npc_ff000/pos_c01f01_em9200/pos_c01f01_em9200.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/light_ff000/ff000_ibl/ff000_ibl.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/light_ff000/ff000_ibl/lightsetcommon_c01_ibl/lightsetcommon_c01_ibl.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/light_ff000/ff000_zone/ff000_zone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/light_ff000/ff000_zone/lightsetcommon_c01_zone/lightsetcommon_c01_zone.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/light_ff000/light_ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/sound_ff000/sound_ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/ui_ff000/chapter1/chapter1.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/ui_ff000/ui_ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/vfx_ff000/vfx_ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/vfx_ff000/vfx_ff000_1f/vfx_ff000_1f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/vfx_ff000/vfx_ff000_2f/vfx_ff000_2f.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/vfx_ff000/vfx_ff000_anywhere/vfx_ff000_anywhere.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/vfx_ff000/vfx_ff000_b1/vfx_ff000_b1.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/vfx_ff000/vfx_ff000_other/vfx_ff000_other.scn.14
natives/ps4/aaa/ambassadortrial/scenes/copyscene_ff/vfx_ff000/vfx_ff000_outside/vfx_ff000_outside.scn.14
natives/ps4/aaa/ambassadortrial/scenes/endcard.scn.14
natives/ps4/aaa/ambassadortrial/scenes/enemy_c01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/event_c01.scn.14
natives/ps4/aaa/ambassadortrial/scenes/ff000.scn.14
natives/ps4/aaa/ambassadortrial/scenes/files/fileresources.scn.14
natives/ps4/aaa/ambassadortrial/scenes/items/itemresources.scn.14
natives/ps4/aaa/ambassadortrial/scenes/loadscenetemp.scn.14
natives/ps4/aaa/ambassadortrial/scenes/mainmenu.scn.14
natives/ps4/aaa/ambassadortrial/scenes/player.scn.14
natives/ps4/aaa/ambassadortrial/ui/ui4000/tex/ui4000_200_im.tex.6
natives/ps4/aaa/ambassadortrial/ui/ui8100/gui/ui8100.gui.110013
natives/ps4/aaa/ambassadortrial/ui/ui8100/gui/ui8101.gui.110013
natives/ps4/aaa/ambassadortrial/ui/ui8100/gui/ui8102.gui.110013
natives/ps4/aaa/ambassadortrial/ui/ui8100/gui/ui8104.gui.110013
natives/ps4/aaa/ambassadortrial/ui/ui8100/gui/ui8110.gui.110013
natives/ps4/aaa/ambassadortrial/ui/ui8100/tex/ui8100.uvs.5
natives/ps4/aaa/ambassadortrial/ui/ui8100/tex/ui8100_iam.tex.6
natives/ps4/aaa/ambassadortrial/userdata/globalvariables.uvar.2
natives/ps4/aaa/ambassadortrial/vfx/texture/em3000_cp3_burm_completely_body_msk4.tex.6
natives/ps4/aaa/ambassadortrial/vfx/texture/em3000_cp3_burm_completely_head_msk4.tex.6
natives/ps4/aaa/ambassadortrial/vfx/texture/vfx_aaa_texture_0000_alba.tex.6
natives/ps4/aaa/ambassadortrial/vfx/texture/vfx_aaa_texture_0000_nrm.tex.6
natives/ps4/aaa/ambassadortrial/vfx/texture/vfx_aaa_texture_0001_alba.tex.6
natives/ps4/aaa/ambassadortrial/vfx/texture/vfx_aaa_texture_0001_nrm.tex.6
natives/ps4/aaa/ambassadortrial/vfx/texture/vfx_aaa_texture_0002_alba.tex.6
natives/ps4/aaa/ambassadortrial/vfx/texture/vfx_aaa_texture_0002_nrm.tex.6
natives/ps4/aaa/ambassadortrial_tu/animation/enemy/em4300/prefab/em4300grapple.uvar.2
natives/ps4/aaa/ambassadortrial_tu/collision/collider/enemy/em4300/em4300.rcol.2
natives/ps4/aaa/ambassadortrial_tu/collision/collider/enemy/em4300/em4350.rcol.2
natives/ps4/aaa/ambassadortrial_tu/network/networkconfig_eu.ncf.2
natives/ps4/aaa/ambassadortrial_tu/prefab/props_dynamic/sm1684_corpsebag/sm1684_tu2.rcol.2
natives/ps4/aaa/ambassadortrial_tu/ui/ui8100/tex/ui8100.uvs.5
natives/ps4/aaa/ambassadortrial_tu/ui/ui8100/tex/ui8105.uvs.5
natives/ps4/aaa/ambassadortrial_tu/vfx_ambassa/vfx_texture/vfx_tex_bh7_ambassa_0002_rt.rtex.4
natives/ps4/aaa/common/scene/chapterresident.scn.14
natives/ps4/aaa/common/scene/debug.scn.14
natives/ps4/aaa/common/scene/requiredobject.scn.14
natives/ps4/alphatest/prefab/debugcamera.pfb.11
natives/ps4/animation/enemy/bacvariables.uvar.2
natives/ps4/animation/enemy/em2000/motfsm/battle4/em2000chapter1battle4_wallbreak.motfsm.13
natives/ps4/animation/enemy/em2000/motlist/battle4/em2000chapter1battle4_wallbreak.motlist.50
natives/ps4/animation/enemy/em3050/motlist/c01_em3050.motlist.50
natives/ps4/animation/enemy/em4000/prefab/em4000.uvar.2
natives/ps4/animation/enemy/em5600/motfsm/em5600.motfsm.13
natives/ps4/animation/enemy/em5600/motfsm/em5600_sm0256.motfsm.13
natives/ps4/animation/enemy/em5600/motlist/em5600.motlist.50
natives/ps4/animation/enemy/em5600/motlist/em5600_sm0256.motlist.50
natives/ps4/animation/enemy/em6200/em6200_ff000.motbank.1
natives/ps4/animation/enemy/em6200/motfsm/em6200_ff000.motfsm.13
natives/ps4/animation/enemy/em6200/motlist/em6200_c01f01.motlist.50
natives/ps4/animation/enemy/em6250/motlist/f00_em6250.motlist.50
natives/ps4/animation/enemy/em9200/em9200.jmap.7
natives/ps4/animation/enemy/em9200/em9200_ff000.motbank.1
natives/ps4/animation/enemy/em9200/motfsm/em9200_ff000.motfsm.13
natives/ps4/animation/enemy/em9200/motlist/em9200_c01f01.motlist.50
natives/ps4/animation/enemy/em9250/motlist/f00_em9250.motlist.50
natives/ps4/animation/enemy/enemycommonuservariables.uvar.2
natives/ps4/animation/enemy/moldeduservariables.uvar.2
natives/ps4/animation/ingame/c01/c01e07_00/motlist/c01e07_00_em3000.motlist.50
natives/ps4/animation/ingame/c01/c01e07_00/motlist/c01e07_00_pl0000.motlist.50
natives/ps4/animation/ingame/c01/c01e07_01/motfsm/c01e07_01_em3000.motfsm.13
natives/ps4/animation/ingame/c01/c01e07_01/motfsm/c01e07_01_pl0000.motfsm.13
natives/ps4/animation/ingame/c01/c01e07_01/motlist/c01e07_01_em3000.motlist.50
natives/ps4/animation/ingame/c01/c01e07_01/motlist/c01e07_01_pl0000.motlist.50
natives/ps4/animation/ingame/c04/c04e10_00/motfsm/c04e10_00_pl2000.motfsm.13
natives/ps4/animation/ingame/c04/c04e10_00/motlist/c04e10_00_pl2000.motlist.50
natives/ps4/animation/ingame/chapter1/motfsm/ch1_21_v-deck.motfsm.13
natives/ps4/animation/ingame/chapter1/motlist/ch01_21_sm0121.motlist.50
natives/ps4/animation/ingame/ff000/c01f01_00/motfsm/c01f01_00_em6200.motfsm.13
natives/ps4/animation/ingame/ff000/c01f01_00/motfsm/c01f01_00_em9200.motfsm.13
natives/ps4/animation/ingame/ff000/c01f01_00/motfsm/c01f01_00_em9300.motfsm.13
natives/ps4/animation/ingame/ff000/c01f01_00/motlist/c01f01_00_em6200.motlist.50
natives/ps4/animation/ingame/ff000/c01f01_00/motlist/c01f01_00_em9200.motlist.50
natives/ps4/animation/ingame/ff000/c01f01_00/motlist/c01f01_00_em9300.motlist.50
natives/ps4/animation/ingame/ff000/c01f04_00/motfsm/c01f04_00_em3000.motfsm.13
natives/ps4/animation/ingame/ff000/c01f04_00/motfsm/c01f04_00_em6200.motfsm.13
natives/ps4/animation/ingame/ff000/c01f04_00/motfsm/c01f04_00_em9300.motfsm.13
natives/ps4/animation/ingame/ff000/c01f04_00/motfsm/c01f04_00_sm1903.motfsm.13
natives/ps4/animation/ingame/ff000/c01f04_00/motlist/c01f04_00_em3000.motlist.50
natives/ps4/animation/ingame/ff000/c01f04_00/motlist/c01f04_00_em6200.motlist.50
natives/ps4/animation/ingame/ff000/c01f04_00/motlist/c01f04_00_em9300.motlist.50
natives/ps4/animation/ingame/ff000/c01f04_00/motlist/c01f04_00_sm1903.motlist.50
natives/ps4/animation/ingame/ff000/c01f04_01/motfsm/c01f04_01_em6200.motfsm.13
natives/ps4/animation/ingame/ff000/c01f04_01/motfsm/c01f04_01_sm1903.motfsm.13
natives/ps4/animation/ingame/ff000/c01f04_01/motlist/c01f04_01_em6200.motlist.50
natives/ps4/animation/ingame/ff000/c01f04_01/motlist/c01f04_01_sm1903.motlist.50
natives/ps4/animation/ingame/ff000/ff000_ingamemanager.pfb.11
natives/ps4/animation/player/pl0000/motfsm/pl0000_body.motfsm.13
natives/ps4/animation/player/pl0000/motfsm/pl0000_damagecamera.motfsm.13
natives/ps4/animation/player/pl0000/motfsm/pl0000_posturalcamera.motfsm.13
natives/ps4/animation/player/pl0000/motfsm/pl0000_rhand.motfsm.13
natives/ps4/animation/player/pl0000/motfsm/pl0000_touchwall.motfsm.13
natives/ps4/animation/player/pl0000/motfsm/pl0000_weapon.motfsm.13
natives/ps4/animation/player/pl0000/motfsm/pl0000_weaponupper.motfsm.13
natives/ps4/animation/player/pl0000/motlist/pl0000_ax.motlist.50
natives/ps4/animation/player/pl0000/motlist/pl0000_camadd.motlist.50
natives/ps4/animation/player/pl0000/motlist/pl0000_hands.motlist.50
natives/ps4/animation/player/pl0000/pl0000.motbank.1
natives/ps4/animation/player/pl0000/pl0000.uvar.2
natives/ps4/animation/player/pl0000/pl0000_jointmap.jmap.7
natives/ps4/animation/props/doorpush.fsm.12
natives/ps4/animation/props/itemdoor/fsm/itemlock.fsm.12
natives/ps4/animation/props/itemdoor/fsm/itemopen.fsm.12
natives/ps4/animation/props/itemdoor/fsm/itemreaction.fsm.12
natives/ps4/animation/props/ladder/ladder.uvar.2
natives/ps4/animation/props/ladder/motfsm/ladder_pl.motfsm.13
natives/ps4/animation/props/ladder/motfsm/ladderlarmdamage_pl.motfsm.13
natives/ps4/animation/props/ladder/motlist/ladder.motlist.50
natives/ps4/animation/setmodel/sm0001/motfsm/ff000/sm0001_ff000.motfsm.13
natives/ps4/animation/setmodel/sm0001/motlist/ff000/sm0001_ff000.motlist.50
natives/ps4/animation/setmodel/sm0097/motfsm/sm0097.motfsm.13
natives/ps4/animation/setmodel/sm0097/motfsm/sm0097_pl.motfsm.13
natives/ps4/animation/setmodel/sm0097/motfsm/sm0198.motfsm.13
natives/ps4/animation/setmodel/sm0097/motlist/sm0097.motlist.50
natives/ps4/animation/setmodel/sm0100/motfsm/sm0100.motfsm.13
natives/ps4/animation/setmodel/sm0100/motfsm/sm0100_pl.motfsm.13
natives/ps4/animation/setmodel/sm0100/motlist/sm0100.motlist.50
natives/ps4/animation/setmodel/sm0109/motfsm/sm0109.motfsm.13
natives/ps4/animation/setmodel/sm0109/motlist/sm0109.motlist.50
natives/ps4/animation/setmodel/sm0113/motfsm/sm0113.motfsm.13
natives/ps4/animation/setmodel/sm0113/motfsm/sm0113_pl.motfsm.13
natives/ps4/animation/setmodel/sm0113/motlist/sm0113.motlist.50
natives/ps4/animation/setmodel/sm0125/motfsm/sm0125.motfsm.13
natives/ps4/animation/setmodel/sm0125/motfsm/sm0125_pl.motfsm.13
natives/ps4/animation/setmodel/sm0125/motlist/sm0125.motlist.50
natives/ps4/animation/setmodel/sm0250/motfsm/sm0250.motfsm.13
natives/ps4/animation/setmodel/sm0250/motlist/sm0250.motlist.50
natives/ps4/animation/setmodel/sm0256/motfsm/sm0256.motfsm.13
natives/ps4/animation/setmodel/sm0256/motfsm/sm0256_pl.motfsm.13
natives/ps4/animation/setmodel/sm0256/motlist/sm0256.motlist.50
natives/ps4/animation/setmodel/sm0289/motfsm/sm0289.motfsm.13
natives/ps4/animation/setmodel/sm0289/motlist/sm0289.motlist.50
natives/ps4/animation/setmodel/sm0305/motfsm/sm0305.motfsm.13
natives/ps4/animation/setmodel/sm0305/motfsm/sm0305_pl.motfsm.13
natives/ps4/animation/setmodel/sm0305/motlist/sm0305.motlist.50
natives/ps4/animation/setmodel/sm0307/motfbx/sm0307.motfsm.13
natives/ps4/animation/setmodel/sm0307/motfbx/sm0307_pl.motfsm.13
natives/ps4/animation/setmodel/sm0307/motlist/sm0307.motlist.50
natives/ps4/animation/setmodel/sm0316/motfsm/sm0316.motfsm.13
natives/ps4/animation/setmodel/sm0316/motfsm/sm0316_pl.motfsm.13
natives/ps4/animation/setmodel/sm0316/motfsm/sm0316_wp1100.motfsm.13
natives/ps4/animation/setmodel/sm0316/motlist/sm0316.motlist.50
natives/ps4/animation/setmodel/sm0490/motfsm/sm0490.motfsm.13
natives/ps4/animation/setmodel/sm0490/motlist/sm0490.motlist.50
natives/ps4/animation/setmodel/sm0578/motfsm/sm0578.motfsm.13
natives/ps4/animation/setmodel/sm0578/motlist/sm0578.motlist.50
natives/ps4/animation/setmodel/sm0584/motfsm/sm0584.motfsm.13
natives/ps4/animation/setmodel/sm0584/motlist/sm0584.motlist.50
natives/ps4/animation/setmodel/sm1684/sm1684uservariables.uvar.2
natives/ps4/animation/setmodel/sm1716/motfsm/sm1716.motfsm.13
natives/ps4/animation/setmodel/sm1716/motfsm/sm1716_pl.motfsm.13
natives/ps4/animation/setmodel/sm1716/motlist/sm1716.motlist.50
natives/ps4/animation/setmodel/sm1950/motfsm/sm1950.motfsm.13
natives/ps4/animation/setmodel/sm1950/motlist/sm1950.motlist.50
natives/ps4/animation/setmodel/sm2049/motfsm/sm2049.motfsm.13
natives/ps4/animation/setmodel/sm2049/motlist/sm2049.motlist.50
natives/ps4/animation/setmodel/sm9051/motlist/sm9051_breakablewall00_0.motlist.50
natives/ps4/animation/setmodel/sm9051/motlist/sm9051_breakablewall00_1.motlist.50
natives/ps4/animation/setmodel/sm9051/motlist/sm9051_breakablewall00_2.motlist.50
natives/ps4/animation/setmodel/sm9051/motlist/sm9051_breakablewall00_3.motlist.50
natives/ps4/animation/setmodel/sm9052/motlist/sm9052_breakablewall01_0.motlist.50
natives/ps4/animation/setmodel/sm9052/motlist/sm9052_breakablewall01_1.motlist.50
natives/ps4/animation/setmodel/sm9052/motlist/sm9052_breakablewall01_2.motlist.50
natives/ps4/animation/setmodel/sm9053/motlist/sm9053_breakabledoor00a.motlist.50
natives/ps4/animation/setmodel/sm9054/motlist/sm9054_breakblewooddoor01a.motlist.50
natives/ps4/animation/setmodel/sm9055/motlist/sm9055_breakabledoor01a.motlist.50
natives/ps4/animation/weapon/wp1010/wp1010.motbank.1
natives/ps4/animation/weapon/wp1010/wp1010.uvar.2
natives/ps4/character/enemy/em2000/em2050/em2050.mdf2.5
natives/ps4/character/enemy/em2000/em2050/em2050.mesh.31
natives/ps4/character/enemy/em2000/em2050/em2050_face_atlas_albm.tex.6
natives/ps4/character/enemy/em2000/em2050/em2050_face_atlas_nrmr.tex.6
natives/ps4/character/enemy/em2000/em2050/em2050_face_blend_atos.tex.6
natives/ps4/character/enemy/em2000/em2050/em2050_face_blend_nrmr.tex.6
natives/ps4/character/enemy/em2000/em2050/em2050_face_msk.tex.6
natives/ps4/character/enemy/em2000/em2050/em2050_fakesphere_alb.tex.6
natives/ps4/character/enemy/em2000/em2050/em2150_face_blend_atos.tex.6
natives/ps4/character/enemy/em2000/em2050/em2150_face_blend_nrmr.tex.6
natives/ps4/character/enemy/em2000/em2050/em2150_face_intensity_msk4.tex.6
natives/ps4/character/enemy/em2000/em2050/em2150_low.mesh.31
natives/ps4/character/enemy/em2000/em2050/em2150_rtt.rtex.4
natives/ps4/character/enemy/em2000/em2070/em2070.chain.3
natives/ps4/character/enemy/em2000/em2070/em2070.mdf2.5
natives/ps4/character/enemy/em2000/em2070/em2070.mesh.31
natives/ps4/character/enemy/em2000/em2071/em2071_hair_alba.tex.6
natives/ps4/character/enemy/em2000/em2071/em2071_hair_albm.tex.6
natives/ps4/character/enemy/em2000/em2071/em2071_hair_atos.tex.6
natives/ps4/character/enemy/em2000/em2071/em2071_hair_nrmr.tex.6
natives/ps4/character/enemy/em2000/em2080/em2080.mdf2.5
natives/ps4/character/enemy/em2000/em2080/em2080_sim.clo.2016012500
natives/ps4/character/enemy/em2000/em2080/em2080_sim.mesh.31
natives/ps4/character/enemy/em2000/em2090/em2090.mdf2.5
natives/ps4/character/enemy/em2000/em2090/em2090.mesh.31
natives/ps4/character/enemy/em2000/em2090/em2100_body_albm.tex.6
natives/ps4/character/enemy/em2000/em2090/em2100_body_nrmr.tex.6
natives/ps4/character/enemy/em3000/em3000/em3000.mdf2.5
natives/ps4/character/enemy/em3000/em3000/em3000.mesh.31
natives/ps4/character/enemy/em3000/em3000/em3000_body_albm.tex.6
natives/ps4/character/enemy/em3000/em3000/em3000_body_atos.tex.6
natives/ps4/character/enemy/em3000/em3000/em3000_body_nrmr.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050.mdf2.5
natives/ps4/character/enemy/em3000/em3050/em3050.mesh.31
natives/ps4/character/enemy/em3000/em3050/em3050_destroy_albm.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_destroy_nrmr.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_face_albm.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_face_blend_atos.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_face_blend_nrmr.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_face_intensity_msk4.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_face_msk.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_face_nrmr.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_glass_albm.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_glass_nrmr.tex.6
natives/ps4/character/enemy/em3000/em3050/em3050_low.mesh.31
natives/ps4/character/enemy/em3000/em3050/em3050_rtt.rtex.4
natives/ps4/character/enemy/em3000/em3050/em3070_hair_albm.tex.6
natives/ps4/character/enemy/em3000/em3050/em3070_hair_atos.tex.6
natives/ps4/character/enemy/em3000/em3050/em3070_hair_nrmr.tex.6
natives/ps4/character/enemy/em5200/em5200/em5200_body_albm.tex.6
natives/ps4/character/enemy/em5200/em5200/em5200_body_nrmr.tex.6
natives/ps4/character/enemy/em5200/em5210/em5210.mdf2.5
natives/ps4/character/enemy/em5200/em5210/em5210.mesh.31
natives/ps4/character/enemy/em5200/em5210/em5210_albm.tex.6
natives/ps4/character/enemy/em5200/em5210/em5210_atos.tex.6
natives/ps4/character/enemy/em5200/em5210/em5210_nrmr.tex.6
natives/ps4/character/enemy/em5600/em5600/em5600.mdf2.5
natives/ps4/character/enemy/em5600/em5600/em5600.mesh.31
natives/ps4/character/enemy/em5600/em5600/em5600_body_albm.tex.6
natives/ps4/character/enemy/em5600/em5600/em5600_body_nrmr.tex.6
natives/ps4/character/enemy/em6200/em6200/em6200.mdf2.5
natives/ps4/character/enemy/em6200/em6200/em6200.mesh.31
natives/ps4/character/enemy/em6200/em6200/em6200_body_albm.tex.6
natives/ps4/character/enemy/em6200/em6200/em6200_body_nrmr.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250.mdf2.5
natives/ps4/character/enemy/em6200/em6250/em6250.mesh.31
natives/ps4/character/enemy/em6200/em6250/em6250_face_albm.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250_face_blend_atos.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250_face_blend_nrmr.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250_face_intensity_msk4.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250_face_nrmr.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250_hair_albm.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250_hair_atos.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250_hair_nrmr.tex.6
natives/ps4/character/enemy/em6200/em6250/em6250_low.mesh.31
natives/ps4/character/enemy/em6200/em6250/em6250_rtt.rtex.4
natives/ps4/character/enemy/em9200/em9200/em9200.clo.2016012500
natives/ps4/character/enemy/em9200/em9200/em9200.mdf2.5
natives/ps4/character/enemy/em9200/em9200/em9200.mesh.31
natives/ps4/character/enemy/em9200/em9200/em9200_body_alb.tex.6
natives/ps4/character/enemy/em9200/em9200/em9200_body_met.tex.6
natives/ps4/character/enemy/em9200/em9200/em9200_body_nrm.tex.6
natives/ps4/character/enemy/em9200/em9200/em9200_body_rgh.tex.6
natives/ps4/character/enemy/em9200/em9200/em9200_hand_alb.tex.6
natives/ps4/character/enemy/em9200/em9200/em9200_hand_met.tex.6
natives/ps4/character/enemy/em9200/em9200/em9200_hand_nrm.tex.6
natives/ps4/character/enemy/em9200/em9200/em9200_hand_rgh.tex.6
natives/ps4/character/enemy/em9200/em9200/em9200_sim.mdf2.5
natives/ps4/character/enemy/em9200/em9200/em9200_sim.mesh.31
natives/ps4/character/enemy/em9200/em9250/bh_human_eye_bm.tex.6
natives/ps4/character/enemy/em9200/em9250/em9250.mdf2.5
natives/ps4/character/enemy/em9200/em9250/em9250.mesh.31
natives/ps4/character/enemy/em9200/em9250/em9250_face_albm.tex.6
natives/ps4/character/enemy/em9200/em9250/em9250_face_blend_atos.tex.6
natives/ps4/character/enemy/em9200/em9250/em9250_face_blend_nrmr.tex.6
natives/ps4/character/enemy/em9200/em9250/em9250_face_intensity_msk4.tex.6
natives/ps4/character/enemy/em9200/em9250/em9250_face_msk.tex.6
natives/ps4/character/enemy/em9200/em9250/em9250_face_nrmr.tex.6
natives/ps4/character/enemy/em9200/em9250/em9250_low.mesh.31
natives/ps4/character/enemy/em9200/em9250/em9250_rtt.rtex.4
natives/ps4/character/enemy/em9200/em9250/em9270_hair_alba.tex.6
natives/ps4/character/enemy/em9200/em9250/em9270_hair_atos.tex.6
natives/ps4/character/enemy/em9200/em9250/em9270_hair_nrmr.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0000.mesh.31
natives/ps4/character/player/pl0000/pl0000/pl0000_body_albm.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0000_body_atos.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0000_body_nrmr.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0000_capsule.rbd.2015120900
natives/ps4/character/player/pl0000/pl0000/pl0000_l_leg_albm.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0000_l_leg_nrmr.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0010.mdf2.5
natives/ps4/character/player/pl0000/pl0000/pl0010.mesh.31
natives/ps4/character/player/pl0000/pl0000/pl0010_hand_atlas_albm.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0010_hand_atlas_nrmr.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0010_hand_intencity_msk4.tex.6
natives/ps4/character/player/pl0000/pl0000/pl0010_low.mesh.31
natives/ps4/character/player/pl0000/pl0000/pl0010_rtt.rtex.4
natives/ps4/character/player/pl0000/pl0000/pl0020.mdf2.5
natives/ps4/character/player/pl0000/pl0000/pl0020.mesh.31
natives/ps4/character/player/pl0000/pl0000/pl0020_low.mesh.31
natives/ps4/character/player/pl0000/pl0000/pl0020_rtt.rtex.4
natives/ps4/character/player/pl0000/pl0001/pl0001.mdf2.5
natives/ps4/character/player/pl0000/pl0001/pl0001.mesh.31
natives/ps4/character/player/pl0000/pl0002/pl0002.mdf2.5
natives/ps4/character/player/pl0000/pl0002/pl0002.mesh.31
natives/ps4/character/player/pl0000/pl0050/pl0050.mdf2.5
natives/ps4/character/player/pl0000/pl0050/pl0050.mesh.31
natives/ps4/character/player/pl0000/pl0050/pl0050_face_albm.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_face_blend_atos.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_face_blend_nrmr.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_face_intensity_msk4.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_face_msk.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_face_nrmr.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_hair_albm.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_hair_atos.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_hair_nrmr.tex.6
natives/ps4/character/player/pl0000/pl0050/pl0050_rtt.rtex.4
natives/ps4/character/player/pl3000/pl3000/em3010.mdf2.5
natives/ps4/character/player/pl3000/pl3000/em3020.mdf2.5
natives/ps4/character/player/pl3000/pl3000/pl3000_body_albm.tex.6
natives/ps4/character/player/pl3000/pl3000/pl3000_body_nrmr.tex.6
natives/ps4/character/player/pl3000/pl3000/pl3000_hand_atlas_albm.tex.6
natives/ps4/character/player/pl3000/pl3000/pl3000_hand_atlas_nrmr.tex.6
natives/ps4/character/player/pl3000/pl3000/pl3000_hand_intencity_msk4.tex.6
natives/ps4/character/player/pl3000/pl3000/pl3010.mesh.31
natives/ps4/character/player/pl3000/pl3000/pl3010_low.mesh.31
natives/ps4/character/player/pl3000/pl3000/pl3010_rtt.rtex.4
natives/ps4/character/player/pl3000/pl3000/pl3020.mesh.31
natives/ps4/character/player/pl3000/pl3000/pl3020_low.mesh.31
natives/ps4/character/player/pl3000/pl3000/pl3020_rtt.rtex.4
natives/ps4/character/player/pl3000/pl3001/pl3001.mdf2.5
natives/ps4/character/player/pl3000/pl3001/pl3001.mesh.31
natives/ps4/character/player/pl3000/pl3002/pl3002.mdf2.5
natives/ps4/character/player/pl3000/pl3002/pl3002.mesh.31
natives/ps4/character/player/pl3000/pl3050/pl3000_body_albm.tex.6
natives/ps4/character/player/pl3000/pl3050/pl3000_body_nrmr.tex.6
natives/ps4/character/player/pl3000/pl3050/pl3050.mdf2.5
natives/ps4/character/player/pl3000/pl3050/pl3050.mesh.31
natives/ps4/character/player/pl3000/pl3050/pl3050_face_albm.tex.6
natives/ps4/character/player/pl3000/pl3050/pl3050_face_nrmr.tex.6
natives/ps4/character/player/pl3000/pl3050/pl3050_hair_albm.tex.6
natives/ps4/character/textures/bh_eyeshadow_alba.tex.6
natives/ps4/character/textures/bh_human_eye_alb.tex.6
natives/ps4/character/textures/bh_human_eye_bm.tex.6
natives/ps4/collision/collider/enemy/em9200/em9200.rcol.2
natives/ps4/collision/collider/player/pl0000/pl0000.rcol.2
natives/ps4/collision/collider/weapon/defaultbullet.rcol.2
natives/ps4/collision/collider/weapon/wp0040/wp0040_axe.rcol.2
natives/ps4/collision/collisionfilter/ai/aimap.cfil.2
natives/ps4/collision/collisionfilter/effect/bulletdefault.cfil.2
natives/ps4/collision/collisionfilter/effect/effectdefault.cfil.2
natives/ps4/collision/collisionfilter/load/loadreceiver.cfil.2
natives/ps4/collision/collisionfilter/load/loadrequester.cfil.2
natives/ps4/collision/collisionfilter/press/press.cfil.2
natives/ps4/collision/collisionfilter/sensor/marker_player.cfil.2
natives/ps4/collision/collisionfilter/sensor/sensor_all.cfil.2
natives/ps4/collision/collisionfilter/sensor/sensor_player.cfil.2
natives/ps4/collision/collisionfilter/sound/soundposition.cfil.2
natives/ps4/collision/collisionfilter/sound/soundray.cfil.2
natives/ps4/collision/collisionfilter/sound/soundspace.cfil.2
natives/ps4/collision/collisionfilter/terrain/characterdefault.cfil.2
natives/ps4/collision/collisionfilter/terrain/terraindefault.cfil.2
natives/ps4/collision/collisionfilter/terrain/terrainempass.cfil.2
natives/ps4/collision/collisionfilter_sound/snd_collision_material_overwrite_emgravela.cmat.1
natives/ps4/collision/collisionfilter_sound/snd_collision_material_overwrite_emirona.cmat.1
natives/ps4/collision/collisionfilter_sound/snd_collision_material_overwrite_emwoodchipa.cmat.1
natives/ps4/collision/harawatacollision.cdef.1
natives/ps4/environment/enginecol/chapter1/c01_2f_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_3f_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_b1a_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_corridor01_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_corridor02_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_kitchen01_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_living01_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_outside10_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_outside11_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_outsideb_terrainsm.terr.2
natives/ps4/environment/enginecol/chapter1/c01_shadow01_terrainsm.terr.2
natives/ps4/environment/hkcol/chapter1/c01_2f.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/c01_3f.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/c01_3f_clothworld.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/c01_b1a.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/c01_corridor01.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/c01_corridor02.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/c01_corridor02_colthworld.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/c01_kitchen01.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/c01_living01.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/ch1_kitchen01.rbd.2015120900
natives/ps4/environment/hkcol/chapter1/dummy.mesh.31
natives/ps4/environment/hkcol/common/cube_y-1000.mesh.31
natives/ps4/environment/mesh/chapter1/c01_2f_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_2f_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_3f_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_3f_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_b1a.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_b1a.mesh.31
natives/ps4/environment/mesh/chapter1/c01_b1a_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_b1a_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_b1b.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_b1b.mesh.31
natives/ps4/environment/mesh/chapter1/c01_b1b_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_b1b_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_b1c.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_b1c.mesh.31
natives/ps4/environment/mesh/chapter1/c01_b1c_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_corridor01.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_corridor01.mesh.31
natives/ps4/environment/mesh/chapter1/c01_corridor01_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_corridor01_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_corridor02.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_corridor02.mesh.31
natives/ps4/environment/mesh/chapter1/c01_corridor02_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_corridor02_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_ffkitchen01_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_ffliving01_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_kitchen01.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_kitchen01.mesh.31
natives/ps4/environment/mesh/chapter1/c01_kitchen01_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_kitchen01_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_living01.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_living01.mesh.31
natives/ps4/environment/mesh/chapter1/c01_living01_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_living01_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_outside01.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_outside01.mesh.31
natives/ps4/environment/mesh/chapter1/c01_outside01_e.mcol.1
natives/ps4/environment/mesh/chapter1/c01_outside01_t.mcol.1
natives/ps4/environment/mesh/chapter1/c01_outside10.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_outside10.mesh.31
natives/ps4/environment/mesh/chapter1/c01_outside11.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_outside11.mesh.31
natives/ps4/environment/mesh/chapter1/c01_outsideb.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_outsideb.mesh.31
natives/ps4/environment/mesh/chapter1/c01_shadow01.mdf2.5
natives/ps4/environment/mesh/chapter1/c01_shadow01.mesh.31
natives/ps4/environment/textures/b1_brick03_test_albm.tex.6
natives/ps4/environment/textures/b1_brick03_test_nrmr.tex.6
natives/ps4/environment/textures/b1_ceiling01_test_albm.tex.6
natives/ps4/environment/textures/b1_ceiling01_test_nrmr.tex.6
natives/ps4/environment/textures/b1_debris01_test_albm.tex.6
natives/ps4/environment/textures/b1_debris01_test_nrmr.tex.6
natives/ps4/environment/textures/b1_fence01_test_albm.tex.6
natives/ps4/environment/textures/b1_fence01_test_nrmr.tex.6
natives/ps4/environment/textures/b1_fence02_test_albm.tex.6
natives/ps4/environment/textures/b1_fence02_test_nrmr.tex.6
natives/ps4/environment/textures/b1_floor01_test_albm.tex.6
natives/ps4/environment/textures/b1_floor01_test_nrmr.tex.6
natives/ps4/environment/textures/b1_foundation01_test_albm.tex.6
natives/ps4/environment/textures/b1_foundation01_test_nrmr.tex.6
natives/ps4/environment/textures/b1_metalfence01_test_albm.tex.6
natives/ps4/environment/textures/b1_metalfence01_test_nrmr.tex.6
natives/ps4/environment/textures/b1_pillar01_test_albm.tex.6
natives/ps4/environment/textures/b1_pillar01_test_nrmr.tex.6
natives/ps4/environment/textures/b1_pillar02_test_albm.tex.6
natives/ps4/environment/textures/b1_pillar02_test_nrmr.tex.6
natives/ps4/environment/textures/b1_pipe01_test_albm.tex.6
natives/ps4/environment/textures/b1_pipe01_test_nrmr.tex.6
natives/ps4/environment/textures/b1_pipe02_test_albm.tex.6
natives/ps4/environment/textures/b1_pipe02_test_nrmr.tex.6
natives/ps4/environment/textures/b1_surgicaltool01_albm.tex.6
natives/ps4/environment/textures/b1_surgicaltool01_nrmr.tex.6
natives/ps4/environment/textures/b1_surgicaltool02_albm.tex.6
natives/ps4/environment/textures/b1_surgicaltool02_nrmr.tex.6
natives/ps4/environment/textures/b1_wall01_test_albm.tex.6
natives/ps4/environment/textures/b1_wall01_test_nrmr.tex.6
natives/ps4/environment/textures/c01000_bathpipe01_albm.tex.6
natives/ps4/environment/textures/c01000_bathpipe01_nrmr.tex.6
natives/ps4/environment/textures/c01000_ceiling01_nrmr.tex.6
natives/ps4/environment/textures/c01000_ceiling_albm.tex.6
natives/ps4/environment/textures/c01000_ceiling_nrmr.tex.6
natives/ps4/environment/textures/c01000_corridor01_atos.tex.6
natives/ps4/environment/textures/c01000_corridor02_atos.tex.6
natives/ps4/environment/textures/c01000_dirt01_albm.tex.6
natives/ps4/environment/textures/c01000_dirt01_atos.tex.6
natives/ps4/environment/textures/c01000_dirt01_nrmr.tex.6
natives/ps4/environment/textures/c01000_doorjamb01_albm.tex.6
natives/ps4/environment/textures/c01000_doorjamb01_nrmr.tex.6
natives/ps4/environment/textures/c01000_doorjamb02_albm.tex.6
natives/ps4/environment/textures/c01000_doorjamb02_nrmr.tex.6
natives/ps4/environment/textures/c01000_handrail01_albm.tex.6
natives/ps4/environment/textures/c01000_handrail01_nrmr.tex.6
natives/ps4/environment/textures/c01000_kitchen01_atos.tex.6
natives/ps4/environment/textures/c01000_livingbrickwall01_albm.tex.6
natives/ps4/environment/textures/c01000_livingbrickwall01_nrmr.tex.6
natives/ps4/environment/textures/c01000_livingfireplace01_albm.tex.6
natives/ps4/environment/textures/c01000_livingfireplace01_nrmr.tex.6
natives/ps4/environment/textures/c01000_livingfireplace02_albm.tex.6
natives/ps4/environment/textures/c01000_livingfireplace02_nrmr.tex.6
natives/ps4/environment/textures/c01000_livinginternalwall01_albm.tex.6
natives/ps4/environment/textures/c01000_livinginternalwall01_nrmr.tex.6
natives/ps4/environment/textures/c01000_livinginternalwall02_albm.tex.6
natives/ps4/environment/textures/c01000_livinginternalwall02_nrmr.tex.6
natives/ps4/environment/textures/c01000_livingwall_albm.tex.6
natives/ps4/environment/textures/c01000_livingwall_nrmr.tex.6
natives/ps4/environment/textures/c01000_spiderweb01_albm.tex.6
natives/ps4/environment/textures/c01000_spiderweb01_atos.tex.6
natives/ps4/environment/textures/c01000_stairs01_albm.tex.6
natives/ps4/environment/textures/c01000_stairs01_nrmr.tex.6
natives/ps4/environment/textures/c01000_wainscoting01_albm.tex.6
natives/ps4/environment/textures/c01000_wainscoting01_nrmr.tex.6
natives/ps4/environment/textures/c01000_wallcorridor02_albm.tex.6
natives/ps4/environment/textures/c01000_wallcorridor02_nrmr.tex.6
natives/ps4/environment/textures/c01000_wallkitchen01_albm.tex.6
natives/ps4/environment/textures/c01000_wallkitchen01_nrmr.tex.6
natives/ps4/environment/textures/c01000_woodfloor02_albm.tex.6
natives/ps4/environment/textures/c01000_woodfloor02_nrmr.tex.6
natives/ps4/environment/textures/c01000_woodfloor04_albm.tex.6
natives/ps4/environment/textures/c01000_woodfloor04_nrmr.tex.6
natives/ps4/environment/textures/c01000_woodfloor10_albm.tex.6
natives/ps4/environment/textures/c01000_woodfloor10_nrmr.tex.6
natives/ps4/environment/textures/c01000ceiling_albm.tex.6
natives/ps4/environment/textures/c01000ceiling_nrmr.tex.6
natives/ps4/environment/textures/c01000coad_albm.tex.6
natives/ps4/environment/textures/c01000coad_nrmr.tex.6
natives/ps4/environment/textures/c01000concretewall_albm.tex.6
natives/ps4/environment/textures/c01000concretewall_nrmr.tex.6
natives/ps4/environment/textures/c01000corrider3f_albm.tex.6
natives/ps4/environment/textures/c01000corrider3f_nrmr.tex.6
natives/ps4/environment/textures/c01000livinginternalwall01_albm.tex.6
natives/ps4/environment/textures/c01000livinginternalwall01_nrmr.tex.6
natives/ps4/environment/textures/c01000livinginternalwall02_albm.tex.6
natives/ps4/environment/textures/c01000livinginternalwall02_nrmr.tex.6
natives/ps4/environment/textures/c01000livingwall02_albm.tex.6
natives/ps4/environment/textures/c01000livingwall02_nrmr.tex.6
natives/ps4/environment/textures/c01000livingwall_albm.tex.6
natives/ps4/environment/textures/c01000livingwall_nrmr.tex.6
natives/ps4/environment/textures/c01000mainfloor_albm.tex.6
natives/ps4/environment/textures/c01000mainfloor_nrmr.tex.6
natives/ps4/environment/textures/c01000pipu_albm.tex.6
natives/ps4/environment/textures/c01000pipu_nrmr.tex.6
natives/ps4/environment/textures/c01000plug_albm.tex.6
natives/ps4/environment/textures/c01000plug_atos.tex.6
natives/ps4/environment/textures/c01000plug_nrmr.tex.6
natives/ps4/environment/textures/c01000rubble_albm.tex.6
natives/ps4/environment/textures/c01000rubble_nrmr.tex.6
natives/ps4/environment/textures/c01000tile_albm.tex.6
natives/ps4/environment/textures/c01000tile_nrmr.tex.6
natives/ps4/environment/textures/c01000woodwindow_albm.tex.6
natives/ps4/environment/textures/c01000woodwindow_nrmr.tex.6
natives/ps4/environment/textures/c01_ground00_albm.tex.6
natives/ps4/environment/textures/c01_ground00_nrmr.tex.6
natives/ps4/environment/textures/c01_ground01_albm.tex.6
natives/ps4/environment/textures/c01_ground01_nrmr.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutbrickwall01_albm.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutbrickwall01_nrmr.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutframe01_albm.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutframe01_atos.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutframe01_nrmr.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutleaf01_albm.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutleaf01_atos.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutleaf01_nrmr.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutplant01_albm.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutplant01_atos.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutplant01_nrmr.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutroof01_albm.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutroof01_nrmr.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutwall01_albm.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutwall01_atos.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutwall01_nrmr.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutwood01_albm.tex.6
natives/ps4/environment/textures/c01_guesthouseoutsideoutwood01_nrmr.tex.6
natives/ps4/environment/textures/c01_plantsboard_albm.tex.6
natives/ps4/environment/textures/c01_plantsboard_atos.tex.6
natives/ps4/environment/textures/c01_plantsboard_nrmr.tex.6
natives/ps4/environment/textures/c03_rightareablood01_albm.tex.6
natives/ps4/environment/textures/c03_rightareablood01_atos.tex.6
natives/ps4/environment/textures/c03_rightareablood01_nrmr.tex.6
natives/ps4/environment/textures/c03_rightareablood02_albm.tex.6
natives/ps4/environment/textures/c03_rightareablood02_atos.tex.6
natives/ps4/environment/textures/c03_rightareablood02_nrmr.tex.6
natives/ps4/environment/textures/c1000floor_albm.tex.6
natives/ps4/environment/textures/c1000floor_nrmr.tex.6
natives/ps4/environment/textures/openingtest_hako01_albm.tex.6
natives/ps4/environment/textures/sm0182_light01a_a_albm.tex.6
natives/ps4/environment/textures/sm0182_light01a_a_atos.tex.6
natives/ps4/environment/textures/sm0182_light01a_b_albm.tex.6
natives/ps4/environment/textures/sm0182_light01a_b_nrmr.tex.6
natives/ps4/leveldesign/flag/chapter7/chapter7_1/c07_1_flag.uvar.2
natives/ps4/leveldesign/flag/chapter7/chapter7_1/c07_1_main_flag.uvar.2
natives/ps4/leveldesign/flag/chapter7/chapter7_2/c07_2_flag.uvar.2
natives/ps4/leveldesign/flag/chapter7/chapter7_2/c07_2_main_flag.uvar.2
natives/ps4/leveldesign/flag/chapter7/chapter7_3/c07_3_main_flag.uvar.2
natives/ps4/leveldesign/flag/chapter7/chapter7_4/c07_4_flag.uvar.2
natives/ps4/leveldesign/flag/chapter7/chapter7_4/c07_4_main_flag.uvar.2
natives/ps4/leveldesign/flag/chapter8/c08_flag.uvar.2
natives/ps4/leveldesign/flag/chapter8/c08_main_flag.uvar.2
natives/ps4/leveldesign/fsm/chapter1/mainflow/fsm_andreblood.fsm.12
natives/ps4/leveldesign/fsm/ff000/ff000_mainflow.fsm.12
natives/ps4/leveldesign/fsm/ff000/mainflow/fsm_clancyhandlightoff.fsm.12
natives/ps4/leveldesign/fsm/ff000/mainflow/fsm_clancyhandlighton.fsm.12
natives/ps4/leveldesign/fsm/ff000/mainflow/fsm_endchapterjump.fsm.12
natives/ps4/leveldesign/fsm/ff000/mainflow/fsm_livingsecretdoorslowopen.fsm.12
natives/ps4/leveldesign/fsm/ff000/mainflow/fsm_petestoveswitchon.fsm.12
natives/ps4/leveldesign/fsm/ff000/npc/em9200_100_main.fsm.12
natives/ps4/leveldesign/fsm/ff000/npc/em9200_300_main.fsm.12
natives/ps4/leveldesign/fsm/ff000/npc/em9200_400_collider.fsm.12
natives/ps4/leveldesign/fsm/ff000/npc/em9200_400_main.fsm.12
natives/ps4/leveldesign/fsm/ff000/other/fsm_videocamerauidisp.fsm.12
natives/ps4/leveldesign/fsm/ff000/other/fsm_videocamerauidisp.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_activateobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_activateobject.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_activateobject_activateobject_activateobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_activateobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_activateobject.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_activateobject_activateobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_activateobject_activateobject.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_activateobject_colliderenable.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_activateobject_colliderenable.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_fsmstateset.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_fsmstateset.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_setbool.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_setbool.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_setstatesoundobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_setstatesoundobject.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_wait_setstatesoundobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstatecheck_wait_setstatesoundobject.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstateset.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_fsmstateset.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_gameeventset.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_gameeventset.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_interacttest_startplaysoundobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_interacttest_stopplaysoundobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_itemtest_setbool.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_itemtest_setbool.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_playeraction_single.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_playeraction_single.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_reqtimelinekicker.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_reqtimelinekicker.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_setflag_setbool.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_setflag_setbool.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_triggerinaction_fsmstateset.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_triggerinaction_fsmstateset.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_triggerinaction_gameeventset.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_triggerinaction_gameeventset.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_triggerinaction_setbool.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_triggerinaction_setbool.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_triggerinaction_startplaysoundobject.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_triggerinaction_startplaysoundobject.pfb.11
natives/ps4/leveldesign/fsm/template/tempfsm_waitnpceventend_setbool.fsm.12
natives/ps4/leveldesign/fsm/template/tempfsm_waitnpceventend_setbool.pfb.11
natives/ps4/leveldesign/prefab/ff_filtertimeline/ff_filtertimelinekick.pfb.11
natives/ps4/light/clip/c01e00_00/lightsetevent_c01e00_00.pfb.11
natives/ps4/light/clip/c01e01_00/lightsetevent_c01e01_00.pfb.11
natives/ps4/light/clip/c01f01_00/c01f01_00_camera.tml.11
natives/ps4/light/clip/c01f04_00/c01f04_00_camera.tml.11
natives/ps4/light/clip/ff000/handlight_ff000_01.tml.11
natives/ps4/light/clip/ff000/handlight_ff000_01_tml.pfb.11
natives/ps4/light/clip/ff000/handlight_ff000_02.tml.11
natives/ps4/light/clip/ff000/handlight_ff000_02_tml.pfb.11
natives/ps4/light/clip/post/dof/dofsettings_ff000.tml.11
natives/ps4/light/clip/post/fog_heightfalloff_c01_dusk_inside.tml.11
natives/ps4/light/clip/post/fog_heightfalloff_c01_dusk_inside_tml.pfb.11
natives/ps4/light/clip/post/fog_heightfalloff_ff000.pfb.11
natives/ps4/light/clip/post/fog_heightfalloff_ff000.tml.11
natives/ps4/light/clip/post/post_c01_aa.tml.11
natives/ps4/light/clip/post/psychostimulant_container.pfb.11
natives/ps4/light/clip/post/psychostimulant_end.pfb.11
natives/ps4/light/clip/post/psychostimulant_end.tml.11
natives/ps4/light/clip/post/psychostimulant_start.pfb.11
natives/ps4/light/clip/post/psychostimulant_start.tml.11
natives/ps4/light/clip/post/retrofilm/retrofilm.tml.11
natives/ps4/light/clip/props/tv_noise_ver1.tml.11
natives/ps4/light/ies/flash_light/flashlight_01.ies.2
natives/ps4/light/ies/flash_light/flashlight_02.ies.2
natives/ps4/light/ies/room_light/room_22.ies.2
natives/ps4/light/localcubemap/c01_ev4/common/1f/c01_living01_01.tex.6
natives/ps4/light/localcubemap/c01_ev4/common/1f/c01_living01_02.tex.6
natives/ps4/light/localcubemap/c01_ev4/common/b1f/c01_b1a_01.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/1f/c01_corridor01_01.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/1f/c01_corridor01_02.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/1f/c01_corridor02_01.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/1f/c01_corridor02_02.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/1f/c01_corridor02_03.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/1f/c01_kitchen01_01.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/1f/c01_kitchen01_02.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/2f/c01_2f_01_01.tex.6
natives/ps4/light/localcubemap/c01_ev4/day/2f/c01_2f_01_02.tex.6
natives/ps4/light/localcubemap/c01_ev4/night/3f/c01_3f_localcubemap_00.tex.6
natives/ps4/light/localcubemap/c01_ev4/night/3f/c01_3f_localcubemap_01.tex.6
natives/ps4/light/localcubemap/c01_ev4/night/3f/c01_3f_localcubemap_02.tex.6
natives/ps4/light/localcubemap/c01_ev4/night/3f/c01_3f_localcubemap_03.tex.6
natives/ps4/light/localcubemap/c01_ev4/night/3f/c01_3f_localcubemap_04.tex.6
natives/ps4/light/localcubemap/ff000/common/1f/c01_corridor01_01.tex.6
natives/ps4/light/localcubemap/ff000/common/1f/c01_corridor01_02.tex.6
natives/ps4/light/localcubemap/ff000/common/1f/c01_corridor02_01.tex.6
natives/ps4/light/localcubemap/ff000/common/1f/c01_corridor02_02.tex.6
natives/ps4/light/localcubemap/ff000/common/1f/c01_corridor02_03.tex.6
natives/ps4/light/localcubemap/ff000/common/1f/c01_living01_01.tex.6
natives/ps4/light/localcubemap/ff000/common/1f/c01_living01_02.tex.6
natives/ps4/light/localcubemap/ff000/common/1f/c01_living01_03.tex.6
natives/ps4/light/localcubemap/ff000/common/2f/c01_2f_01_01.tex.6
natives/ps4/light/localcubemap/ff000/common/b1f/c01_b1a_01.tex.6
natives/ps4/light/localcubemap/ff000/common/b1f/c01_b1b_02.tex.6
natives/ps4/light/localcubemap/ff000/common/outside/c01_outside01_01.tex.6
natives/ps4/light/localcubemap/ff000/common/outside/c01_outside01_02.tex.6
natives/ps4/light/localcubemap/ff000/common/outside/c01_outside01_03.tex.6
natives/ps4/light/localcubemap/ff000/common/outside/c01_outside01_04.tex.6
natives/ps4/light/localcubemap/ff000/night/1f/c01_kitchen01_01.tex.6
natives/ps4/light/localcubemap/ff000/night/1f/c01_kitchen01_02.tex.6
natives/ps4/light/mesh/c01/ff000_occ.mesh.31
natives/ps4/light/mesh/c01/occ.mesh.31
natives/ps4/light/prefab/common/death_end.pfb.11
natives/ps4/light/prefab/common/death_end_02.pfb.11
natives/ps4/light/prefab/common/death_loop.pfb.11
natives/ps4/light/prefab/common/death_start.pfb.11
natives/ps4/light/prefab/common/death_start_fov.pfb.11
natives/ps4/light/prefab/lights/ld65k/m810lma_point.pfb.11
natives/ps4/light/prefab/lights/ld65k__spot/m1500lm_spot.pfb.11
natives/ps4/light/prefab/lights/lookdeved/m1500lm_pointspot3.pfb.11
natives/ps4/light/prefab/lights/lookdeved/m810lma_point.pfb.11
natives/ps4/light/prefab/lights/lookdeved/m810lmb_point.pfb.11
natives/ps4/light/prefab/lights/lookdeved/m810lmc_point.pfb.11
natives/ps4/light/prefab/lights/lookdeved/p500lm_point.pfb.11
natives/ps4/light/prefab/lights/lookdeved__spot/m810lmb_spot.pfb.11
natives/ps4/light/prefab/lights/lookdeved_fluorescent/flu7200k520lm_point.pfb.11
natives/ps4/light/prefab/lights/lookdeved_fluorescent/flu7200k520lm_spot.pfb.11
natives/ps4/light/prefab/lights/lookdeved_tv/tv01_spot.pfb.11
natives/ps4/light/prefab/lights/nighteyes/point_nighteyes_01.pfb.11
natives/ps4/light/prefab/lights/nighteyes/spot_nighteyes_01.pfb.11
natives/ps4/light/prefab/lights/sun_dusk01/sun_spot.pfb.11
natives/ps4/light/prefab/lightshaft/lightshaft_.pfb.11
natives/ps4/light/probe/aaa_ambassadortrial_tu/common/b1f/probe_b1_all.lprb.2
natives/ps4/light/probe/aaa_ambassadortrial_tu/common/c01_3f_all_tu2.lprb.2
natives/ps4/light/probe/aaa_ambassadortrial_tu/day/c01_1f_dusknewarea.lprb.2
natives/ps4/light/probe/aaa_ambassadortrial_tu/day/c01_corridor03_01.lprb.2
natives/ps4/light/probe/c01_ev4/common/1f/c01_living01_01.lprb.2
natives/ps4/light/probe/c01_ev4/common/b1f/probe_b1a.lprb.2
natives/ps4/light/probe/c01_ev4/day/1f/c01_corridor01_01.lprb.2
natives/ps4/light/probe/c01_ev4/day/1f/c01_corridor02_01.lprb.2
natives/ps4/light/probe/c01_ev4/day/1f/c01_corridor02_02.lprb.2
natives/ps4/light/probe/c01_ev4/day/1f/c01_corridor02_03.lprb.2
natives/ps4/light/probe/c01_ev4/day/1f/c01_kitchen01_01.lprb.2
natives/ps4/light/probe/c01_ev4/day/2f/c01_2f_01.lprb.2
natives/ps4/light/probe/c01_ev4/day/2f/c01_2f_02.lprb.2
natives/ps4/light/probe/c01_ev4/night/1f/c01_bathroom01_01.lprb.2
natives/ps4/light/probe/c01_ev4/night/1f/c01_corridor03_01.lprb.2
natives/ps4/light/probe/c01_ev4/night/1f/c01_corridor03_01_thunder.lprb.2
natives/ps4/light/probe/c01_ev4/night/1f/c01_storeroom01_01.lprb.2
natives/ps4/light/probe/c01_ev4/night/3f/c01_3f_01.lprb.2
natives/ps4/light/probe/c01_ev4/night/3f/c01_3f_02.lprb.2
natives/ps4/light/probe/c01_ev4/night/3f/c01_3f_03.lprb.2
natives/ps4/light/probe/c01_ev4/night/3f/c01_3f_04.lprb.2
natives/ps4/light/probe/c01_ev4/night/3f/c01_3f_05.lprb.2
natives/ps4/light/probe/c01_ev4/probe_network_500_merged.prb.3
natives/ps4/light/probe/ff000/c01_all.prb.3
natives/ps4/light/probe/ff000/common/1f/c01_corridor01_01.lprb.2
natives/ps4/light/probe/ff000/common/1f/c01_corridor02_01.lprb.2
natives/ps4/light/probe/ff000/common/1f/c01_corridor02_02.lprb.2
natives/ps4/light/probe/ff000/common/1f/c01_corridor02_03.lprb.2
natives/ps4/light/probe/ff000/common/1f/c01_kitchen01_01.lprb.2
natives/ps4/light/probe/ff000/common/1f/c01_living01_01.lprb.2
natives/ps4/light/probe/ff000/common/1f/c01_living01_02.lprb.2
natives/ps4/light/probe/ff000/common/2f/c01_2f_01.lprb.2
natives/ps4/light/probe/ff000/common/2f/c01_2f_02.lprb.2
natives/ps4/light/probe/ff000/common/b1f/probe_b1a.lprb.2
natives/ps4/light/probe/ff000/common/b1f/probe_b1b.lprb.2
natives/ps4/light/probe/ff000/common/outside/outside_01.lprb.2
natives/ps4/light/probe/ff000/common/outside/outside_03.lprb.2
natives/ps4/light/probe/ff000/common/outside/outside_06.lprb.2
natives/ps4/light/scene/chapter1/common/lightsetcommon_c01_living01.scn.14
natives/ps4/light/scene/chapter1/common/lightsetcommon_c01_zone.scn.14
natives/ps4/light/scene/chapter1/day/lightsetcommon_c01_2f.scn.14
natives/ps4/light/scene/chapter1/day/lightsetday_c01_ibl.scn.14
natives/ps4/light/scene/chapter1/day/lightsetday_c01_zone.scn.14
natives/ps4/light/sky/c01_dusk3.tex.6
natives/ps4/light/sky/c01_night.tex.6
natives/ps4/light/textures/multizonemetering_001.tex.6
natives/ps4/light/timeline/common/death_end_02_timeline.tml.11
natives/ps4/light/timeline/common/death_end_timeline.tml.11
natives/ps4/light/timeline/common/death_loop_timeline.tml.11
natives/ps4/light/timeline/common/death_start_fov_timeline.tml.11
natives/ps4/light/timeline/common/death_start_timeline.tml.11
natives/ps4/light/timeline/damage_bleeding.tml.11
natives/ps4/light/timeline/damage_bleeding_blur.tml.11
natives/ps4/light/timeline/damage_echo_finish.tml.11
natives/ps4/light/timeline/damage_echo_start.tml.11