-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresfileindex_Windows.txt
More file actions
3084 lines (3084 loc) · 525 KB
/
resfileindex_Windows.txt
File metadata and controls
3084 lines (3084 loc) · 525 KB
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
res:/graphics/effect.dx11/managed/interior/avatar/apexlodskinningvsonly.sm_depth,8c/8c084d5b9f06c7fe_c034b3972acc4e7ce8d2fd1ef98452dc,c034b3972acc4e7ce8d2fd1ef98452dc,3362,1195
res:/graphics/effect.dx11/managed/interior/avatar/apexlodskinningvsonly.sm_hi,08/080b89dfcb93556e_efc6e4570cbc3fd093eaef8b038cfefb,efc6e4570cbc3fd093eaef8b038cfefb,3362,1196
res:/graphics/effect.dx11/managed/interior/avatar/apexlodskinningvsonly.sm_lo,08/080b85dfcb934e54_c5d92804e0e2aaeca2bf9e962b9905b8,c5d92804e0e2aaeca2bf9e962b9905b8,3362,1196
res:/graphics/effect.dx11/managed/interior/avatar/auraavatar.sm_depth,df/dfda75097b12d987_0b1a8e22a2e28bcaa60b70725df9687d,0b1a8e22a2e28bcaa60b70725df9687d,4236,1456
res:/graphics/effect.dx11/managed/interior/avatar/auraavatar.sm_hi,e1/e19e9b9599a668f1_1b7e93c61f327dfa06a068cbd03ce958,1b7e93c61f327dfa06a068cbd03ce958,4236,1456
res:/graphics/effect.dx11/managed/interior/avatar/auraavatar.sm_lo,e1/e19e9f9599a66f0b_d76446e634e0d15a614077827dbe8800,d76446e634e0d15a614077827dbe8800,4236,1458
res:/graphics/effect.dx11/managed/interior/avatar/auraavatar2.sm_depth,97/97e37bab4e8014ef_0d625aa845eac309744acd1a586c1dc8,0d625aa845eac309744acd1a586c1dc8,4681,1560
res:/graphics/effect.dx11/managed/interior/avatar/auraavatar2.sm_hi,99/9949105be5127b99_e83fc575d5ed582a81ad33c2c5be4945,e83fc575d5ed582a81ad33c2c5be4945,4681,1559
res:/graphics/effect.dx11/managed/interior/avatar/auraavatar2.sm_lo,99/9949145be51282d3_84f06db524943200527c668228ade95f,84f06db524943200527c668228ade95f,4681,1561
res:/graphics/effect.dx11/managed/interior/avatar/avatar.sm_depth,2c/2c4278d99f850ffc_c9afee2561218b92ca974f6baf695322,c9afee2561218b92ca974f6baf695322,10162,3086
res:/graphics/effect.dx11/managed/interior/avatar/avatar.sm_hi,03/03e0d79b0b37d7b0_3f7d0efd7804211f22a6a4f5c32ec91a,3f7d0efd7804211f22a6a4f5c32ec91a,10162,3084
res:/graphics/effect.dx11/managed/interior/avatar/avatar.sm_lo,03/03e0db9b0b37deca_8d0213cf2a541810962bd91f00b85e0a,8d0213cf2a541810962bd91f00b85e0a,9514,2925
res:/graphics/effect.dx11/managed/interior/avatar/avatarbrdfcombined.sm_depth,f8/f865552b610b6071_5c5d463ddc984f35bc98252ce9a12a61,5c5d463ddc984f35bc98252ce9a12a61,11344,3340
res:/graphics/effect.dx11/managed/interior/avatar/avatarbrdfcombined.sm_hi,52/528b054140c6de0f_ec5453f4d7e39ccd127db925aa383993,ec5453f4d7e39ccd127db925aa383993,11344,3341
res:/graphics/effect.dx11/managed/interior/avatar/avatarbrdfcombined.sm_lo,52/528b094140c6e55d_2882f175d42b738d589403ec48cf69e9,2882f175d42b738d589403ec48cf69e9,9987,3011
res:/graphics/effect.dx11/managed/interior/avatar/avatarbrdfcombined_detailed.sm_depth,df/dfe67c1b800e651a_7fba53924bc7dde4817b07f2d7bacc5d,7fba53924bc7dde4817b07f2d7bacc5d,11700,3448
res:/graphics/effect.dx11/managed/interior/avatar/avatarbrdfcombined_detailed.sm_hi,bf/bf9a510efae5a39a_3758e8b4ce9b725134888ce493de0704,3758e8b4ce9b725134888ce493de0704,11700,3447
res:/graphics/effect.dx11/managed/interior/avatar/avatarbrdfcombined_detailed.sm_lo,bf/bf9a550efae5aad0_17fb904965805af9146d5702e0fd7ae2,17fb904965805af9146d5702e0fd7ae2,11700,3448
res:/graphics/effect.dx11/managed/interior/avatar/avatarcombined.sm_depth,c7/c7f62001327c96fb_243d593792b2acb62ae0b9a1d58f6dca,243d593792b2acb62ae0b9a1d58f6dca,10644,3222
res:/graphics/effect.dx11/managed/interior/avatar/avatarcombined.sm_hi,5d/5d89276f57e5f365_dd0975f7fb1c2dcf0491be29235f3e49,dd0975f7fb1c2dcf0491be29235f3e49,10644,3222
res:/graphics/effect.dx11/managed/interior/avatar/avatarcombined.sm_lo,5d/5d89236f57e5ec2f_0486f57746eae8145010afe700a71831,0486f57746eae8145010afe700a71831,10036,3017
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar.sm_depth,51/51aed5d96285af86_dcdd765d75c191ad92261475576bd4fe,dcdd765d75c191ad92261475576bd4fe,12441,3772
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar.sm_hi,e9/e9a3dc8456acd6d6_7e105f135e54dbfd0187174546d78623,7e105f135e54dbfd0187174546d78623,12441,3773
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar.sm_lo,e9/e9a3d88456accf9c_bc8c83fe7407b19746436e7294d54a7f,bc8c83fe7407b19746436e7294d54a7f,11187,3501
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair.sm_depth,18/1858a7ef6c35365e_61604e6824366c33d961a48e89b42233,61604e6824366c33d961a48e89b42233,13642,3692
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair.sm_hi,ec/ec3b8bbe1b0f324e_7b6cc37c191ab010dd9cb0735050fc1c,7b6cc37c191ab010dd9cb0735050fc1c,13642,3693
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair.sm_lo,ec/ec3b87be1b0f2b34_f641e9854bb2ef6ea3c77500c792a0da,f641e9854bb2ef6ea3c77500c792a0da,12285,3365
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair_detailed.sm_depth,23/23017d052c9e9047_67cab9d5740020bce2b515af99f38cb8,67cab9d5740020bce2b515af99f38cb8,19826,3763
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair_detailed.sm_hi,b6/b6894f82be53d4b1_c3fe4143881c574118db7043af4c1dda,c3fe4143881c574118db7043af4c1dda,19826,3760
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair_detailed.sm_lo,b6/b6895382be53dbcb_9f232f6e417961ee27f68726209b4732,9f232f6e417961ee27f68726209b4732,19826,3762
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair_detailed_dxt5n.sm_depth,6e/6e05a9b812cd42f3_d90c8dbaa15e206f338e3f07de098b3f,d90c8dbaa15e206f338e3f07de098b3f,19826,3762
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair_detailed_dxt5n.sm_hi,3e/3e31bd95b30c209d_f7668927407fb05da448d24b067b6c46,f7668927407fb05da448d24b067b6c46,19826,3760
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarhair_detailed_dxt5n.sm_lo,3e/3e31b995b30c1a47_22741c6c8502a90e4e193e27f42ab92a,22741c6c8502a90e4e193e27f42ab92a,19826,3760
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarlinear.sm_depth,bf/bf400b399cc222fb_5d711bbca58fa19ef3bc240b9769d024,5d711bbca58fa19ef3bc240b9769d024,12545,3806
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarlinear.sm_hi,82/8208a63039469765_236bd460865168f6b6a4f09427026c95,236bd460865168f6b6a4f09427026c95,12545,3804
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarlinear.sm_lo,82/8208a2303946902f_115a20e48116603411380a9a58018ccc,115a20e48116603411380a9a58018ccc,11291,3537
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarlinear_dxt5n.sm_depth,f1/f1f8f70910d9067f_a6ebb170db5043916252b895ef390f92,a6ebb170db5043916252b895ef390f92,12545,3780
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarlinear_dxt5n.sm_hi,57/579ffe602e846f49_4e10d6c6030a4e3118869a9ccf495804,4e10d6c6030a4e3118869a9ccf495804,12545,3782
res:/graphics/effect.dx11/managed/interior/avatar/clothavatarlinear_dxt5n.sm_lo,57/57a002602e847583_12671e3bfc5170f99103388f136db167,12671e3bfc5170f99103388f136db167,11291,3544
res:/graphics/effect.dx11/managed/interior/avatar/clothavatartrans.sm_depth,c0/c0706294d5127db4_71e5350f08e6eda4dd8a648e47b2c125,71e5350f08e6eda4dd8a648e47b2c125,11413,3452
res:/graphics/effect.dx11/managed/interior/avatar/clothavatartrans.sm_hi,b6/b6842a91f0a96628_f94fb7d855b697ee84d4319b7d9018d4,f94fb7d855b697ee84d4319b7d9018d4,11413,3454
res:/graphics/effect.dx11/managed/interior/avatar/clothavatartrans.sm_lo,b6/b6842e91f0a96d62_9d38e6b90841145466d21d30c5c1dc50,9d38e6b90841145466d21d30c5c1dc50,10143,3192
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar_detailed.sm_depth,a5/a54a41f241a44f6f_0c4a11379a85ba68efd4886f76ed34dd,0c4a11379a85ba68efd4886f76ed34dd,12383,3750
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar_detailed.sm_hi,aa/aacea86a453d2b19_d26f89af7b3c38fcb9ab40144098ea2d,d26f89af7b3c38fcb9ab40144098ea2d,12383,3750
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar_detailed.sm_lo,aa/aaceac6a453d3253_f1fabd61a77882e9df7f93b0769fca1c,f1fabd61a77882e9df7f93b0769fca1c,11129,3482
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar_prepass.sm_depth,c8/c85105dc48b650ed_59b57cc6259e477b4ffdb7fc961571c9,59b57cc6259e477b4ffdb7fc961571c9,7008,2322
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar_prepass.sm_hi,50/509657c95fbab12b_b7a834fbf84756f004de3b74152238f0,b7a834fbf84756f004de3b74152238f0,7008,2323
res:/graphics/effect.dx11/managed/interior/avatar/clothavatar_prepass.sm_lo,50/509653c95fbaaa19_53ec7c001be51e0dd91a0358f4f7f467,53ec7c001be51e0dd91a0358f4f7f467,7008,2324
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader.sm_depth,6b/6b4584a6616745bb_1a7f72706c98001c4e6569c0a608e54e,1a7f72706c98001c4e6569c0a608e54e,34314,5111
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader.sm_hi,05/05a2631b83f33125_b5a88ba57ce7b54329a89a7e4255e663,b5a88ba57ce7b54329a89a7e4255e663,34314,5112
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader.sm_lo,05/05a25f1b83f32aef_fbcf379035c9503d69ca64c56b6a748e,fbcf379035c9503d69ca64c56b6a748e,34314,5112
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_dxt5n.sm_depth,80/800c698b859fa4bf_a09eb955fe30e2835e93253473e37965,a09eb955fe30e2835e93253473e37965,34314,5069
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_dxt5n.sm_hi,04/04ede53000ca0189_afc757cc398307f55261b5fc3f27aac3,afc757cc398307f55261b5fc3f27aac3,34314,5070
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_dxt5n.sm_lo,04/04ede93000ca08c3_306673e4761d75e92b667ad7429eda04,306673e4761d75e92b667ad7429eda04,34314,5070
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_fast.sm_depth,f0/f099b429c1663566_eea6d00e678791fe93b20c5c79fc6a38,eea6d00e678791fe93b20c5c79fc6a38,9663,2877
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_fast.sm_hi,34/34f7d2a914b61036_a72cd367f8a6d74c4417965d6bda3d2a,a72cd367f8a6d74c4417965d6bda3d2a,9663,2876
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_fast.sm_lo,34/34f7cea914b609fc_977fca0eeb813802993f3acd5143565a,977fca0eeb813802993f3acd5143565a,9663,2877
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_fast_dxt5n.sm_depth,a8/a8bf33b8d45684ee_c0791aa4b44c05ae198fe4ff68d9b417,c0791aa4b44c05ae198fe4ff68d9b417,9663,2885
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_fast_dxt5n.sm_hi,5c/5ccd1cafc5496d3e_77c809e6f57bdeb6350e46550ab2d586,77c809e6f57bdeb6350e46550ab2d586,9663,2885
res:/graphics/effect.dx11/managed/interior/avatar/eyeshader_fast_dxt5n.sm_lo,5c/5ccd18afc54966e4_4add9f267cc4e06ba61a63829c3d9474,4add9f267cc4e06ba61a63829c3d9474,9663,2886
res:/graphics/effect.dx11/managed/interior/avatar/eyewetnessshader.sm_depth,cd/cdab35d48f42f6f8_826178b389158c26d86740b9fefc3320,826178b389158c26d86740b9fefc3320,30718,4118
res:/graphics/effect.dx11/managed/interior/avatar/eyewetnessshader.sm_hi,1a/1a8124c0858bda6c_6e08f2fadf934f614380314715ec54fc,6e08f2fadf934f614380314715ec54fc,30718,4118
res:/graphics/effect.dx11/managed/interior/avatar/eyewetnessshader.sm_lo,1a/1a8120c0858bd356_73611da6d4b3133ac29746473f3116d1,73611da6d4b3133ac29746473f3116d1,30718,4117
res:/graphics/effect.dx11/managed/interior/avatar/eyewetnessshader_dxt5n.sm_depth,d3/d3d3e523fedd35f0_27ac9025fb5aabc458875f5d53c23140,27ac9025fb5aabc458875f5d53c23140,30718,4117
res:/graphics/effect.dx11/managed/interior/avatar/eyewetnessshader_dxt5n.sm_hi,de/de7e6ec447092b24_c34e055fcb519608c78536adc1da0638,c34e055fcb519608c78536adc1da0638,30718,4117
res:/graphics/effect.dx11/managed/interior/avatar/eyewetnessshader_dxt5n.sm_lo,de/de7e6ac4470924ee_682047506cb1568795c1ee00e9f44aaa,682047506cb1568795c1ee00e9f44aaa,30718,4118
res:/graphics/effect.dx11/managed/interior/avatar/glassshader.sm_depth,a5/a5e1e38f48b65afa_b2145b966b0d4a3a45bdd51944d75f16,b2145b966b0d4a3a45bdd51944d75f16,40897,6208
res:/graphics/effect.dx11/managed/interior/avatar/glassshader.sm_hi,6c/6c68da8ecf852dfa_4d279cd14f5a31e76ece3d6f663ae089,4d279cd14f5a31e76ece3d6f663ae089,40897,6208
res:/graphics/effect.dx11/managed/interior/avatar/glassshader.sm_lo,6c/6c68de8ecf853430_a47102d47e67cc183bd99e2409387cb7,a47102d47e67cc183bd99e2409387cb7,40897,6206
res:/graphics/effect.dx11/managed/interior/avatar/glassshadercellcube.sm_depth,89/89baa158d59b9083_506aee725adbc65f84bb039016da8ebb,506aee725adbc65f84bb039016da8ebb,41256,6273
res:/graphics/effect.dx11/managed/interior/avatar/glassshadercellcube.sm_hi,83/839aec0592b7e08d_d0716467e2aeeca922872bce4d77d83b,d0716467e2aeeca922872bce4d77d83b,41256,6273
res:/graphics/effect.dx11/managed/interior/avatar/glassshadercellcube.sm_lo,83/839ae80592b7da77_391fe1b732234dc437b208e4e3cc66e9,391fe1b732234dc437b208e4e3cc66e9,41256,6273
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_dxt5n.sm_depth,c4/c482d19f7e71793a_a298a184a173f1a9e96a13b9a45d5f4a,a298a184a173f1a9e96a13b9a45d5f4a,40897,6194
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_dxt5n.sm_hi,3d/3db3f267513dba3a_4615563e4978e9f8560e2e1f3d7889ae,4615563e4978e9f8560e2e1f3d7889ae,40897,6195
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_dxt5n.sm_lo,3d/3db3f667513dc170_e0e8f6347e164cb26b54c1dbb8ce7024,e0e8f6347e164cb26b54c1dbb8ce7024,40897,6196
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_fast.sm_depth,5d/5d41968423017e19_21976160d3bd6a35de3d8d3bb1cf4a32,21976160d3bd6a35de3d8d3bb1cf4a32,17467,4115
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_fast.sm_hi,8c/8c55f6e00efb88b7_73308886ad2f7da513a617d0779c8254,73308886ad2f7da513a617d0779c8254,17467,4116
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_fast.sm_lo,8c/8c55fae00efb8fc5_104a1523c7ed40833b70731de79433ee,104a1523c7ed40833b70731de79433ee,16205,3815
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_fast_dxt5n.sm_depth,f0/f079244c29f55705_f768235466307c86d826069d61c2d2ee,f768235466307c86d826069d61c2d2ee,17467,4118
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_fast_dxt5n.sm_hi,0d/0d20e5758497e4e3_d9c2537c7474a611e8431bfe52e8f031,d9c2537c7474a611e8431bfe52e8f031,17467,4116
res:/graphics/effect.dx11/managed/interior/avatar/glassshader_fast_dxt5n.sm_lo,0d/0d20e1758497ddd1_a7bdc7085c7b7a828ae9d498fe915b61,a7bdc7085c7b7a828ae9d498fe915b61,16205,3819
res:/graphics/effect.dx11/managed/interior/avatar/invisibleavatar.sm_depth,a7/a7e71fdfbab6b29d_4dd9240bec96df3a2318b75c64a13b0f,4dd9240bec96df3a2318b75c64a13b0f,2459,879
res:/graphics/effect.dx11/managed/interior/avatar/invisibleavatar.sm_hi,9c/9c0d52812fadd37b_02c3ebef3116edbb2216e8b0dd538b5d,02c3ebef3116edbb2216e8b0dd538b5d,2459,878
res:/graphics/effect.dx11/managed/interior/avatar/invisibleavatar.sm_lo,9c/9c0d4e812fadcc29_6579aff63f0a1b702723f9a316601baa,6579aff63f0a1b702723f9a316601baa,2459,879
res:/graphics/effect.dx11/managed/interior/avatar/lightmapscatter.sm_depth,e0/e017ef28dc91e89b_bcf35d88c55f4c68fb1dc4e2eb5eec32,bcf35d88c55f4c68fb1dc4e2eb5eec32,2408,1242
res:/graphics/effect.dx11/managed/interior/avatar/lightmapscatter.sm_hi,6a/6a62ad530042c485_6a15c95e5b7f60944d34954cfc2c50f1,6a15c95e5b7f60944d34954cfc2c50f1,2408,1243
res:/graphics/effect.dx11/managed/interior/avatar/lightmapscatter.sm_lo,6a/6a62a9530042be4f_a243da624c16171a9c4b3522b2a9f67f,a243da624c16171a9c4b3522b2a9f67f,2408,1241
res:/graphics/effect.dx11/managed/interior/avatar/lightprepass.sm_depth,89/89e9dea4d7b614f5_c7c1414602056e5f4022ace0b340c1e0,c7c1414602056e5f4022ace0b340c1e0,4862,1684
res:/graphics/effect.dx11/managed/interior/avatar/lightprepass.sm_hi,be/bec01f47108dcc73_e366b52fadc21601ed8a7b41ffd2a6fd,e366b52fadc21601ed8a7b41ffd2a6fd,5318,1809
res:/graphics/effect.dx11/managed/interior/avatar/lightprepass.sm_lo,be/bec01b47108dc521_331ba6dfcd5256e6bfb8a8896b7f1eb2,331ba6dfcd5256e6bfb8a8896b7f1eb2,4642,1593
res:/graphics/effect.dx11/managed/interior/avatar/lightprepasscloth.sm_depth,ff/fffbec448ceefd1f_c08b31f09dd8d3e3c8fcc92decb5386c,c08b31f09dd8d3e3c8fcc92decb5386c,3763,1426
res:/graphics/effect.dx11/managed/interior/avatar/lightprepasscloth.sm_hi,fe/fe7b65807c9f3169_dac65030c7d154f4773112b61c380b83,dac65030c7d154f4773112b61c380b83,4219,1543
res:/graphics/effect.dx11/managed/interior/avatar/lightprepasscloth.sm_lo,fe/fe7b69807c9f37a3_b37e38d8cfbb800d49a523f54ca80f53,b37e38d8cfbb800d49a523f54ca80f53,3584,1356
res:/graphics/effect.dx11/managed/interior/avatar/lightprepassdecal.sm_depth,6b/6beb0bd5ab8343de_f960b0b008297cae9bd305e9a2e7454c,f960b0b008297cae9bd305e9a2e7454c,5597,1855
res:/graphics/effect.dx11/managed/interior/avatar/lightprepassdecal.sm_hi,98/98775bc6ed9b5ace_a4ef1b95eca207e8d4d0e3921ad30cd9,a4ef1b95eca207e8d4d0e3921ad30cd9,6053,1979
res:/graphics/effect.dx11/managed/interior/avatar/lightprepassdecal.sm_lo,98/987757c6ed9b53b4_7ba29184132149083f06319a92e7a950,7ba29184132149083f06319a92e7a950,5397,1783
res:/graphics/effect.dx11/managed/interior/avatar/lightprepassdouble.sm_depth,11/11ea60159d06dd74_353a249175e0eea8d3e36ac25746d8f7,353a249175e0eea8d3e36ac25746d8f7,5061,1736
res:/graphics/effect.dx11/managed/interior/avatar/lightprepassdouble.sm_hi,60/60dbc20adc13b4e8_30a21ab22aadfd32080b53354967562c,30a21ab22aadfd32080b53354967562c,5501,1864
res:/graphics/effect.dx11/managed/interior/avatar/lightprepassdouble.sm_lo,60/60dbc60adc13bb22_7d728b2359057d9893b937b20929d1e5,7d728b2359057d9893b937b20929d1e5,4642,1593
res:/graphics/effect.dx11/managed/interior/avatar/materialcollapsed.sm_depth,f8/f8e5ca8b8a893fbd_f9611d609e41fd5ad4282ba2f6eee7c2,f9611d609e41fd5ad4282ba2f6eee7c2,6686,1983
res:/graphics/effect.dx11/managed/interior/avatar/materialcollapsed.sm_hi,32/32985751fc00541b_7334a44778fd09c70c90df32b22ac788,7334a44778fd09c70c90df32b22ac788,6686,1983
res:/graphics/effect.dx11/managed/interior/avatar/materialcollapsed.sm_lo,32/32985351fc004dc9_7a690a8176aa59b487a86ee11db21fe2,7a690a8176aa59b487a86ee11db21fe2,6686,1982
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasic.sm_depth,41/41ef74cd1a6f3068_2341b3ab517b722ea564d859c4abbac4,2341b3ab517b722ea564d859c4abbac4,33181,4829
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasic.sm_hi,6c/6c8e8070671680fc_b2c060dd299eb952896900660ee1b204,b2c060dd299eb952896900660ee1b204,33181,4829
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasic.sm_lo,6c/6c8e7c70671679a6_e8ffd7765273cfcef1bb2eae4df798ce,e8ffd7765273cfcef1bb2eae4df798ce,33181,4829
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasicadditive.sm_depth,d6/d61ae976038a4ddc_bd3cd04f7bad37bbf72e5726276cbae8,bd3cd04f7bad37bbf72e5726276cbae8,33229,4847
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasicadditive.sm_hi,1b/1baa4da1a3879e10_182ff12e05beff49516f1e59469f288a,182ff12e05beff49516f1e59469f288a,33229,4846
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasicadditive.sm_lo,1b/1baa51a1a387a52a_53165560d78ad87f56cf0bdf308a8505,53165560d78ad87f56cf0bdf308a8505,33229,4847
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasic_dxt5n.sm_depth,a8/a85ed7a360546da0_0728d8e8d119c21ead342777a41c53d2,0728d8e8d119c21ead342777a41c53d2,33181,4771
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasic_dxt5n.sm_hi,71/7111c48653e683b4_af5a239999edae9e896c509e6784340e,af5a239999edae9e896c509e6784340e,33181,4770
res:/graphics/effect.dx11/managed/interior/avatar/portraitbasic_dxt5n.sm_lo,71/7111c08653e67d7e_40399e0e176b723230aac29e58bfaa9a,40399e0e176b723230aac29e58bfaa9a,33181,4771
res:/graphics/effect.dx11/managed/interior/avatar/portraitdropshadow.sm_depth,ea/eadf379958eded4f_463cda3ef0ca9f0e2041c01582f5382c,463cda3ef0ca9f0e2041c01582f5382c,27176,3425
res:/graphics/effect.dx11/managed/interior/avatar/portraitdropshadow.sm_hi,e8/e8695364d8432b79_6cd6bc9827a42d6501a8f4f3c4b53b4f,6cd6bc9827a42d6501a8f4f3c4b53b4f,27176,3425
res:/graphics/effect.dx11/managed/interior/avatar/portraitdropshadow.sm_lo,e8/e8695764d84331b3_9d750601c7256773ae0fb44da67cf239,9d750601c7256773ae0fb44da67cf239,27176,3423
res:/graphics/effect.dx11/managed/interior/avatar/portraitspotlightshadow.sm_depth,8c/8c0e0c125451adb2_1ba32b43cbcc6de570400d7528de7ee1,1ba32b43cbcc6de570400d7528de7ee1,4391,1580
res:/graphics/effect.dx11/managed/interior/avatar/portraitspotlightshadow.sm_hi,90/90dc12d437e19bd2_ddbf29a395b4306ceb933c9f6720d24d,ddbf29a395b4306ceb933c9f6720d24d,4391,1581
res:/graphics/effect.dx11/managed/interior/avatar/portraitspotlightshadow.sm_lo,90/90dc16d437e1a2e8_a8e22a1c379983edf362b5a28cd41a33,a8e22a1c379983edf362b5a28cd41a33,4391,1583
res:/graphics/effect.dx11/managed/interior/avatar/portraitspotlightshadowcloth.sm_depth,39/399f55b77042f4fa_9b03e8103efaad829c175f950793d6ab,9b03e8103efaad829c175f950793d6ab,2901,1210
res:/graphics/effect.dx11/managed/interior/avatar/portraitspotlightshadowcloth.sm_hi,ca/ca9e97cead62fbfa_c197d7ddcda5f9283683116d6bf42518,c197d7ddcda5f9283683116d6bf42518,2901,1209
res:/graphics/effect.dx11/managed/interior/avatar/portraitspotlightshadowcloth.sm_lo,ca/ca9e9bcead630230_db3e4181d3683e23dcd92ae6078b1b7e,db3e4181d3683e23dcd92ae6078b1b7e,2901,1210
res:/graphics/effect.dx11/managed/interior/avatar/sculptingoverlay.sm_depth,d5/d523584cf3b64ea6_0da7c2bd072aaa1272b67a0c60887163,0da7c2bd072aaa1272b67a0c60887163,6122,2108
res:/graphics/effect.dx11/managed/interior/avatar/sculptingoverlay.sm_hi,ca/ca265c955ff18f76_827014b3c925e80f99269ff053e8d2da,827014b3c925e80f99269ff053e8d2da,6122,2106
res:/graphics/effect.dx11/managed/interior/avatar/sculptingoverlay.sm_lo,ca/ca2658955ff1883c_660ed915b1c0fd9fa5ab40bbeed1a246,660ed915b1c0fd9fa5ab40bbeed1a246,6122,2106
res:/graphics/effect.dx11/managed/interior/avatar/sculptingoverlay_noz.sm_depth,e9/e9cc3fb534ecb006_bdb0f30b0d37b19acf0ea84456bb3a4f,bdb0f30b0d37b19acf0ea84456bb3a4f,6122,2107
res:/graphics/effect.dx11/managed/interior/avatar/sculptingoverlay_noz.sm_hi,a8/a83db6d6a5e7d856_98e589a98f2af8a8cacd44a53611d032,98e589a98f2af8a8cacd44a53611d032,6122,2108
res:/graphics/effect.dx11/managed/interior/avatar/sculptingoverlay_noz.sm_lo,a8/a83db2d6a5e7d11c_89f360e86cc7ea8dce8a54c883657a46,89f360e86cc7ea8dce8a54c883657a46,6122,2106
res:/graphics/effect.dx11/managed/interior/avatar/shadow.sm_depth,da/da76bdb553a82335_adb2fa575dd926b340d678ffd67b8a38,adb2fa575dd926b340d678ffd67b8a38,3026,1128
res:/graphics/effect.dx11/managed/interior/avatar/shadow.sm_hi,db/db59d1ac249442b3_1f3ab00e8f5d42f9e369a5cfecb8b80b,1f3ab00e8f5d42f9e369a5cfecb8b80b,3026,1130
res:/graphics/effect.dx11/managed/interior/avatar/shadow.sm_lo,db/db59cdac24943c61_ab61d8b4ef300cf85bd67dff9b8d9372,ab61d8b4ef300cf85bd67dff9b8d9372,3026,1128
res:/graphics/effect.dx11/managed/interior/avatar/shadowalphatest.sm_depth,bf/bfae97e7bb6cdb3b_cea84eff68c1d100f5dfac2dee36154e,cea84eff68c1d100f5dfac2dee36154e,4282,1563
res:/graphics/effect.dx11/managed/interior/avatar/shadowalphatest.sm_hi,f3/f32f0cd28105f1a5_3d04138e787decc6e91ff375094b2bcb,3d04138e787decc6e91ff375094b2bcb,4282,1567
res:/graphics/effect.dx11/managed/interior/avatar/shadowalphatest.sm_lo,f3/f32f08d28105eb6f_3fb99faab3c77e951c398badde0a81bd,3fb99faab3c77e951c398badde0a81bd,4282,1567
res:/graphics/effect.dx11/managed/interior/avatar/shadowcloth.sm_depth,e3/e3ce3c9c03cea75f_81d9e46c56a1f1f3a3586a3e408d7a9c,81d9e46c56a1f1f3a3586a3e408d7a9c,2148,912
res:/graphics/effect.dx11/managed/interior/avatar/shadowcloth.sm_hi,56/567616fcd0495ea9_5c225b25523de54400b721c70cbbfeca,5c225b25523de54400b721c70cbbfeca,2148,912
res:/graphics/effect.dx11/managed/interior/avatar/shadowcloth.sm_lo,56/56761afcd04965e3_d8c60105e48210a78d81ed3a6c44e506,d8c60105e48210a78d81ed3a6c44e506,2148,913
res:/graphics/effect.dx11/managed/interior/avatar/shadowclothalphatest.sm_depth,2c/2c9b969cbf400eb5_bde6d9b39a45348215775430a0f494fc,bde6d9b39a45348215775430a0f494fc,2792,1172
res:/graphics/effect.dx11/managed/interior/avatar/shadowclothalphatest.sm_hi,f0/f0ad0ff2e2660533_d193f677a90934160ef3aae2f3052cbb,d193f677a90934160ef3aae2f3052cbb,2792,1172
res:/graphics/effect.dx11/managed/interior/avatar/shadowclothalphatest.sm_lo,f0/f0ad0bf2e265fee1_f3d107b130eb38b1445aee1bdf2a7f6d,f3d107b130eb38b1445aee1bdf2a7f6d,2792,1173
res:/graphics/effect.dx11/managed/interior/avatar/simple.sm_depth,91/91dc6428aa204fe7_fa4993bffa07dee2d9dc934c1d54f162,fa4993bffa07dee2d9dc934c1d54f162,5238,1741
res:/graphics/effect.dx11/managed/interior/avatar/simple.sm_hi,c5/c5b60d6a5e11eed1_6f91eab83127cf4ebe52f53cfe00413c,6f91eab83127cf4ebe52f53cfe00413c,5238,1740
res:/graphics/effect.dx11/managed/interior/avatar/simple.sm_lo,c5/c5b6116a5e11f5eb_320b017950e71dc1c36ec47b457a828f,320b017950e71dc1c36ec47b457a828f,5238,1742
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatar.sm_depth,eb/ebc945b76b52f4fe_03471ebabafc91f576e4e9b8a16efcc8,03471ebabafc91f576e4e9b8a16efcc8,16471,4053
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatar.sm_hi,1a/1acc54ac2a93dc6e_15360a0df4cbe09f399a1676abd92ef5,15360a0df4cbe09f399a1676abd92ef5,16471,4052
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatar.sm_lo,1a/1acc50ac2a93d554_af702717e8aae2df245387e89daa6013,af702717e8aae2df245387e89daa6013,15823,3902
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf.sm_depth,48/488687567ca71e90_e212e022eb6313324b5447f8f5eb7338,e212e022eb6313324b5447f8f5eb7338,16696,4719
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf.sm_hi,0f/0f0157e59997c244_31ac92d9120d4e789a4e5439801483d4,31ac92d9120d4e789a4e5439801483d4,16696,4719
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf.sm_lo,0f/0f0153e59997bb0e_2e0c5877ffce641df016a02714b27c13,2e0c5877ffce641df016a02714b27c13,15442,4446
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfbeckmannlookup.sm_depth,f6/f63690ca8750f633_6acd965ce76a0fdd7687b5a063eff8d8,6acd965ce76a0fdd7687b5a063eff8d8,1523,667
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfbeckmannlookup.sm_hi,15/15c491a8b5ee0bdd_adc8751ba28f43d1b6d712f15bd5a220,adc8751ba28f43d1b6d712f15bd5a220,1523,666
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfbeckmannlookup.sm_lo,15/15c48da8b5ee0487_10ce76fca870e888287570e8d0402d39,10ce76fca870e888287570e8d0402d39,1523,666
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdouble.sm_depth,99/99950aff28d891a9_1b804cfca98b10dc823082bebc47f972,1b804cfca98b10dc823082bebc47f972,18277,5048
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdouble.sm_hi,d7/d7c86aed48fd97a7_21e1c8b2a7f5dbbdb9dec5bbfb18cbf1,21e1c8b2a7f5dbbdb9dec5bbfb18cbf1,18277,5047
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdouble.sm_lo,d7/d7c86eed48fd9ef5_2d2bf00151b936e22cd1a4c61f77dd84,2d2bf00151b936e22cd1a4c61f77dd84,17007,4785
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear.sm_depth,78/787ede87a48f9788_be29a1f65335fa51a98e102b6fed0091,be29a1f65335fa51a98e102b6fed0091,40214,6757
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear.sm_hi,fd/fd2a9673e096929c_0bc119e7a0907858355f9616d7e65471,0bc119e7a0907858355f9616d7e65471,40214,6755
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear.sm_lo,fd/fd2a9273e0968c46_9f3080cabebebd41331a0400db3316b1,9f3080cabebebd41331a0400db3316b1,40214,6757
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_dxt5n.sm_depth,59/599c7b516f13c180_bf55b2d3243e5ded1482a810104cd023,bf55b2d3243e5ded1482a810104cd023,40214,6771
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_dxt5n.sm_hi,85/853d36cb556c8b14_5a877e2967e434268a9cce85ae12efcc,5a877e2967e434268a9cce85ae12efcc,40214,6770
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_dxt5n.sm_lo,85/853d32cb556c84de_f725de318e897a49b192d04fb571d509,f725de318e897a49b192d04fb571d509,40214,6771
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_fast.sm_depth,b7/b77169a9a8521fbf_2e746aa47d70deae0040868a20fcf49f,2e746aa47d70deae0040868a20fcf49f,17059,4773
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_fast.sm_hi,2d/2dcc1a1a9ea57289_ac033b3c97b46aa754d6e9607f598a57,ac033b3c97b46aa754d6e9607f598a57,17059,4773
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_fast.sm_lo,2d/2dcc1e1a9ea579c3_da2260c2ef3fcc8b23b172ecfb10e475,da2260c2ef3fcc8b23b172ecfb10e475,17059,4773
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_fast_dxt5n.sm_depth,72/723fa8a11b67d27b_b085449418c297e09e71461f717290bc,b085449418c297e09e71461f717290bc,17059,4780
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_fast_dxt5n.sm_hi,b8/b8ed0b99f571a5e5_84d240689de52e17e883bd360d3ea021,84d240689de52e17e883bd360d3ea021,17059,4780
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdoublelinear_fast_dxt5n.sm_lo,b8/b8ed0799f5719eaf_baad1b7aa8784bf0d155ddc7244935b4,baad1b7aa8784bf0d155ddc7244935b4,17059,4779
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdouble_prepass.sm_depth,14/14bad41ed0ab95ce_44543a7875ebf09a5d137dd36ab54c20,44543a7875ebf09a5d137dd36ab54c20,7837,2519
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdouble_prepass.sm_hi,be/bead7a0b3240499e_e5aa01b802f2b58e26d0aae909468cab,e5aa01b802f2b58e26d0aae909468cab,7837,2519
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfdouble_prepass.sm_lo,be/bead760b32404344_eb1413df67e04ca7471fd6603b675dcc,eb1413df67e04ca7471fd6603b675dcc,7837,2521
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapapplication_double.sm_depth,d5/d5673b2b260ad768_135afe792b99dfc1ca3b0b540347dc07,135afe792b99dfc1ca3b0b540347dc07,42196,7065
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapapplication_double.sm_hi,9d/9dbd24bf0dbd75fc_98cd8dee643556c1879094a541034781,98cd8dee643556c1879094a541034781,42196,7065
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapapplication_double.sm_lo,9d/9dbd20bf0dbd6ea6_b1c4b2660d2ce6c48c4bed206f341802,b1c4b2660d2ce6c48c4bed206f341802,42196,7064
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapapplication_single.sm_depth,9f/9f51771524a5f345_147ef91032f62802d68b13208189b53e,147ef91032f62802d68b13208189b53e,38983,6431
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapapplication_single.sm_hi,4b/4bc7907d74e08723_346cb5231ab0b33e7d1cba8ca06c77a4,346cb5231ab0b33e7d1cba8ca06c77a4,38983,6431
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapapplication_single.sm_lo,4b/4bc78c7d74e08011_56b8fc518e97bd77022ac34f4f97f06a,56b8fc518e97bd77022ac34f4f97f06a,38983,6430
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapunwrap_double.sm_depth,99/9973257b65466447_176088f4a8de5ff3fb90ae33c15c096a,176088f4a8de5ff3fb90ae33c15c096a,31161,4470
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapunwrap_double.sm_hi,d3/d3fa565be63b50b1_526f29fa26fb8cd142593dc8f8a0c9ef,526f29fa26fb8cd142593dc8f8a0c9ef,31161,4470
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapunwrap_double.sm_lo,d3/d3fa5a5be63b57cb_f4097be5430eb993c7d79ce62bd50934,f4097be5430eb993c7d79ce62bd50934,31161,4470
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapunwrap_single.sm_depth,55/55933ff41a6a413e_e67e437bc0f9f88e25a2d76474a0f36c,e67e437bc0f9f88e25a2d76474a0f36c,31193,4476
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapunwrap_single.sm_hi,05/05406b03e3f378ae_1ea082de2b9a9323df66fa01a2ad5ad1,1ea082de2b9a9323df66fa01a2ad5ad1,31193,4476
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflightmapunwrap_single.sm_lo,05/05406703e3f37194_d2e96d1a3b779ff1465d7b664e88f36b,d2e96d1a3b779ff1465d7b664e88f36b,31193,4474
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear.sm_depth,13/13fcede3d7698f35_f6edcd65ae2e71cd5c3d4da1577bbfaf,f6edcd65ae2e71cd5c3d4da1577bbfaf,38638,6391
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear.sm_hi,be/be5f39e020e886b3_7ffe3b8f6f91c74c7596834c0b8fa7a2,7ffe3b8f6f91c74c7596834c0b8fa7a2,38638,6393
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear.sm_lo,be/be5f35e020e88061_a7b09c8c4061cdf2c301609e741a8d2b,a7b09c8c4061cdf2c301609e741a8d2b,38638,6394
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_dxt5n.sm_depth,31/317b34a4043abc49_817b07fd097d8b1a5b060f6aa04ec125,817b07fd097d8b1a5b060f6aa04ec125,38638,6419
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_dxt5n.sm_hi,4a/4a8c1f8ed5f66dc7_9a69a69a316193b3eb753f0b1895243c,9a69a69a316193b3eb753f0b1895243c,38638,6419
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_dxt5n.sm_lo,4a/4a8c238ed5f67415_d08f58882db60eebac03666b566f854a,d08f58882db60eebac03666b566f854a,38638,6419
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_fast.sm_depth,7b/7b77d959ce296678_c88e6632734e89546afabecb088c9db5,c88e6632734e89546afabecb088c9db5,15485,4474
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_fast.sm_hi,08/08c0828c8b7928ec_1d2a264e6c4cac092e927d74218e8358,1d2a264e6c4cac092e927d74218e8358,15485,4472
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_fast.sm_lo,08/08c07e8c8b7921d6_519596bcb1df5a432ae25c974ab6090c,519596bcb1df5a432ae25c974ab6090c,15485,4473
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_fast_dxt5n.sm_depth,ba/ba18af9db1e90970_b944023c42c241f355d93617b7495ded,b944023c42c241f355d93617b7495ded,15485,4495
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_fast_dxt5n.sm_hi,f5/f5b7b8da8a16a5a4_9fd19f3b2e4d1384d8ece38acfc73bc3,9fd19f3b2e4d1384d8ece38acfc73bc3,15485,4495
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdflinear_fast_dxt5n.sm_lo,f5/f5b7b4da8a169f6e_91b7d25cea481414c68750a6a99fd84a,91b7d25cea481414c68750a6a99fd84a,15485,4498
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double.sm_depth,3f/3fdee64f7bdd8338_a5f8a4c4ce5a8aa526942301f62a1717,a5f8a4c4ce5a8aa526942301f62a1717,42124,7137
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double.sm_hi,93/93f305cf1e7535ac_8caa5fa02ea98439d388b37afede8523,8caa5fa02ea98439d388b37afede8523,42124,7138
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double.sm_lo,93/93f301cf1e752e96_e4408d75e5e1c950e8fabf436cc2f3f7,e4408d75e5e1c950e8fabf436cc2f3f7,42124,7137
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_dxt5n.sm_depth,62/621501fc034431b0_e4f0689e05811067466268ff1cbb2aac,e4f0689e05811067466268ff1cbb2aac,42124,7080
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_dxt5n.sm_hi,36/36a065813891d5e4_f2db3614fd5620889e5c1e5fdfcd846a,f2db3614fd5620889e5c1e5fdfcd846a,42124,7080
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_dxt5n.sm_lo,36/36a061813891ceae_2766b8065901c1cbe9faae05ad9607fc,2766b8065901c1cbe9faae05ad9607fc,42124,7079
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_fast.sm_depth,09/0996e96a03569b6f_6e230468b5e482ae4ebf44f0a0c64099,6e230468b5e482ae4ebf44f0a0c64099,18977,5269
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_fast.sm_hi,0b/0bcefe6845e40f19_00a585b459f3e81906cff7cd843093e6,00a585b459f3e81906cff7cd843093e6,18977,5268
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_fast.sm_lo,0b/0bcf026845e41653_0323cd1281546c31e53c0ffe40796b19,0323cd1281546c31e53c0ffe40796b19,18977,5269
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_fast_dxt5n.sm_depth,2c/2cb727e161125b2b_c074f39e75d62f11ed5bd155798eac37,c074f39e75d62f11ed5bd155798eac37,18977,5310
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_fast_dxt5n.sm_hi,08/080df12f954a6bb5_0d3785f23675d59fedf544fc4ad656e8,0d3785f23675d59fedf544fc4ad656e8,18977,5309
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_double_fast_dxt5n.sm_lo,08/080ded2f954a657f_b617bddfbb97ba94fc57be0a8a428350,b617bddfbb97ba94fc57be0a8a428350,18977,5310
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single.sm_depth,02/029ead16d15df295_717f650693a56e653c977a0f07c16710,717f650693a56e653c977a0f07c16710,38963,6296
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single.sm_hi,81/819c78c28930d593_05e8df064b2ef0c504990193a02ff689,05e8df064b2ef0c504990193a02ff689,38963,6297
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single.sm_lo,81/819c74c28930cf41_ddb662bdc24a0fc42388792ac9654434,ddb662bdc24a0fc42388792ac9654434,38963,6296
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_dxt5n.sm_depth,1f/1f67ba9d29f5fe69_807686e1017c1e067075dd68d4a0d2ad,807686e1017c1e067075dd68d4a0d2ad,38963,6371
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_dxt5n.sm_hi,c6/c6280bf8347f0e67_9d97d5a40233837e0fcd71b226f3c1fe,9d97d5a40233837e0fcd71b226f3c1fe,38963,6373
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_dxt5n.sm_lo,c6/c6280ff8347f14b5_4679d2ce3befbcfb0557e8794505f00c,4679d2ce3befbcfb0557e8794505f00c,38963,6374
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_fast.sm_depth,8d/8d0b113e5d916698_0fe989bd5959d59a4478113376f30d62,0fe989bd5959d59a4478113376f30d62,15816,4453
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_fast.sm_hi,6c/6c16eabe37fc058c_b66f7c94527c22f9bf27d1bc8817f3f2,b66f7c94527c22f9bf27d1bc8817f3f2,15816,4454
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_fast.sm_lo,6c/6c16e6be37fbff76_0ba8225668ace590d5ce7783793c8044,0ba8225668ace590d5ce7783793c8044,15816,4454
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_fast_dxt5n.sm_depth,35/352d91a36614d950_738520336e404b5076de8ac857328402,738520336e404b5076de8ac857328402,15816,4430
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_fast_dxt5n.sm_hi,9e/9ebd724b7b1ca604_3a1acea83a0c35d71a7fdc02ea19def4,3a1acea83a0c35d71a7fdc02ea19def4,15816,4432
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfsinglepassskin_single_fast_dxt5n.sm_lo,9e/9ebd6e4b7b1c9fce_84b0ee5de118c4468e97bb47ac223fde,84b0ee5de118c4468e97bb47ac223fde,15816,4433
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfstretchmap.sm_depth,28/28ea22f1a6f710b5_f32b2c40a298a4b2bb154c489a7dec41,f32b2c40a298a4b2bb154c489a7dec41,2717,954
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfstretchmap.sm_hi,e2/e2ecb82e3da30b33_688146dbf31aa532702eccf4b426bd2c,688146dbf31aa532702eccf4b426bd2c,2717,954
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdfstretchmap.sm_lo,e2/e2ecb42e3da304e1_f32dd8e16dc35d33715c7b85cf09b502,f32dd8e16dc35d33715c7b85cf09b502,2717,954
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf_detailed.sm_depth,5a/5ab03a35e0eeea29_7d60abf9486363ee567029ea26aba6b5,7d60abf9486363ee567029ea26aba6b5,19211,4796
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf_detailed.sm_hi,ba/ba16366f4166a127_a0805d937d42ffddd9d26ff859e5a47b,a0805d937d42ffddd9d26ff859e5a47b,19211,4795
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf_detailed.sm_lo,ba/ba163a6f4166a875_afabd3e48eb1cd6f59b78660fc7b83bb,afabd3e48eb1cd6f59b78660fc7b83bb,17957,4529
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf_prepass.sm_depth,f2/f2533608c1e609ff_9c14b30b837f8fa39a4ed764afd2257a,9c14b30b837f8fa39a4ed764afd2257a,7200,2366
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf_prepass.sm_hi,2f/2fb111b9f9d579c9_a4f7d48957a48501d78b567b282fd78c,a4f7d48957a48501d78b567b282fd78c,7200,2364
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarbrdf_prepass.sm_lo,2f/2fb115b9f9d58003_04d6920954ef9c9c2fe0591b1c4c33a9,04d6920954ef9c9c2fe0591b1c4c33a9,7200,2366
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells.sm_depth,ba/ba705ad271b5aaa4_89522ad3b3f7701bcb3f69074157cb39,89522ad3b3f7701bcb3f69074157cb39,34422,3553
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells.sm_hi,dd/dd681f003602e638_ab1e876a77971ebcc0b84c0268d3d46c,ab1e876a77971ebcc0b84c0268d3d46c,34422,3554
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells.sm_lo,dd/dd6823003602ed72_93a77eeb0a8554a01cd31aadcb81a7c5,93a77eeb0a8554a01cd31aadcb81a7c5,34422,3553
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells_fast.sm_depth,3c/3cf3fea1f60a187b_05c87bd8898aaf5bdf3d474c2fcdd4a7,05c87bd8898aaf5bdf3d474c2fcdd4a7,6756,2241
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells_fast.sm_hi,7a/7ae325e650a077e5_6d554b3682dfa34459fd43d403dcf991,6d554b3682dfa34459fd43d403dcf991,6756,2241
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells_fast.sm_lo,7a/7ae321e650a070af_2f51e578cecca5fc452c18abe91e6079,2f51e578cecca5fc452c18abe91e6079,6756,2240
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells_fast_dxt5n.sm_depth,42/42247c58373fafff_62a55abd37733d5320e5ab32945d392e,62a55abd37733d5320e5ab32945d392e,6756,2241
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells_fast_dxt5n.sm_hi,c3/c3574d6dbdaa6bc9_fc29f5bdd646d28dceff12c8bcc93475,fc29f5bdd646d28dceff12c8bcc93475,6756,2240
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarfurshells_fast_dxt5n.sm_lo,c3/c357516dbdaa7203_0f0041ee4d70efa8dd82622ebcb534d0,0f0041ee4d70efa8dd82622ebcb534d0,6756,2240
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair.sm_depth,73/736ed3bc13723bd6_9ddc847d8456f9feb89ddc93c14af1f6,9ddc847d8456f9feb89ddc93c14af1f6,17846,4621
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair.sm_hi,b9/b972a48357954f06_9b5363244dc20e9e24f6afeea9b4ba6c,9b5363244dc20e9e24f6afeea9b4ba6c,17846,4621
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair.sm_lo,b9/b972a083579548cc_f7ca448dd68832a797e5317a48089404,f7ca448dd68832a797e5317a48089404,16489,4293
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed.sm_depth,9b/9b1b956da64a229f_fd3b0e38c3a00c955cdbd85bd4575e09,fd3b0e38c3a00c955cdbd85bd4575e09,24333,4776
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed.sm_hi,02/02712bd33a72a1e9_47de5ff893889adf7bbc3b39792cea01,47de5ff893889adf7bbc3b39792cea01,24333,4777
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed.sm_lo,02/02712fd33a72a823_21aa8c7ce381f98fe3805d429890e530,21aa8c7ce381f98fe3805d429890e530,24333,4777
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_dxt5n.sm_depth,eb/eb3949855b48f51b_f1881233140a34230a2556667e0b4f6c,f1881233140a34230a2556667e0b4f6c,24333,4790
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_dxt5n.sm_hi,c7/c77c7bab74fdea05_ee7aa229a08daa214cd512d2c99dd4d0,ee7aa229a08daa214cd512d2c99dd4d0,24333,4787
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_dxt5n.sm_lo,c7/c77c77ab74fde3cf_04dfa6009e7d3923f11ed05eb61e3479,04dfa6009e7d3923f11ed05eb61e3479,24333,4791
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_fast.sm_depth,4a/4a6752dc8713cd7a_e953f136255a38d9ccfbf9ff30275cf9,e953f136255a38d9ccfbf9ff30275cf9,13461,3772
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_fast.sm_hi,d8/d817a1607ffb857a_2e99e613ee68b0f1023babf632ea8c86,2e99e613ee68b0f1023babf632ea8c86,13461,3772
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_fast.sm_lo,d8/d817a5607ffb8bb0_898b9d9b2abe60469d22c995df9361f4,898b9d9b2abe60469d22c995df9361f4,13461,3771
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_fast_dxt5n.sm_depth,aa/aabcee07f24ef7ba_ae94d77a3b73bc99af5249541b0743ef,ae94d77a3b73bc99af5249541b0743ef,13461,3773
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_fast_dxt5n.sm_hi,a7/a7742afd02c435ba_b432fc1f5ebf61a38234381ccb423d31,b432fc1f5ebf61a38234381ccb423d31,13461,3773
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_detailed_fast_dxt5n.sm_lo,a7/a7742efd02c43cf0_a6852878a2a5076c33b427d6a759d8c4,a6852878a2a5076c33b427d6a759d8c4,13461,3771
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_dxt5n.sm_depth,9f/9fe3125f8714239e_c4e7cc09214e2d97c57aee555579681b,c4e7cc09214e2d97c57aee555579681b,17846,4629
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_dxt5n.sm_hi,77/771c4d481e50448e_aa05f9b1072e60efccfc50d58f4b8cb2,aa05f9b1072e60efccfc50d58f4b8cb2,17846,4629
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarhair_dxt5n.sm_lo,77/771c49481e503e74_8abf005a093c8ab6a48d8df2444a4085,8abf005a093c8ab6a48d8df2444a4085,16489,4303
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarskin.sm_depth,65/65ddb5fab0c7b617_a31b9d6d3c98e70428c63d3cc1d3a492,a31b9d6d3c98e70428c63d3cc1d3a492,12549,3614
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarskin.sm_hi,5c/5cba3cb7e4301d61_91da9f7fa769973f6e37914a0eaac9c3,91da9f7fa769973f6e37914a0eaac9c3,12549,3612
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatarskin.sm_lo,5c/5cba40b7e43023bb_c2a76ec31aea74523b40d40ca0c7aa7c,c2a76ec31aea74523b40d40ca0c7aa7c,11921,3432
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoobaking.sm_depth,49/493e53816a14d931_d4dc6503eda1c8ee0c4bab024bb5fb01,d4dc6503eda1c8ee0c4bab024bb5fb01,11248,3136
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoobaking.sm_hi,db/db8de1c7c612ffcf_e2f7a3a4fd1af91dde78160713eb9ac6,e2f7a3a4fd1af91dde78160713eb9ac6,11248,3138
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoobaking.sm_lo,db/db8de5c7c613061d_c40ee54556a2c1fcde65c87672d437fc,c40ee54556a2c1fcde65c87672d437fc,11248,3137
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoobrdf.sm_depth,81/818748e168e34759_7190e35b47c16ffe309e537a8d08da8c,7190e35b47c16ffe309e537a8d08da8c,11073,3153
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoobrdf.sm_hi,55/55cbbb288d892df7_56324306306751f67a335a674965283a,56324306306751f67a335a674965283a,11073,3153
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoobrdf.sm_lo,55/55cbbf288d893405_77dd8bac501cbc8ba10c20ccc887427e,77dd8bac501cbc8ba10c20ccc887427e,11073,3152
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoomaskbaking.sm_depth,76/7637428adec76a7d_4c5f091ffff8116d39556cf5b6ec98c3,4c5f091ffff8116d39556cf5b6ec98c3,6402,1871
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoomaskbaking.sm_hi,2d/2dd1368e06351ddb_0f5d67c71477edc99581f434a8993a43,0f5d67c71477edc99581f434a8993a43,6402,1871
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoomaskbaking.sm_lo,2d/2dd1328e06351689_6f633c5490c4eda7814c4c2ed64f87a0,6f633c5490c4eda7814c4c2ed64f87a0,6402,1869
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoopickingddu.sm_depth,5a/5a7c91a7cddd2415_efadb641548ea13fd02077fe55d179f4,efadb641548ea13fd02077fe55d179f4,11495,3288
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoopickingddu.sm_hi,70/70a7310301006a13_c3b791118824dcaa822e5047e032c941,c3b791118824dcaa822e5047e032c941,11495,3288
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoopickingddu.sm_lo,70/70a72d03010063c1_693697c6c64463fc2abb1a913cb0a218,693697c6c64463fc2abb1a913cb0a218,11495,3288
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoopickingddv.sm_depth,79/79f84acf0fcc0380_c006e5fe39d11490aa0ff6d6f4344dcc,c006e5fe39d11490aa0ff6d6f4344dcc,11495,3250
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoopickingddv.sm_hi,c8/c89b8236eaad5114_0affc91d2be59c6f69ce2b469d11b4c9,0affc91d2be59c6f69ce2b469d11b4c9,11495,3251
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatartattoopickingddv.sm_lo,c8/c89b7e36eaad4ade_2f0fff9760c8bcb451672aeb50d72182,2f0fff9760c8bcb451672aeb50d72182,11495,3250
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatar_prepass.sm_depth,9c/9ce0f3e4a0c76a95_765e1cb67735a7ccaff8bda682db0f2b,765e1cb67735a7ccaff8bda682db0f2b,7862,2569
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatar_prepass.sm_hi,00/00f99190a90d3d93_d8d8250788f02d49e9310abdf8469d49,d8d8250788f02d49e9310abdf8469d49,8110,2663
res:/graphics/effect.dx11/managed/interior/avatar/skinnedavatar_prepass.sm_lo,00/00f98d90a90d3741_c571845d367a77e8ad22c0fd81235b54,c571845d367a77e8ad22c0fd81235b54,7862,2551
res:/graphics/effect.dx11/managed/interior/avatar/skinnedsimple.sm_depth,3d/3d774813168abf95_ccaa604ab797db9cdaa27669e54dcb15,ccaa604ab797db9cdaa27669e54dcb15,7122,2133
res:/graphics/effect.dx11/managed/interior/avatar/skinnedsimple.sm_hi,bd/bd7c8c9fda533c93_a4be1785c676cce74230bf4332495c3f,a4be1785c676cce74230bf4332495c3f,7122,2136
res:/graphics/effect.dx11/managed/interior/avatar/skinnedsimple.sm_lo,bd/bd7c889fda533641_4883420e3c075bb5a1624bb1986a1d2f,4883420e3c075bb5a1624bb1986a1d2f,7122,2136
res:/graphics/effect.dx11/managed/interior/postprocess/colorlookupcube.sm_depth,90/902e598178ba7cbb_6a67a9da587a42df49e26f6372a6e4a1,6a67a9da587a42df49e26f6372a6e4a1,1057,585
res:/graphics/effect.dx11/managed/interior/postprocess/colorlookupcube.sm_hi,fc/fc29186a6880d625_4d7bf1f0b9edab997345de1c17601985,4d7bf1f0b9edab997345de1c17601985,1057,588
res:/graphics/effect.dx11/managed/interior/postprocess/colorlookupcube.sm_lo,fc/fc29146a6880cfef_7ae83ca0adc976118413767106b16c0e,7ae83ca0adc976118413767106b16c0e,1057,587
res:/graphics/effect.dx11/managed/interior/shadows/shadowfilter.sm_depth,1d/1d331f4b8cc20ea5_a0e61aa862b9c22f9bc7bd98d8fd8040,a0e61aa862b9c22f9bc7bd98d8fd8040,2111,870
res:/graphics/effect.dx11/managed/interior/shadows/shadowfilter.sm_hi,13/13aaf96817d6e503_e109eef2a861cfe284a8721689d04ac1,e109eef2a861cfe284a8721689d04ac1,2111,869
res:/graphics/effect.dx11/managed/interior/shadows/shadowfilter.sm_lo,13/13aaf56817d6def1_efcebca993e22440fcd07ac609ec8c6c,efcebca993e22440fcd07ac609ec8c6c,2111,871
res:/graphics/effect.dx11/managed/interior/shadows/shadowfilterlow.sm_depth,0e/0efd1efd630d6d31_fef6327c0f2f7a5ab14ec2a1f1804902,fef6327c0f2f7a5ab14ec2a1f1804902,1353,670
res:/graphics/effect.dx11/managed/interior/shadows/shadowfilterlow.sm_hi,f4/f46a583bf7ecbbcf_155559f2d5c14e192f8d0d8257a9eb71,155559f2d5c14e192f8d0d8257a9eb71,1353,667
res:/graphics/effect.dx11/managed/interior/shadows/shadowfilterlow.sm_lo,f4/f46a5c3bf7ecc21d_53f7c00fe2b5df0713b3e4cf32f2216c,53f7c00fe2b5df0713b3e4cf32f2216c,1353,669
res:/graphics/effect.dx11/managed/interior/system/picking.sm_depth,56/56ce3cb1409283a8_2acb5e86a4155bc530325efa158dc86f,2acb5e86a4155bc530325efa158dc86f,2090,832
res:/graphics/effect.dx11/managed/interior/system/picking.sm_hi,e2/e2ef9cff4dee313c_aee959ca0e224dcf73b07cdd33b123d0,aee959ca0e224dcf73b07cdd33b123d0,2090,830
res:/graphics/effect.dx11/managed/interior/system/picking.sm_lo,e2/e2ef98ff4dee2ae6_c18e5c5f59888e5bac9bb94e2c9e8868,c18e5c5f59888e5bac9bb94e2c9e8868,2090,831
res:/graphics/effect.dx11/managed/space/booster/boosterglowanimated.sm_depth,96/96998af8b3571232_fbc0927dcff352b5b108df1b9f4bb4d8,fbc0927dcff352b5b108df1b9f4bb4d8,5777,1943
res:/graphics/effect.dx11/managed/space/booster/boosterglowanimated.sm_hi,ea/ea9a24a0b9a7c952_fa1c84870e01efe4446d05ebd2338c67,fa1c84870e01efe4446d05ebd2338c67,4060,1530
res:/graphics/effect.dx11/managed/space/booster/boosterglowanimated.sm_lo,ea/ea9a28a0b9a7d068_5ba068b6e0c69281bba20783899bf854,5ba068b6e0c69281bba20783899bf854,3578,1399
res:/graphics/effect.dx11/managed/space/booster/boostervolumetric.sm_depth,2d/2d9f949e6c6ef9ba_37d450d08869564400fefc34ac9468fb,37d450d08869564400fefc34ac9468fb,23858,5743
res:/graphics/effect.dx11/managed/space/booster/boostervolumetric.sm_hi,09/09393c22013c3bba_7ebec9c4478d0e8112e6d9b6937b8a7d,7ebec9c4478d0e8112e6d9b6937b8a7d,20212,4391
res:/graphics/effect.dx11/managed/space/booster/boostervolumetric.sm_lo,09/09394022013c42f0_9d6ed6e0d7f2d26f90eb5fa80337be39,9d6ed6e0d7f2d26f90eb5fa80337be39,5931,2031
res:/graphics/effect.dx11/managed/space/booster/droneboostervolumetric.sm_depth,6b/6bcddc08281ec278_ea0edb4fd5cff0602f76d2bf7e33c755,ea0edb4fd5cff0602f76d2bf7e33c755,22216,5448
res:/graphics/effect.dx11/managed/space/booster/droneboostervolumetric.sm_hi,b2/b2692ca9f9a93cec_21736bf2e27d93ee06302702c8c7bac2,21736bf2e27d93ee06302702c8c7bac2,19277,4091
res:/graphics/effect.dx11/managed/space/booster/droneboostervolumetric.sm_lo,b2/b26928a9f9a935d6_53730bbf94b82057477e3ec7580b6ac0,53730bbf94b82057477e3ec7580b6ac0,5640,2020
res:/graphics/effect.dx11/managed/space/booster/volumetrictrails.sm_depth,e6/e63fa3b8002fa65b_dcbb123e51753a99c208d32429497422,dcbb123e51753a99c208d32429497422,15391,3629
res:/graphics/effect.dx11/managed/space/booster/volumetrictrails.sm_hi,23/2368e42f8b7a4745_f9645967b2d8bff664b641f9ea7a6d20,f9645967b2d8bff664b641f9ea7a6d20,15391,3628
res:/graphics/effect.dx11/managed/space/booster/volumetrictrails.sm_lo,23/2368e02f8b7a400f_b3f3a05d870987454f8bb4d4aa5a50c6,b3f3a05d870987454f8bb4d4aa5a50c6,1553,598
res:/graphics/effect.dx11/managed/space/decals/v5/decalcounterv5.sm_depth,69/693e831d077334ce_a2c743b30c0aa3d8b533c41d02bd0518,a2c743b30c0aa3d8b533c41d02bd0518,16926,3096
res:/graphics/effect.dx11/managed/space/decals/v5/decalcounterv5.sm_hi,e9/e9c829002a0b269e_ced16e5c83ba2892e44e42931d00bc18,ced16e5c83ba2892e44e42931d00bc18,16742,3060
res:/graphics/effect.dx11/managed/space/decals/v5/decalcounterv5.sm_lo,e9/e9c825002a0b2044_89b28432f6c0191e2d3a5f076e68ed45,89b28432f6c0191e2d3a5f076e68ed45,5694,1315
res:/graphics/effect.dx11/managed/space/decals/v5/decalcylindricv5.sm_depth,41/41d3b9c746f6af6f_2c31a6b3b9ca4c26cc19fa389ba5382e,2c31a6b3b9ca4c26cc19fa389ba5382e,44046,6747
res:/graphics/effect.dx11/managed/space/decals/v5/decalcylindricv5.sm_hi,4e/4e51de3c31b44b19_01cc1bb74279686f9133c8c4b68324d4,01cc1bb74279686f9133c8c4b68324d4,27514,4377
res:/graphics/effect.dx11/managed/space/decals/v5/decalcylindricv5.sm_lo,4e/4e51e23c31b45253_18e48aaadbae969ac31ee4d8581b3fc0,18e48aaadbae969ac31ee4d8581b3fc0,5694,1315
res:/graphics/effect.dx11/managed/space/decals/v5/decalglowcylindricv5.sm_depth,f1/f17d4cf68950af2c_222c9b96b8d7f5da2bafa0c6284745e2,222c9b96b8d7f5da2bafa0c6284745e2,18672,3314
res:/graphics/effect.dx11/managed/space/decals/v5/decalglowcylindricv5.sm_hi,89/89a42962d881e1c0_2b9dc9b5740eca27221e5078c04fc84f,2b9dc9b5740eca27221e5078c04fc84f,18488,3284
res:/graphics/effect.dx11/managed/space/decals/v5/decalglowcylindricv5.sm_lo,89/89a42d62d881e81a_6df3126c6166d3b4dd635cee84281ee8,6df3126c6166d3b4dd635cee84281ee8,5694,1314
res:/graphics/effect.dx11/managed/space/decals/v5/decalglowv5.sm_depth,97/97bb66b320c6a6c1_40329e6842b1b135947bd2400fbafce4,40329e6842b1b135947bd2400fbafce4,17412,3146
res:/graphics/effect.dx11/managed/space/decals/v5/decalglowv5.sm_hi,e1/e1d16bd119f2b7bf_b6f3e715e136ef2b28cacc895a4c1745,b6f3e715e136ef2b28cacc895a4c1745,17228,3105
res:/graphics/effect.dx11/managed/space/decals/v5/decalglowv5.sm_lo,e1/e1d16fd119f2becd_edef4f04bbd338b4688ffc7b002459ed,edef4f04bbd338b4688ffc7b002459ed,5694,1314
res:/graphics/effect.dx11/managed/space/decals/v5/decalholev5.sm_depth,72/725c4063b3b68f5e_82d5d40d72c979507fc99e5b013f4822,82d5d40d72c979507fc99e5b013f4822,17203,3585
res:/graphics/effect.dx11/managed/space/decals/v5/decalholev5.sm_hi,13/130bfcb3c9bf3d4e_312ed467b3808610d218f7d7243767b4,312ed467b3808610d218f7d7243767b4,17019,3548
res:/graphics/effect.dx11/managed/space/decals/v5/decalholev5.sm_lo,13/130bf8b3c9bf3634_64589e0a47e749794b4d3b8374285496,64589e0a47e749794b4d3b8374285496,5694,1317
res:/graphics/effect.dx11/managed/space/decals/v5/decalv5.sm_depth,07/0737bbbb61dfd018_93c7b97e4b7b502e3609327ebfcb1cc4,93c7b97e4b7b502e3609327ebfcb1cc4,41701,5877
res:/graphics/effect.dx11/managed/space/decals/v5/decalv5.sm_hi,c9/c9ef09fa3dd9420c_1c9c9c4a507fd0bb636a9262e28da7fd,1c9c9c4a507fd0bb636a9262e28da7fd,25169,3960
res:/graphics/effect.dx11/managed/space/decals/v5/decalv5.sm_lo,c9/c9ef05fa3dd93bf6_b2d056cc84b65101ec60e87101280b97,b2d056cc84b65101ec60e87101280b97,5694,1316
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalcounterv5.sm_depth,e1/e1a82f339f534a6e_cafa97352808b374f0f139d1a022373f,cafa97352808b374f0f139d1a022373f,16334,2945
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalcounterv5.sm_hi,cd/cd7ba3d82b81bdbe_9e67ac394f7db2e62867a1f643bdfa4f,9e67ac394f7db2e62867a1f643bdfa4f,16150,2911
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalcounterv5.sm_lo,cd/cd7b9fd82b81b764_bfabc3c2c7d9ba63f0f922af1498b9b6,bfabc3c2c7d9ba63f0f922af1498b9b6,5030,1213
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalcylindricv5.sm_depth,69/69a0513223456c0f_705aff6b8991e91e3ecd12ef284ebaec,705aff6b8991e91e3ecd12ef284ebaec,43454,6163
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalcylindricv5.sm_hi,f2/f2d8812b79c15e39_ea9bf77b20e515bb3e3c348eaa41a6a5,ea9bf77b20e515bb3e3c348eaa41a6a5,26922,4246
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalcylindricv5.sm_lo,f2/f2d8852b79c16573_033a96b624e65a008b6abe686c9c03ab,033a96b624e65a008b6abe686c9c03ab,5030,1215
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalglowcylindricv5.sm_depth,9c/9c3285704050f04c_19ec7645d776f3de1e96b6c3013502e4,19ec7645d776f3de1e96b6c3013502e4,18080,3144
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalglowcylindricv5.sm_hi,60/606e82f11ecd8060_3d9c602091bb127ee8304a13e7e8c2fc,3d9c602091bb127ee8304a13e7e8c2fc,17896,3130
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalglowcylindricv5.sm_lo,60/606e86f11ecd86ba_d3d8f635b25f5d1114a2545db722788d,d3d8f635b25f5d1114a2545db722788d,5030,1214
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalglowv5.sm_depth,80/807c0cf65ef9fee1_8e121176757622eb60557e5a64d1e340,8e121176757622eb60557e5a64d1e340,16820,2968
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalglowv5.sm_hi,87/8782873712eb9a5f_385add78ce2379d660fa50788ca0b759,385add78ce2379d660fa50788ca0b759,16636,2966
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalglowv5.sm_lo,87/87828b3712eba16d_783b1759a38ddc595bb3554610a481b2,783b1759a38ddc595bb3554610a481b2,5030,1214
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalholev5.sm_depth,87/87d6d7cfa38d1ffe_9dfa08a843dc07849f5a3cbd87742ca0,9dfa08a843dc07849f5a3cbd87742ca0,16611,3423
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalholev5.sm_hi,66/669f7a84e5465d6e_a8f673449a6068889da856444ebacaf5,a8f673449a6068889da856444ebacaf5,16427,3384
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalholev5.sm_lo,66/669f7684e5465654_aaddb3f3ee715625a6c7f85d6b70c1b1,aaddb3f3ee715625a6c7f85d6b70c1b1,5030,1213
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalv5.sm_depth,5f/5f169f4e5e68c938_5d23baf21074bf80ed6530de74fef2c5,5d23baf21074bf80ed6530de74fef2c5,41109,5758
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalv5.sm_hi,5d/5d96e4bc7d5f07ac_d7225836feb7885455b98b99cbc0fbad,d7225836feb7885455b98b99cbc0fbad,24577,3823
res:/graphics/effect.dx11/managed/space/decals/v5/unpacked_decalv5.sm_lo,5d/5d96e0bc7d5f0096_f60a529059f057dcfeadd259b34355ac,f60a529059f057dcfeadd259b34355ac,5030,1215
res:/graphics/effect.dx11/managed/space/planet/atmosphere.sm_depth,82/825f41ac255b117a_819467e87f40c22d1683e4edfed99912,819467e87f40c22d1683e4edfed99912,10206,2853
res:/graphics/effect.dx11/managed/space/planet/atmosphere.sm_hi,b4/b4bdb9c4d201517a_97f3c4a16788a912f0437ab240849ff2,97f3c4a16788a912f0437ab240849ff2,10206,2853
res:/graphics/effect.dx11/managed/space/planet/atmosphere.sm_lo,b4/b4bdbdc4d20157b0_453a54b6d35ed82b4f2d71a0518620e8,453a54b6d35ed82b4f2d71a0518620e8,2000,747
res:/graphics/effect.dx11/managed/space/planet/aurora.sm_depth,59/59f6cbab034d71d6_586c71504d50a85ec71817f890b68be1,586c71504d50a85ec71817f890b68be1,7972,2027
res:/graphics/effect.dx11/managed/space/planet/aurora.sm_hi,cb/cb4b36201daef106_25c704edabb61e90b34a93953f61f83c,25c704edabb61e90b34a93953f61f83c,7972,2027
res:/graphics/effect.dx11/managed/space/planet/aurora.sm_lo,cb/cb4b32201daeeacc_06b42002c75678a5f27b621c28da9546,06b42002c75678a5f27b621c28da9546,7756,1966
res:/graphics/effect.dx11/managed/space/planet/blitgroundscattering.sm_depth,ae/ae82695cb2c63fd0_f4cdda96ef53dfb3994fe605eb62fcd5,f4cdda96ef53dfb3994fe605eb62fcd5,3118,1121
res:/graphics/effect.dx11/managed/space/planet/blitgroundscattering.sm_hi,61/61110dbce5fed984_5b51d930504c065c7462be48d9cb4b48,5b51d930504c065c7462be48d9cb4b48,3118,1119
res:/graphics/effect.dx11/managed/space/planet/blitgroundscattering.sm_lo,61/611109bce5fed34e_51bb82f5e53840b153018dfff300e7e4,51bb82f5e53840b153018dfff300e7e4,767,440
res:/graphics/effect.dx11/managed/space/planet/earthlikeclouds.sm_depth,74/74f37b37a3697aff_4f51679be7bb1327cfd8fd7a69e174b1,4f51679be7bb1327cfd8fd7a69e174b1,6228,2041
res:/graphics/effect.dx11/managed/space/planet/earthlikeclouds.sm_hi,36/3668b0084fabccc9_b1a12c315b1a226563a9f99d162694ff,b1a12c315b1a226563a9f99d162694ff,6228,2038
res:/graphics/effect.dx11/managed/space/planet/earthlikeclouds.sm_lo,36/3668b4084fabd303_93de8b1a20fb981a89841df824c8487a,93de8b1a20fb981a89841df824c8487a,3537,1127
res:/graphics/effect.dx11/managed/space/planet/earthlikeplanet.sm_depth,81/81c5698b527c483b_f60b095a51ed647803fc7ff8d67e0b36,f60b095a51ed647803fc7ff8d67e0b36,15460,4463
res:/graphics/effect.dx11/managed/space/planet/earthlikeplanet.sm_hi,b9/b9bbe811675038a5_a5efb13fa59f3f5a4d330a34f79cc575,a5efb13fa59f3f5a4d330a34f79cc575,15460,4464
res:/graphics/effect.dx11/managed/space/planet/earthlikeplanet.sm_lo,b9/b9bbe4116750326f_18b715d50566604bef9f56ce1cdb9e4e,18b715d50566604bef9f56ce1cdb9e4e,12105,3639
res:/graphics/effect.dx11/managed/space/planet/gasgiant.sm_depth,f9/f999a883c17a6290_c1c8b031b9e5f6b40cb0c7342ba97675,c1c8b031b9e5f6b40cb0c7342ba97675,10456,3220
res:/graphics/effect.dx11/managed/space/planet/gasgiant.sm_hi,62/62dc8f916f418e44_0d5e5e16206d08c1ff5da74dee8930be,0d5e5e16206d08c1ff5da74dee8930be,10456,3220
res:/graphics/effect.dx11/managed/space/planet/gasgiant.sm_lo,62/62dc8b916f41870e_3ce7eb9d9545e24b7dc07d5c58779b3b,3ce7eb9d9545e24b7dc07d5c58779b3b,8433,2671
res:/graphics/effect.dx11/managed/space/planet/gasgiantdecal.sm_depth,25/25e2de8ff5ed2dd1_e4b045f143cd6839eeed30d7543d5a3f,e4b045f143cd6839eeed30d7543d5a3f,4737,1410
res:/graphics/effect.dx11/managed/space/planet/gasgiantdecal.sm_hi,52/52de8e653e6653ef_ad6810dcecaa25f9fa412c79ba4883ef,ad6810dcecaa25f9fa412c79ba4883ef,4737,1412
res:/graphics/effect.dx11/managed/space/planet/gasgiantdecal.sm_lo,52/52de92653e665a3d_f34cf8fac037681f7f6e610db0159128,f34cf8fac037681f7f6e610db0159128,4393,1283
res:/graphics/effect.dx11/managed/space/planet/iceplanet.sm_depth,f8/f827034c008f6a27_0ba48288cdabe0b85a3adf4fbd7f34e8,0ba48288cdabe0b85a3adf4fbd7f34e8,14726,4155
res:/graphics/effect.dx11/managed/space/planet/iceplanet.sm_hi,ae/aecb5ea49b20f411_2209f689143377b348b472577551cb47,2209f689143377b348b472577551cb47,14726,4157
res:/graphics/effect.dx11/managed/space/planet/iceplanet.sm_lo,ae/aecb62a49b20fb2b_5b8ff07e03c88efe189b18613d7352f5,5b8ff07e03c88efe189b18613d7352f5,9769,3045
res:/graphics/effect.dx11/managed/space/planet/lavaplanet.sm_depth,8c/8c10015b5a85a17a_6ca79b3851d878923e5aa9220176f824,6ca79b3851d878923e5aa9220176f824,16143,4625
res:/graphics/effect.dx11/managed/space/planet/lavaplanet.sm_hi,42/427b3fe4f041017a_808efd0854f95a4176ed2ae902dc563c,808efd0854f95a4176ed2ae902dc563c,16143,4626
res:/graphics/effect.dx11/managed/space/planet/lavaplanet.sm_lo,42/427b43e4f04107b0_23c2ca361a486b0c854878e7f114dde0,23c2ca361a486b0c854878e7f114dde0,11587,3529
res:/graphics/effect.dx11/managed/space/planet/oceanplanet.sm_depth,48/48e2f4e7184c143e_8d7d14f5a73626a43116e0e8bcd96e3e,8d7d14f5a73626a43116e0e8bcd96e3e,10047,3075
res:/graphics/effect.dx11/managed/space/planet/oceanplanet.sm_hi,00/00b0c30e0b7cf1ae_e9f68bc051cc0706d937b1e2bcbfba12,e9f68bc051cc0706d937b1e2bcbfba12,10047,3076
res:/graphics/effect.dx11/managed/space/planet/oceanplanet.sm_lo,00/00b0bf0e0b7cea94_8a6395d8c481cb95dcc2c3df685a42f8,8a6395d8c481cb95dcc2c3df685a42f8,8855,2727
res:/graphics/effect.dx11/managed/space/planet/planetpicking.sm_depth,30/30c46b32d1f91557_41007373a16f3db9d21110cf40aef03f,41007373a16f3db9d21110cf40aef03f,1453,684
res:/graphics/effect.dx11/managed/space/planet/planetpicking.sm_hi,7d/7d7071c3b34b6aa1_ebb42931394f59d2109b06444bfe6d53,ebb42931394f59d2109b06444bfe6d53,1453,683
res:/graphics/effect.dx11/managed/space/planet/planetpicking.sm_lo,7d/7d7075c3b34b71fb_61c0f6ca1fc2310cfccded836bf182eb,61c0f6ca1fc2310cfccded836bf182eb,1453,682
res:/graphics/effect.dx11/managed/space/planet/planetzonly.sm_depth,41/41a6031554db78a8_c28829b8544a3e8c0cc76487812a6b9a,c28829b8544a3e8c0cc76487812a6b9a,1315,611
res:/graphics/effect.dx11/managed/space/planet/planetzonly.sm_hi,c2/c2889eca9e45103c_62b80040df3acbffeead3c4e372d9ab9,62b80040df3acbffeead3c4e372d9ab9,1315,612
res:/graphics/effect.dx11/managed/space/planet/planetzonly.sm_lo,c2/c2889aca9e4509e6_77293a722471a691ba325f3acf883774,77293a722471a691ba325f3acf883774,1315,612
res:/graphics/effect.dx11/managed/space/planet/rings.sm_depth,e5/e50c01112ebc414d_77be71961cdb5e8fa8aa617d77c8ef3e,77be71961cdb5e8fa8aa617d77c8ef3e,7889,1869
res:/graphics/effect.dx11/managed/space/planet/rings.sm_hi,5f/5f755792c6d3a80b_5b3d9ed94ce2b0758016e1b17680601d,5b3d9ed94ce2b0758016e1b17680601d,7889,1869
res:/graphics/effect.dx11/managed/space/planet/rings.sm_lo,5f/5f755392c6d3a1f9_e95ea420140e16d7650c2b27fa5db653,e95ea420140e16d7650c2b27fa5db653,5961,1582
res:/graphics/effect.dx11/managed/space/planet/sandstormplanet.sm_depth,bf/bfd59362f58a11eb_b879115b7d891097c39e1f4083661221,b879115b7d891097c39e1f4083661221,14239,4131
res:/graphics/effect.dx11/managed/space/planet/sandstormplanet.sm_hi,eb/ebe9ca37cfbd4575_07d9bb8414bac1298c1deb8064a7f130,07d9bb8414bac1298c1deb8064a7f130,14239,4130
res:/graphics/effect.dx11/managed/space/planet/sandstormplanet.sm_lo,eb/ebe9c637cfbd3e3f_4b9768568b74259daef5fb07b4855095,4b9768568b74259daef5fb07b4855095,10844,3364
res:/graphics/effect.dx11/managed/space/planet/shatteredplanetrocks.sm_depth,cb/cbe4bca0b414d616_b4b7d8e684918b6fbf3db71c1ca83f1f,b4b7d8e684918b6fbf3db71c1ca83f1f,8320,2649
res:/graphics/effect.dx11/managed/space/planet/shatteredplanetrocks.sm_hi,c4/c4166d91803d6a46_ee461f2c33f0c55c06696216f64050e2,ee461f2c33f0c55c06696216f64050e2,8234,2634
res:/graphics/effect.dx11/managed/space/planet/shatteredplanetrocks.sm_lo,c4/c4166991803d630c_62fc9d1ae348872eab1f5b4ae93b8a3d,62fc9d1ae348872eab1f5b4ae93b8a3d,6208,1926
res:/graphics/effect.dx11/managed/space/planet/simplemoon.sm_depth,fa/fa4424661d0386bd_6142a71a77c531bed5f19b91421361a9,6142a71a77c531bed5f19b91421361a9,15231,4326
res:/graphics/effect.dx11/managed/space/planet/simplemoon.sm_hi,3e/3e572fdda6c3291b_04af2bea62c434dbe878dde4a5b336a6,04af2bea62c434dbe878dde4a5b336a6,15231,4324
res:/graphics/effect.dx11/managed/space/planet/simplemoon.sm_lo,3e/3e572bdda6c322c9_8e978bde5cdcf8df0782dfa664ce501f,8e978bde5cdcf8df0782dfa664ce501f,9013,2791
res:/graphics/effect.dx11/managed/space/planet/solarflare.sm_depth,03/0365dc9bd9a56d45_db9235044b499da9a65319d58d5e0b93,db9235044b499da9a65319d58d5e0b93,7758,2546
res:/graphics/effect.dx11/managed/space/planet/solarflare.sm_hi,25/2579d3915d96f523_3d03c8b9a8d6508e6f48d5e043dc92fe,3d03c8b9a8d6508e6f48d5e043dc92fe,3984,1513
res:/graphics/effect.dx11/managed/space/planet/solarflare.sm_lo,25/2579cf915d96ee11_7ed992d5e4ffce569d84c6f8ab7de258,7ed992d5e4ffce569d84c6f8ab7de258,3768,1442
res:/graphics/effect.dx11/managed/space/planet/solarflareanimated.sm_depth,3a/3ab39a9fa22a4af8_d2429a3c6669fcf01f27e678a571af8b,d2429a3c6669fcf01f27e678a571af8b,8808,2734
res:/graphics/effect.dx11/managed/space/planet/solarflareanimated.sm_hi,1a/1a9e82cf3631d66c_73ac2b9b08a9fa99d8d0f67e92b9353d,73ac2b9b08a9fa99d8d0f67e92b9353d,5024,1729
res:/graphics/effect.dx11/managed/space/planet/solarflareanimated.sm_lo,1a/1a9e7ecf3631cf56_a0b68a5d5139c646f284b0ab4b1177c8,a0b68a5d5139c646f284b0ab4b1177c8,2548,1119
res:/graphics/effect.dx11/managed/space/planet/suncorona.sm_depth,b1/b1d030d00ad04064_5d3b361421121b0078f337156358791c,5d3b361421121b0078f337156358791c,9273,2660
res:/graphics/effect.dx11/managed/space/planet/suncorona.sm_hi,61/61e936a70f67d7f8_a0a43b8ee62bbcf4bf6a7196549f63d0,a0a43b8ee62bbcf4bf6a7196549f63d0,9273,2661
res:/graphics/effect.dx11/managed/space/planet/suncorona.sm_lo,61/61e93aa70f67de32_9db8d53c7c2066d312d4b058e8391af6,9db8d53c7c2066d312d4b058e8391af6,5463,1671
res:/graphics/effect.dx11/managed/space/planet/sunflare.sm_depth,c9/c94555d6c313c398_8fcbbc63bd1c0c4c586e209f5abac800,8fcbbc63bd1c0c4c586e209f5abac800,3793,1368
res:/graphics/effect.dx11/managed/space/planet/sunflare.sm_hi,3f/3fc4d2e06cdf1c8c_2d1df72a664899d0ef7825b261f8e1f4,2d1df72a664899d0ef7825b261f8e1f4,3793,1366
res:/graphics/effect.dx11/managed/space/planet/sunflare.sm_lo,3f/3fc4cee06cdf1676_6cb0430cbed547b9f7750cded8e02274,6cb0430cbed547b9f7750cded8e02274,2143,919
res:/graphics/effect.dx11/managed/space/planet/sunsurface.sm_depth,63/6345ecb3e47faa5f_9ab2ed60fb738f8085d96c4652127073,9ab2ed60fb738f8085d96c4652127073,8515,2550
res:/graphics/effect.dx11/managed/space/planet/sunsurface.sm_hi,b8/b8c1fd50d68067a9_9f335b586244390219beef64c9519845,9f335b586244390219beef64c9519845,7507,2341
res:/graphics/effect.dx11/managed/space/planet/sunsurface.sm_lo,b8/b8c20150d6806ee3_4fe2835573cd8743a18c12724e60e97d,4fe2835573cd8743a18c12724e60e97d,3615,1281
res:/graphics/effect.dx11/managed/space/planet/suntexturedflare.sm_depth,ad/ade1983581117fb3_6cc8c8cdfe5714f2921cdeec269082a3,6cc8c8cdfe5714f2921cdeec269082a3,4992,1761
res:/graphics/effect.dx11/managed/space/planet/suntexturedflare.sm_hi,03/0335ed40f5a1a85d_7f9b64c18b2ef6eb172d7fb343eb8d67,7f9b64c18b2ef6eb172d7fb343eb8d67,4992,1761
res:/graphics/effect.dx11/managed/space/planet/suntexturedflare.sm_lo,03/0335e940f5a1a107_1c3d0b78bea80f7f45e2ffe32547864f,1c3d0b78bea80f7f45e2ffe32547864f,4776,1690
res:/graphics/effect.dx11/managed/space/planet/sunwhisps.sm_depth,65/65e3d62969ea174e_67555ebecd080cb6a070216affd14e22,67555ebecd080cb6a070216affd14e22,4872,1791
res:/graphics/effect.dx11/managed/space/planet/sunwhisps.sm_hi,d3/d3cd9a4bf80dce1e_d2f074d9ef9e8a9d99bb79a94cd53309,d2f074d9ef9e8a9d99bb79a94cd53309,4872,1791
res:/graphics/effect.dx11/managed/space/planet/sunwhisps.sm_lo,d3/d3cd964bf80dc7c4_f3ef4ef7c9f12bb2f7cf97eec5a60146,f3ef4ef7c9f12bb2f7cf97eec5a60146,4656,1727
res:/graphics/effect.dx11/managed/space/planet/thunderstormplanet.sm_depth,d8/d8e7138af58742df_582a9fdc84a0feb68a05bae1b7f76a78,582a9fdc84a0feb68a05bae1b7f76a78,13061,3881
res:/graphics/effect.dx11/managed/space/planet/thunderstormplanet.sm_hi,4c/4c55e46928bd3129_10bfa4f9424f3e8d1a0bcfe2440bc18d,10bfa4f9424f3e8d1a0bcfe2440bc18d,13061,3881
res:/graphics/effect.dx11/managed/space/planet/thunderstormplanet.sm_lo,4c/4c55e86928bd3863_2c8dc15c10efe80c68656942b4c47283,2c8dc15c10efe80c68656942b4c47283,8044,2535
res:/graphics/effect.dx11/managed/space/planet/ui/resourcemap.sm_depth,40/408ed125679de929_b51e0162bc9221db45b238e8b3cff12e,b51e0162bc9221db45b238e8b3cff12e,4590,1516
res:/graphics/effect.dx11/managed/space/planet/ui/resourcemap.sm_hi,48/488ff7b201679e27_e52c793ca4d7819cb07d826f08e8e0e1,e52c793ca4d7819cb07d826f08e8e0e1,4590,1517
res:/graphics/effect.dx11/managed/space/planet/ui/resourcemap.sm_lo,48/488ffbb20167a575_22c26f2d6c74fefdb4c1a0a3ce9744b8,22c26f2d6c74fefdb4c1a0a3ce9744b8,3691,1382
res:/graphics/effect.dx11/managed/space/postprocess/blur.sm_depth,ee/ee95daf167f7908a_f230bb022b86bb619afd6308f2fa12dc,f230bb022b86bb619afd6308f2fa12dc,56653,3936
res:/graphics/effect.dx11/managed/space/postprocess/blur.sm_hi,64/64cd1fff5dff20ea_59db5afe5142bb2283ac1a50d20ebee7,59db5afe5142bb2283ac1a50d20ebee7,56653,3937
res:/graphics/effect.dx11/managed/space/postprocess/blur.sm_lo,64/64cd23ff5dff2720_155dd9305c98ccd31aa851673e3f77cb,155dd9305c98ccd31aa851673e3f77cb,56653,3937
res:/graphics/effect.dx11/managed/space/postprocess/blurbig.sm_depth,1f/1fbe664e0f05b5c0_9c154cefd0c827de978ded475c4f70bd,9c154cefd0c827de978ded475c4f70bd,1749,965
res:/graphics/effect.dx11/managed/space/postprocess/blurbig.sm_hi,c2/c27db0c7fc2eb154_6bd5bbaf88e4a646767b5e2d8f45ead6,6bd5bbaf88e4a646767b5e2d8f45ead6,1749,962
res:/graphics/effect.dx11/managed/space/postprocess/blurbig.sm_lo,c2/c27dacc7fc2eaa1e_634017426c85fb337f99273ab79ef4ca,634017426c85fb337f99273ab79ef4ca,1749,965
res:/graphics/effect.dx11/managed/space/postprocess/blursmall.sm_depth,bc/bc8f5438abf82e49_581f3d7d24b57e78eec6e43e583302ef,581f3d7d24b57e78eec6e43e583302ef,1541,830
res:/graphics/effect.dx11/managed/space/postprocess/blursmall.sm_hi,7c/7cef2b7d3e86c3c7_23e06ccc82ab64b995300ee3dc040a3f,23e06ccc82ab64b995300ee3dc040a3f,1541,831
res:/graphics/effect.dx11/managed/space/postprocess/blursmall.sm_lo,7c/7cef2f7d3e86ca15_33f57e6267e2adfd9fbe31e5bb01a0e5,33f57e6267e2adfd9fbe31e5bb01a0e5,1541,830
res:/graphics/effect.dx11/managed/space/postprocess/bokeh.sm_depth,6d/6dcc641bb53f0b80_a19f523115e5f3f9ad1cf9c2d4999efa,a19f523115e5f3f9ad1cf9c2d4999efa,12589,1888
res:/graphics/effect.dx11/managed/space/postprocess/bokeh.sm_hi,78/78c248167f666914_08d7c5ae0b088ef6de720a32a565e310,08d7c5ae0b088ef6de720a32a565e310,12589,1887
res:/graphics/effect.dx11/managed/space/postprocess/bokeh.sm_lo,78/78c244167f6662de_2868977ec6ca797371b3b35693d0d08f,2868977ec6ca797371b3b35693d0d08f,12589,1889
res:/graphics/effect.dx11/managed/space/postprocess/bokehtaa.sm_depth,f8/f85db3209f01fd8e_0b273038296ae5a406de022ba9ffac17,0b273038296ae5a406de022ba9ffac17,16743,2083
res:/graphics/effect.dx11/managed/space/postprocess/bokehtaa.sm_hi,5b/5b0a7321bda5cd5e_2ad83671ad6ae23c62d712588b8498bc,2ad83671ad6ae23c62d712588b8498bc,16743,2082
res:/graphics/effect.dx11/managed/space/postprocess/bokehtaa.sm_lo,5b/5b0a6f21bda5c604_ca844f2fcc3d9be55caad530c5e8f2a9,ca844f2fcc3d9be55caad530c5e8f2a9,16743,2085
res:/graphics/effect.dx11/managed/space/postprocess/cas.sm_depth,2a/2a23b64899efa210_7d2c806334b7a76a8cafb07f778569e8,7d2c806334b7a76a8cafb07f778569e8,5656,1043
res:/graphics/effect.dx11/managed/space/postprocess/cas.sm_hi,cb/cb860005739b4cc4_03f6af423301137e0f65525cb154d60d,03f6af423301137e0f65525cb154d60d,5656,1043
res:/graphics/effect.dx11/managed/space/postprocess/cas.sm_lo,cb/cb85fc05739b458e_d82d53e754cf2fd6862566897f111337,d82d53e754cf2fd6862566897f111337,5656,1043
res:/graphics/effect.dx11/managed/space/postprocess/circleofconfusion.sm_depth,90/903a28e1f5cecdfa_027309cb7b707355c04d39a774fa8459,027309cb7b707355c04d39a774fa8459,3185,1105
res:/graphics/effect.dx11/managed/space/postprocess/circleofconfusion.sm_hi,92/92a82623943286fa_2f82732db723779d5a9cc47731c76e5e,2f82732db723779d5a9cc47731c76e5e,3185,1104
res:/graphics/effect.dx11/managed/space/postprocess/circleofconfusion.sm_lo,92/92a82a2394328d30_44b8793b1ee735668ad518dda4eb4493,44b8793b1ee735668ad518dda4eb4493,3185,1104
res:/graphics/effect.dx11/managed/space/postprocess/colordiffdetect.sm_depth,d3/d3f11c7ac3298b9a_ce521ef370402570c0123c96c9eaeb51,ce521ef370402570c0123c96c9eaeb51,4079,1194
res:/graphics/effect.dx11/managed/space/postprocess/colordiffdetect.sm_hi,e0/e0dfb44d3e05171a_bc6c4fc5381b5699cd664a87f66b5ba2,bc6c4fc5381b5699cd664a87f66b5ba2,4079,1193
res:/graphics/effect.dx11/managed/space/postprocess/colordiffdetect.sm_lo,e0/e0dfb84d3e051e50_3f6b6ae39590ffbb39730bad487f2ae4,3f6b6ae39590ffbb39730bad487f2ae4,4079,1192
res:/graphics/effect.dx11/managed/space/postprocess/colordownfilter4.sm_depth,60/609c956b26fa8530_e7d3011e36dddbf91fc9c49d78206b19,e7d3011e36dddbf91fc9c49d78206b19,3045,858
res:/graphics/effect.dx11/managed/space/postprocess/colordownfilter4.sm_hi,74/74b68313cb9ed064_4cf89ffd616d00c8732f4858f75bde41,4cf89ffd616d00c8732f4858f75bde41,3045,858
res:/graphics/effect.dx11/managed/space/postprocess/colordownfilter4.sm_lo,74/74b67f13cb9ec92e_3e7855f5c85362b41cf8eaffa64f54a9,3e7855f5c85362b41cf8eaffa64f54a9,3045,858
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurhorizontal.sm_depth,48/483b4cb91e5e6808_e38879e08d136b5e0653d05f123873c5,e38879e08d136b5e0653d05f123873c5,3303,1008
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurhorizontal.sm_hi,60/604efd1e83c9041c_bc031da98b488ec3487fe16543c941ce,bc031da98b488ec3487fe16543c941ce,3303,1008
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurhorizontal.sm_lo,60/604ef91e83c8fdc6_e3965fddeae445b7eb01dfaef110d0a3,e3965fddeae445b7eb01dfaef110d0a3,3303,1009
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurhorizontalbig.sm_depth,3c/3c4830dadccbb2a2_02c8345a1349ac678d571a845be2f2d3,02c8345a1349ac678d571a845be2f2d3,2202,1084
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurhorizontalbig.sm_hi,fe/fe6d158812dfa462_158856e90689db83ba7a3b227292b4b3,158856e90689db83ba7a3b227292b4b3,2202,1082
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurhorizontalbig.sm_lo,fe/fe6d198812dfaab8_0fddf7ff88f401b66bd8d43ff7daa498,0fddf7ff88f401b66bd8d43ff7daa498,1786,911
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurvertical.sm_depth,f8/f865a99baba9843e_8079f4b0cc78d03fd12726757ca53a0b,8079f4b0cc78d03fd12726757ca53a0b,3303,1013
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurvertical.sm_hi,2f/2f652bbfa6d541ae_69f998c4205dc03a58ad0eba2efb4967,69f998c4205dc03a58ad0eba2efb4967,3303,1013
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurvertical.sm_lo,2f/2f6527bfa6d53a94_68c72919626a036e9a0be590bde496ef,68c72919626a036e9a0be590bde496ef,3303,1015
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurverticalbig.sm_depth,d7/d7c16f1e9a0afdc4_f361b9ab4bc6f490aa599afbb69d52df,f361b9ab4bc6f490aa599afbb69d52df,2182,1079
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurverticalbig.sm_hi,86/86080be65d25bad8_d33a19abebb33b8dfb49c2c11fab8a82,d33a19abebb33b8dfb49c2c11fab8a82,2182,1081
res:/graphics/effect.dx11/managed/space/postprocess/colorexpblurverticalbig.sm_lo,86/86080fe65d25c112_b77c3ce38320edc40c171ae2ae1e6df1,b77c3ce38320edc40c171ae2ae1e6df1,1019,585
res:/graphics/effect.dx11/managed/space/postprocess/colorfade.sm_depth,08/081cc8936ac15834_ec258e952bc75fd25658171ee35eeb60,ec258e952bc75fd25658171ee35eeb60,1190,669
res:/graphics/effect.dx11/managed/space/postprocess/colorfade.sm_hi,22/220b2e3ab7f3f5a8_3352e1115c6dc5c4198798c380ea918c,3352e1115c6dc5c4198798c380ea918c,1190,667
res:/graphics/effect.dx11/managed/space/postprocess/colorfade.sm_lo,22/220b323ab7f3fce2_c274893b375514d79967c801e14178df,c274893b375514d79967c801e14178df,1190,667
res:/graphics/effect.dx11/managed/space/postprocess/colorgaussianblurhorizontal.sm_depth,f5/f593793bf3b98b6c_04e675c8076e3cff0f740d11038213fb,04e675c8076e3cff0f740d11038213fb,3303,1019
res:/graphics/effect.dx11/managed/space/postprocess/colorgaussianblurhorizontal.sm_hi,15/15cac4c5051fa600_6febf95bc5923c355810b8ed46bb77a6,6febf95bc5923c355810b8ed46bb77a6,3303,1012
res:/graphics/effect.dx11/managed/space/postprocess/colorgaussianblurhorizontal.sm_lo,15/15cac8c5051fad5a_08da053001dea6e97de5874197d1c619,08da053001dea6e97de5874197d1c619,3303,1011
res:/graphics/effect.dx11/managed/space/postprocess/colorgaussianblurvertical.sm_depth,36/36a5d76ef4b352ea_195f3e2f6762b99ebf8383a31d34c0e6,195f3e2f6762b99ebf8383a31d34c0e6,3303,1012
res:/graphics/effect.dx11/managed/space/postprocess/colorgaussianblurvertical.sm_hi,0a/0affa53c2406f5ca_ad0946bd5d3226d0b872c3432584fe70,ad0946bd5d3226d0b872c3432584fe70,3303,1012
res:/graphics/effect.dx11/managed/space/postprocess/colorgaussianblurvertical.sm_lo,0a/0affa93c2406fc00_627fc2872e2c55f15db19ca4eab2b141,627fc2872e2c55f15db19ca4eab2b141,3303,1011
res:/graphics/effect.dx11/managed/space/postprocess/colorhighpassfilter.sm_depth,7b/7be3e8bd8c5737d1_a1c080dc9fe271f4cffcc74f0476589d,a1c080dc9fe271f4cffcc74f0476589d,1536,812
res:/graphics/effect.dx11/managed/space/postprocess/colorhighpassfilter.sm_hi,79/79c004934a1c71ef_24dafe1d6f50bbd34d5433536df1ab82,24dafe1d6f50bbd34d5433536df1ab82,1536,809
res:/graphics/effect.dx11/managed/space/postprocess/colorhighpassfilter.sm_lo,79/79c008934a1c783d_d8123f5a9885055de31eb2d242be5079,d8123f5a9885055de31eb2d242be5079,1536,810
res:/graphics/effect.dx11/managed/space/postprocess/colorlut.sm_depth,6c/6ccead78cb67bf6b_ebbd1453a49f53537dd9ba9b7ec8a04a,ebbd1453a49f53537dd9ba9b7ec8a04a,1340,716
res:/graphics/effect.dx11/managed/space/postprocess/colorlut.sm_hi,1b/1bc42cdb21784df5_00f8e45d6742364e315e2d3cd035ade6,00f8e45d6742364e315e2d3cd035ade6,1340,715
res:/graphics/effect.dx11/managed/space/postprocess/colorlut.sm_lo,1b/1bc428db217846bf_5371cf54718303658233805a510328e5,5371cf54718303658233805a510328e5,1340,716
res:/graphics/effect.dx11/managed/space/postprocess/colorlut_preservealpha.sm_depth,86/861ff240197caca8_c0195be1a2be8195b2b811f5a402794d,c0195be1a2be8195b2b811f5a402794d,1712,826
res:/graphics/effect.dx11/managed/space/postprocess/colorlut_preservealpha.sm_hi,49/494fc39c1a98ac3c_b1c50d60fc9e33b93851f59672f5ac80,b1c50d60fc9e33b93851f59672f5ac80,1712,827
res:/graphics/effect.dx11/managed/space/postprocess/colorlut_preservealpha.sm_lo,49/494fbf9c1a98a5e6_9313fa789bd974b3277bf669b5916009,9313fa789bd974b3277bf669b5916009,1712,825
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4.sm_depth,f1/f1f28755a067e8e7_ee1cbee187d0aae29b99107fcc3a49b9,ee1cbee187d0aae29b99107fcc3a49b9,1170,671
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4.sm_hi,91/91cf09ed6414b9d1_8eaa85aaa926d2b8e8ef285ac33dfbc5,8eaa85aaa926d2b8e8ef285ac33dfbc5,1170,668
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4.sm_lo,91/91cf0ded6414c0eb_5a9131e04fb3556c03f5dc5b52fca51d,5a9131e04fb3556c03f5dc5b52fca51d,1170,671
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_add.sm_depth,29/2980051e808de7db_d4177a07638ec3b51d6c2e344dc11330,d4177a07638ec3b51d6c2e344dc11330,1384,731
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_add.sm_hi,a9/a9e5555783a70bc5_902f4255681d222213132b922b1435b2,902f4255681d222213132b922b1435b2,1384,731
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_add.sm_lo,a9/a9e5515783a7048f_a775f98cb98f946fcd412e97e32fe77e,a775f98cb98f946fcd412e97e32fe77e,1384,731
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_blend.sm_depth,6b/6b5b131c41a05013_d8247580527b6159e905d31217e40f9d,d8247580527b6159e905d31217e40f9d,1448,771
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_blend.sm_hi,d9/d96ba02556d53f3d_8ee7f91c673b43aa69a2d740e7af2354,8ee7f91c673b43aa69a2d740e7af2354,1448,772
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_blend.sm_lo,d9/d96b9c2556d538e7_174b1ff226ccdd5d3582d426092573cd,174b1ff226ccdd5d3582d426092573cd,1448,771
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_overexpose.sm_depth,21/2183ae77f8c66172_35efe803ca4e524b3ac66bf198f04872,35efe803ca4e524b3ac66bf198f04872,1206,692
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_overexpose.sm_hi,3f/3f17273466276a92_c6064d44541445b58d9b052b9468f55f,c6064d44541445b58d9b052b9468f55f,1206,693
res:/graphics/effect.dx11/managed/space/postprocess/colorupfilter4_overexpose.sm_lo,3f/3f172b34662771a8_f400e70bad705f2afe0bcfa326f41f67,f400e70bad705f2afe0bcfa326f41f67,1206,692
res:/graphics/effect.dx11/managed/space/postprocess/createhistograms.sm_depth,48/48c2af18d0989dd0_9fb584cfe8340a1dad1464c270b48d85,9fb584cfe8340a1dad1464c270b48d85,2061,960
res:/graphics/effect.dx11/managed/space/postprocess/createhistograms.sm_hi,c7/c77a87c20bddf384_fb694b90c1ef12a8e4127bd24057ae2c,fb694b90c1ef12a8e4127bd24057ae2c,2061,961
res:/graphics/effect.dx11/managed/space/postprocess/createhistograms.sm_lo,c7/c77a83c20bdded4e_fc4d31591c377e5c4f9b7999b97980c2,fc4d31591c377e5c4f9b7999b97980c2,1809,871
res:/graphics/effect.dx11/managed/space/postprocess/desaturate.sm_depth,b5/b52f9a4c6ed762d5_6e718cf5ef7f93d64101c2ba6cd16fae,6e718cf5ef7f93d64101c2ba6cd16fae,1250,703
res:/graphics/effect.dx11/managed/space/postprocess/desaturate.sm_hi,4b/4b9e36bebf5adbd3_f7f4cb7f825cb43c2d4b260c41f1787a,f7f4cb7f825cb43c2d4b260c41f1787a,1250,702
res:/graphics/effect.dx11/managed/space/postprocess/desaturate.sm_lo,4b/4b9e32bebf5ad481_04d0c067e17464c4298f9f4f3bfc10ab,04d0c067e17464c4298f9f4f3bfc10ab,1250,702
res:/graphics/effect.dx11/managed/space/postprocess/digiscramble.sm_depth,a8/a81fa5f0646501cf_e6fc31630a586fe51e56fdb5b3a4f706,e6fc31630a586fe51e56fdb5b3a4f706,1866,907
res:/graphics/effect.dx11/managed/space/postprocess/digiscramble.sm_hi,0c/0cb27ce6339e68f9_dd395a23558479d4f7364ba6ba09ee48,dd395a23558479d4f7364ba6ba09ee48,1866,907
res:/graphics/effect.dx11/managed/space/postprocess/digiscramble.sm_lo,0c/0cb280e6339e6f33_72bc777cb6a697f230760bd6a933597a,72bc777cb6a697f230760bd6a933597a,1866,907
res:/graphics/effect.dx11/managed/space/postprocess/displayhud.sm_depth,f6/f61dab633ad90d78_abe4ea20dda6fc0e481a45434261e2c2,abe4ea20dda6fc0e481a45434261e2c2,1948,922
res:/graphics/effect.dx11/managed/space/postprocess/displayhud.sm_hi,bd/bda6eb0a455c1dec_4bb12c6b1f6ce2980dfeb2682f7eef00,4bb12c6b1f6ce2980dfeb2682f7eef00,1948,923
res:/graphics/effect.dx11/managed/space/postprocess/displayhud.sm_lo,bd/bda6e70a455c16d6_44ea079346f5a9e7124cb7ead050c8f4,44ea079346f5a9e7124cb7ead050c8f4,1948,922
res:/graphics/effect.dx11/managed/space/postprocess/distortion.sm_depth,40/40ee87f3b598c41c_df38c367ab09f48d8b1f2bcabcc2cd52,df38c367ab09f48d8b1f2bcabcc2cd52,1992,889
res:/graphics/effect.dx11/managed/space/postprocess/distortion.sm_hi,e9/e9b2f7daeec34c50_75cf281184aab2d8c5f73e315f17af74,75cf281184aab2d8c5f73e315f17af74,1992,890
res:/graphics/effect.dx11/managed/space/postprocess/distortion.sm_lo,e9/e9b2fbdaeec3536a_e0a744f5681499fb9f5724a4d8809714,e0a744f5681499fb9f5724a4d8809714,1992,890
res:/graphics/effect.dx11/managed/space/postprocess/downsampledepth.sm_depth,fa/fa381e7ea05cf3fe_3b17cf084ca4a2b045a7d9eb4300ce60,3b17cf084ca4a2b045a7d9eb4300ce60,1373,685
res:/graphics/effect.dx11/managed/space/postprocess/downsampledepth.sm_hi,1c/1c45467a39a5d96e_fd915fd7666bc1efc0fe00528fac7833,fd915fd7666bc1efc0fe00528fac7833,1373,685
res:/graphics/effect.dx11/managed/space/postprocess/downsampledepth.sm_lo,1c/1c45427a39a5d254_8466ea03c715c7815408eec267610044,8466ea03c715c7815408eec267610044,1373,685
res:/graphics/effect.dx11/managed/space/postprocess/environmentfogcolor.sm_depth,3a/3acc354c304bdbf3_10480c45c8c11cda459503bcea5d6879,10480c45c8c11cda459503bcea5d6879,3500,1426
res:/graphics/effect.dx11/managed/space/postprocess/environmentfogcolor.sm_hi,af/af410edcc2b3eb9d_9514433fb91b23dba4754cc1094a6089,9514433fb91b23dba4754cc1094a6089,3500,1424
res:/graphics/effect.dx11/managed/space/postprocess/environmentfogcolor.sm_lo,af/af410adcc2b3e547_725c18e5672e1ba01940b457f3770096,725c18e5672e1ba01940b457f3770096,3016,1285
res:/graphics/effect.dx11/managed/space/postprocess/environmentfogcomposit.sm_depth,83/837a217594876a80_68f8973a3f8a0723a3e91961128edd9a,68f8973a3f8a0723a3e91961128edd9a,5182,1842
res:/graphics/effect.dx11/managed/space/postprocess/environmentfogcomposit.sm_hi,ac/ac96310a79b38614_3e14716e31a6a40f2fb6788b7d7892e7,3e14716e31a6a40f2fb6788b7d7892e7,1628,762
res:/graphics/effect.dx11/managed/space/postprocess/environmentfogcomposit.sm_lo,ac/ac962d0a79b37fde_ef8dd1fc911d6951b470ad8ac97afd2c,ef8dd1fc911d6951b470ad8ac97afd2c,1628,762
res:/graphics/effect.dx11/managed/space/postprocess/exposuredebug.sm_depth,c8/c836ec7a20787951_b1a4b532b394d4909538a6619658eb0b,b1a4b532b394d4909538a6619658eb0b,2289,1017
res:/graphics/effect.dx11/managed/space/postprocess/exposuredebug.sm_hi,bc/bc19ffc2a192366f_ee7340798e18f03130e005f342d66bf8,ee7340798e18f03130e005f342d66bf8,2289,1018
res:/graphics/effect.dx11/managed/space/postprocess/exposuredebug.sm_lo,bc/bc1a03c2a1923cbd_9449776beba48583c5bb5ab2fce377c3,9449776beba48583c5bb5ab2fce377c3,2289,1009
res:/graphics/effect.dx11/managed/space/postprocess/exposuretotexture.sm_depth,4b/4b41a14b99981fc2_9d2e0f6a217e701c431387f050a31ef0,9d2e0f6a217e701c431387f050a31ef0,700,463
res:/graphics/effect.dx11/managed/space/postprocess/exposuretotexture.sm_hi,ad/ad612c125c9fc502_15f415ac769df375ce6cd093d70cb8da,15f415ac769df375ce6cd093d70cb8da,700,463
res:/graphics/effect.dx11/managed/space/postprocess/exposuretotexture.sm_lo,ad/ad6130125c9fcc58_407833245e89176a57971d43fe9efa7c,407833245e89176a57971d43fe9efa7c,700,463
res:/graphics/effect.dx11/managed/space/postprocess/filmgrain.sm_depth,f0/f00ac08acb40655c_aa4a353ecc9e093c35f6db75c42167f8,aa4a353ecc9e093c35f6db75c42167f8,4774,1706
res:/graphics/effect.dx11/managed/space/postprocess/filmgrain.sm_hi,52/5279c2233fc3e490_78e33fe84728983b6cbb71cf15fa0fe7,78e33fe84728983b6cbb71cf15fa0fe7,4774,1703
res:/graphics/effect.dx11/managed/space/postprocess/filmgrain.sm_lo,52/5279c6233fc3ebaa_9c251d9d9965a6e246d3bcf8c9578f33,9c251d9d9965a6e246d3bcf8c9578f33,4294,1571
res:/graphics/effect.dx11/managed/space/postprocess/godrays.sm_depth,11/1198e3343b13980a_89b5303da95c3a34b87e6b86cadc5ac8,89b5303da95c3a34b87e6b86cadc5ac8,3717,1589
res:/graphics/effect.dx11/managed/space/postprocess/godrays.sm_hi,2c/2cee2e8363ad376a_f3526600e96ee96906baf501e49c0583,f3526600e96ee96906baf501e49c0583,1267,587
res:/graphics/effect.dx11/managed/space/postprocess/godrays.sm_lo,2c/2cee328363ad3da0_a9aab1be34831379b7376694ab443868,a9aab1be34831379b7376694ab443868,1267,587
res:/graphics/effect.dx11/managed/space/postprocess/highpassfilter.sm_depth,1a/1a49357f31be15bc_9c82f3e17a19645ed8cefe4d4b83cf10,9c82f3e17a19645ed8cefe4d4b83cf10,2928,1195
res:/graphics/effect.dx11/managed/space/postprocess/highpassfilter.sm_hi,d3/d34bb7eec5441c70_e4932ad388f23dc987ed1e6a4d53dbf8,e4932ad388f23dc987ed1e6a4d53dbf8,2928,1193
res:/graphics/effect.dx11/managed/space/postprocess/highpassfilter.sm_lo,d3/d34bbbeec544228a_e1d2ca38ba7d21e41df40e28defdbaff,e1d2ca38ba7d21e41df40e28defdbaff,2676,1115
res:/graphics/effect.dx11/managed/space/postprocess/measureexposure.sm_depth,22/22103700e30a4614_8e29dc47e3b2183fcacc95301cfc321b,8e29dc47e3b2183fcacc95301cfc321b,4671,1313
res:/graphics/effect.dx11/managed/space/postprocess/measureexposure.sm_hi,bd/bdc80e4ee5b7e408_6f798962be4b444f722c32af838063a1,6f798962be4b444f722c32af838063a1,4671,1313
res:/graphics/effect.dx11/managed/space/postprocess/measureexposure.sm_lo,bd/bdc8124ee5b7eb42_7a546ef3f49bfaffac4987f458d1731e,7a546ef3f49bfaffac4987f458d1731e,4671,1313
res:/graphics/effect.dx11/managed/space/postprocess/mergehistograms.sm_depth,87/872baff268b8506e_9ffada66167e7fada622afd835c57305,9ffada66167e7fada622afd835c57305,1392,710
res:/graphics/effect.dx11/managed/space/postprocess/mergehistograms.sm_hi,5e/5e0cc2a573f8cfbe_79348bef098d508216e09578246f3553,79348bef098d508216e09578246f3553,1392,709
res:/graphics/effect.dx11/managed/space/postprocess/mergehistograms.sm_lo,5e/5e0cbea573f8c964_c2d587d931440426c76c68b511e0e864,c2d587d931440426c76c68b511e0e864,1392,711
res:/graphics/effect.dx11/managed/space/postprocess/originalfade.sm_depth,e9/e94ea84c5d4e6f6a_ff5d4ea6d10b480c8e8d9a28d4a67556,ff5d4ea6d10b480c8e8d9a28d4a67556,1411,743
res:/graphics/effect.dx11/managed/space/postprocess/originalfade.sm_hi,77/77ddf66e872e4b4a_880f5c71eeb742adc6e8c906d496bb08,880f5c71eeb742adc6e8c906d496bb08,1411,743
res:/graphics/effect.dx11/managed/space/postprocess/originalfade.sm_lo,77/77ddfa6e872e5180_487646a2f1d3db9cf098d28e77e1f62a,487646a2f1d3db9cf098d28e77e1f62a,1411,742
res:/graphics/effect.dx11/managed/space/postprocess/originalfade_noalpha.sm_depth,4d/4d5b02b86cdfdb3c_bdbf230efa91e315accf25e18b7e41fe,bdbf230efa91e315accf25e18b7e41fe,1299,695
res:/graphics/effect.dx11/managed/space/postprocess/originalfade_noalpha.sm_hi,d6/d64446bc37eb6cf0_1ebb94b7d9fa18d55a31a2f42e3ebf86,1ebb94b7d9fa18d55a31a2f42e3ebf86,1299,694
res:/graphics/effect.dx11/managed/space/postprocess/originalfade_noalpha.sm_lo,d6/d6444abc37eb730a_40c6ef62278189a25213e720bec66fee,40c6ef62278189a25213e720bec66fee,1299,696
res:/graphics/effect.dx11/managed/space/postprocess/reactivemask.sm_depth,20/20d0129592ac93d4_aee3a54b70a3d436e57bc69826f2f557,aee3a54b70a3d436e57bc69826f2f557,1154,622
res:/graphics/effect.dx11/managed/space/postprocess/reactivemask.sm_hi,db/db5a78b728be82c8_e85a3ea1cdbe3b308c6be07af9b0e195,e85a3ea1cdbe3b308c6be07af9b0e195,1154,622
res:/graphics/effect.dx11/managed/space/postprocess/reactivemask.sm_lo,db/db5a7cb728be8902_0691eb83e355a0fdbdad32c0e747e81a,0691eb83e355a0fdbdad32c0e747e81a,1154,621
res:/graphics/effect.dx11/managed/space/postprocess/saturatedblit.sm_depth,6e/6ef9a240a763d6d5_d95685dc7fd91824adf2c2f05dbfdaa3,d95685dc7fd91824adf2c2f05dbfdaa3,945,536
res:/graphics/effect.dx11/managed/space/postprocess/saturatedblit.sm_hi,53/5380a7b59e7037d3_e7f3969d16dffc48367417dbca589577,e7f3969d16dffc48367417dbca589577,945,536
res:/graphics/effect.dx11/managed/space/postprocess/saturatedblit.sm_lo,53/5380a3b59e703081_c5cad46ea9726dbb571371774baaafcd,c5cad46ea9726dbb571371774baaafcd,945,537
res:/graphics/effect.dx11/managed/space/postprocess/scalert.sm_depth,06/06c81b4f7f1f8d29_3bd9f0f1d20c061fe85b4f7b98eb3178,3bd9f0f1d20c061fe85b4f7b98eb3178,1720,716
res:/graphics/effect.dx11/managed/space/postprocess/scalert.sm_hi,51/51d6f1277b9c8a27_4464fbe38092c083e4fd58b5616e426b,4464fbe38092c083e4fd58b5616e426b,1720,718
res:/graphics/effect.dx11/managed/space/postprocess/scalert.sm_lo,51/51d6f5277b9c9175_8bb299b8716592eae10a388f01b26553,8bb299b8716592eae10a388f01b26553,1720,717
res:/graphics/effect.dx11/managed/space/postprocess/signalloss.sm_depth,e6/e6cd9bc3ef850394_4825f15deefc324af8ebf87b9b02c2d2,4825f15deefc324af8ebf87b9b02c2d2,2056,873
res:/graphics/effect.dx11/managed/space/postprocess/signalloss.sm_hi,22/22c59db1b80a1c88_1e87b19b3977826d67484779b9c52d6d,1e87b19b3977826d67484779b9c52d6d,2056,873
res:/graphics/effect.dx11/managed/space/postprocess/signalloss.sm_lo,22/22c5a1b1b80a23c2_340c70766b7daac5541593ca0bc8fcbb,340c70766b7daac5541593ca0bc8fcbb,2056,872
res:/graphics/effect.dx11/managed/space/postprocess/taa.sm_depth,ae/ae8ec08567e7b5f7_7dd3912f9e3ef03b6a5beeacd4d8f32e,7dd3912f9e3ef03b6a5beeacd4d8f32e,219186,15044
res:/graphics/effect.dx11/managed/space/postprocess/taa.sm_hi,3c/3cdd2b98bedc26c1_34faaaf80733b1e1b79564d7e163e483,34faaaf80733b1e1b79564d7e163e483,219186,15045
res:/graphics/effect.dx11/managed/space/postprocess/taa.sm_lo,3c/3cdd2f98bedc2d1b_72928dbfd4a23bab953113e045016224,72928dbfd4a23bab953113e045016224,219186,15042
res:/graphics/effect.dx11/managed/space/postprocess/taacopy.sm_depth,b1/b1bf7b7284f09812_7a012d7be4a8e6c12d2ea8acc644fcd0,7a012d7be4a8e6c12d2ea8acc644fcd0,2740,985
res:/graphics/effect.dx11/managed/space/postprocess/taacopy.sm_hi,75/75e46bbe83e804b2_4c687b8232f2634531e2a8f3f6c32ba9,4c687b8232f2634531e2a8f3f6c32ba9,2740,986
res:/graphics/effect.dx11/managed/space/postprocess/taacopy.sm_lo,75/75e46fbe83e80bc8_90a4d8b9fb1d4c863e99c59809b4c018,90a4d8b9fb1d4c863e99c59809b4c018,2740,987
res:/graphics/effect.dx11/managed/space/postprocess/tonemapping.sm_depth,37/3719f59ac6b0c033_98d426c35b2e7d0befe8d3cbce191884,98d426c35b2e7d0befe8d3cbce191884,620118,29577
res:/graphics/effect.dx11/managed/space/postprocess/tonemapping.sm_hi,69/6964e258418569dd_0a1b8dcf1be6f4a4ae7c93b82a3fd285,0a1b8dcf1be6f4a4ae7c93b82a3fd285,620118,29576
res:/graphics/effect.dx11/managed/space/postprocess/tonemapping.sm_lo,69/6964de5841856287_ae0a34cd0923ca220f82889a823d4c65,ae0a34cd0923ca220f82889a823d4c65,588630,30786
res:/graphics/effect.dx11/managed/space/postprocess/fsr/fsr.sm_depth,99/9901ac1fedfaca02_f840dd5a89883445a6ade3c4e69367a8,f840dd5a89883445a6ade3c4e69367a8,80276,12548
res:/graphics/effect.dx11/managed/space/postprocess/fsr/fsr.sm_hi,fd/fd9957237e497c42_690fe82d5fd58243ff3a6370f1da1117,690fe82d5fd58243ff3a6370f1da1117,80276,12547
res:/graphics/effect.dx11/managed/space/postprocess/fsr/fsr.sm_lo,fd/fd995b237e498298_6a1c8aa29bc364b4875dab91f9d052cc,6a1c8aa29bc364b4875dab91f9d052cc,80276,12549
res:/graphics/effect.dx11/managed/space/spaceobject/fx/banner.sm_depth,69/69f9abf166cd8e2e_5d14b7912886e9e767676958217be4c6,5d14b7912886e9e767676958217be4c6,6928,2100
res:/graphics/effect.dx11/managed/space/spaceobject/fx/banner.sm_hi,4f/4f291f6f3a0d597e_945ce5c62417e240ecbd51706d3eb2ea,945ce5c62417e240ecbd51706d3eb2ea,6928,2099
res:/graphics/effect.dx11/managed/space/spaceobject/fx/banner.sm_lo,4f/4f291b6f3a0d5224_6484c84c9f26cd949354243d9fac71b6,6484c84c9f26cd949354243d9fac71b6,6928,2100
res:/graphics/effect.dx11/managed/space/spaceobject/fx/blinkinglightspool.sm_depth,a2/a26be6ae46ed144d_36a94e520c3e2d829cee814e26acfd81,36a94e520c3e2d829cee814e26acfd81,4502,1561
res:/graphics/effect.dx11/managed/space/spaceobject/fx/blinkinglightspool.sm_hi,59/5921f94ef14a210b_b8fa7399f1f17779452cd2a32cd07387,b8fa7399f1f17779452cd2a32cd07387,3875,1391
res:/graphics/effect.dx11/managed/space/spaceobject/fx/blinkinglightspool.sm_lo,59/5921f54ef14a1af9_4237dd8f7066dcbdf526d6c9d4290809,4237dd8f7066dcbdf526d6c9d4290809,3875,1391
res:/graphics/effect.dx11/managed/space/spaceobject/fx/hazehalfspherical.sm_depth,4d/4d48f4c35d148f0a_d1a7c4c938008bd8726be71460ce2924,d1a7c4c938008bd8726be71460ce2924,5023,1487
res:/graphics/effect.dx11/managed/space/spaceobject/fx/hazehalfspherical.sm_hi,1a/1a5ea2dc8d441c6a_262806e4d49eaf8845485931bf2249b6,262806e4d49eaf8845485931bf2249b6,4733,1404
res:/graphics/effect.dx11/managed/space/spaceobject/fx/hazehalfspherical.sm_lo,1a/1a5ea6dc8d4422a0_b442a97f20458935e3a5292c925d7073,b442a97f20458935e3a5292c925d7073,1785,628
res:/graphics/effect.dx11/managed/space/spaceobject/fx/hazespherical.sm_depth,1a/1ae4f96f9621a44d_72544d4a4d756dfc681663dbe44b89d1,72544d4a4d756dfc681663dbe44b89d1,7841,2325
res:/graphics/effect.dx11/managed/space/spaceobject/fx/hazespherical.sm_hi,0c/0cef6a2dd5a7d10b_b622b82a07fb8d2e1861cad81c491aaf,b622b82a07fb8d2e1861cad81c491aaf,5983,1838
res:/graphics/effect.dx11/managed/space/spaceobject/fx/hazespherical.sm_lo,0c/0cef662dd5a7caf9_45e13750adb18ae0a9ad4666f5e12506,45e13750adb18ae0a9ad4666f5e12506,1785,626
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planeglow.sm_depth,47/4768d6a402aa82ab_a22b1fa53b5176d5f92871f9ed77e038,a22b1fa53b5176d5f92871f9ed77e038,6415,2200
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planeglow.sm_hi,47/4747ff41d7ece235_81bfff77f888adf1008b8fede6ee0ba2,81bfff77f888adf1008b8fede6ee0ba2,6415,2200
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planeglow.sm_lo,47/4747fb41d7ecdbff_60efca782a220fac38f76ab3c44eaaf2,60efca782a220fac38f76ab3c44eaaf2,6415,2198
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planehologram.sm_depth,79/79db9b9f9d86a371_78ec304930153dfa488f7b7d4f836d96,78ec304930153dfa488f7b7d4f836d96,5809,2100
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planehologram.sm_hi,72/72cdfe49d55ca70f_5f0a249e102fca98d497d4ded00da7ec,5f0a249e102fca98d497d4ded00da7ec,5809,2101
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planehologram.sm_lo,72/72ce0249d55cae5d_2f71bba9303fa709820bccc21f0b62fa,2f71bba9303fa709820bccc21f0b62fa,5809,2101
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planepicking.sm_depth,fa/faf4008c12c1fd25_921360ee0825f2cbb2727dd090dc8976,921360ee0825f2cbb2727dd090dc8976,2757,901
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planepicking.sm_hi,28/283d0f331d04b083_041f738fde3237168f12bbe7ea68d1c8,041f738fde3237168f12bbe7ea68d1c8,2757,899
res:/graphics/effect.dx11/managed/space/spaceobject/fx/planepicking.sm_lo,28/283d0b331d04aa71_c6361dac595fda3d6fcfe891db44e349,c6361dac595fda3d6fcfe891db44e349,2757,903
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_hazespherical.sm_depth,fb/fb25565f14b1dc1e_8feb968951aaa460b1a8f2f48016fc39,8feb968951aaa460b1a8f2f48016fc39,10105,2788
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_hazespherical.sm_hi,ce/ce3c78e1efcf6e0e_839c4d87bd71e55676942dd6aa48711d,839c4d87bd71e55676942dd6aa48711d,8378,2306
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_hazespherical.sm_lo,ce/ce3c74e1efcf67f4_91728a58dbbf34549ec718dcc8abbeee,91728a58dbbf34549ec718dcc8abbeee,1785,628
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_planeglow.sm_depth,64/64cf2f085d5b1ce4_e7ec38e5a3a8822998778d5fb2b395f6,e7ec38e5a3a8822998778d5fb2b395f6,6415,2201
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_planeglow.sm_hi,5c/5c9c8d5f6d5e6d78_e1d9cb4fd42ab3dc5cd01e065cfc8eb9,e1d9cb4fd42ab3dc5cd01e065cfc8eb9,6415,2201
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_planeglow.sm_lo,5c/5c9c915f6d5e73b2_45e994d42752c8731532a91bbe7087a7,45e994d42752c8731532a91bbe7087a7,6415,2199
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_planehologram.sm_depth,4f/4fb0b177e09853f6_ad947a95735533ab96622227da199f11,ad947a95735533ab96622227da199f11,5809,2101
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_planehologram.sm_hi,8c/8ca26b9c5e6671a6_2b80df01ab6826540859ba4f20dada2e,2b80df01ab6826540859ba4f20dada2e,5809,2098
res:/graphics/effect.dx11/managed/space/spaceobject/fx/skinned_planehologram.sm_lo,8c/8ca2679c5e666b6c_4e9e61f2d3fcb099941711f928c9fd14,4e9e61f2d3fcb099941711f928c9fd14,5809,2100
res:/graphics/effect.dx11/managed/space/spaceobject/fx/spotlightconepool.sm_depth,0f/0fb62e491745c055_1c6db6356a91333b567c56485fb57316,1c6db6356a91333b567c56485fb57316,3679,1399
res:/graphics/effect.dx11/managed/space/spaceobject/fx/spotlightconepool.sm_hi,b7/b73f373ad107f453_f87d814ac5be6827fef24eb408939aea,f87d814ac5be6827fef24eb408939aea,3679,1400
res:/graphics/effect.dx11/managed/space/spaceobject/fx/spotlightconepool.sm_lo,b7/b73f333ad107ed01_196a72c3cefdb70d2a6f1631126cac26,196a72c3cefdb70d2a6f1631126cac26,3679,1399
res:/graphics/effect.dx11/managed/space/spaceobject/fx/spotlightglowpool.sm_depth,95/9503578e7efe44ff_ec8434c7f4627aa514b820e42550912d,ec8434c7f4627aa514b820e42550912d,11777,2449
res:/graphics/effect.dx11/managed/space/spaceobject/fx/spotlightglowpool.sm_hi,65/65c9fc462be22ac9_cd655e2d1d6d319354dc1433a2d71403,cd655e2d1d6d319354dc1433a2d71403,3925,1489
res:/graphics/effect.dx11/managed/space/spaceobject/fx/spotlightglowpool.sm_lo,65/65ca00462be23103_af7fe75078ff3cb87d694acf7ca0853a,af7fe75078ff3cb87d694acf7ca0853a,3925,1488
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/aoebubble.sm_depth,bd/bd90637f87644260_15c12e5157cf5bc8434a3c8db4955642,15c12e5157cf5bc8434a3c8db4955642,8037,2324
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/aoebubble.sm_hi,54/542635c64e1f3174_811c9b64eb92327eaa44b5de480641e1,811c9b64eb92327eaa44b5de480641e1,8037,2322
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/aoebubble.sm_lo,54/542631c64e1f2a3e_3cbf4c0e2b77ffd0b1d0eaaa291b837f,3cbf4c0e2b77ffd0b1d0eaaa291b837f,7253,2090
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/boundarybubble.sm_depth,4e/4e4afc632c53a97b_f49e5ebce1cd2e04096e08410a16a8e1,f49e5ebce1cd2e04096e08410a16a8e1,6448,2154
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/boundarybubble.sm_hi,bb/bbbf5295ee492ae5_75232ce894a54a175c23f8bebb8454fa,75232ce894a54a175c23f8bebb8454fa,6448,2154
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/boundarybubble.sm_lo,bb/bbbf4e95ee4923af_a966caedee24363113bb90e23a849aeb,a966caedee24363113bb90e23a849aeb,2969,1241
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/warpdisruptionbubble.sm_depth,ca/cab86ecdfe0733da_74f053f5a9c5742b53d7707f11738ec8,74f053f5a9c5742b53d7707f11738ec8,7717,2515
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/warpdisruptionbubble.sm_hi,52/52d0164e6b64dd5a_9be7de6247cbfc0af375388ff9024445,9be7de6247cbfc0af375388ff9024445,7717,2517
res:/graphics/effect.dx11/managed/space/spaceobject/fx/bubble/warpdisruptionbubble.sm_lo,52/52d01a4e6b64e390_751dc120d33939e65fed69eab8997a44,751dc120d33939e65fed69eab8997a44,4650,1652
res:/graphics/effect.dx11/managed/space/spaceobject/fx/missile/lights.sm_depth,c8/c8d7810110cd32a8_464bacc19be4e98c583f8fc6762dae10,464bacc19be4e98c583f8fc6762dae10,2479,1045
res:/graphics/effect.dx11/managed/space/spaceobject/fx/missile/lights.sm_hi,23/23ec5bf2f6d23e3c_bec9989f6cc8540cd5b35c487758e0fa,bec9989f6cc8540cd5b35c487758e0fa,2479,1050
res:/graphics/effect.dx11/managed/space/spaceobject/fx/missile/lights.sm_lo,23/23ec57f2f6d237e6_e401f679d61e68e07e0ec9bf1df0ee5d,e401f679d61e68e07e0ec9bf1df0ee5d,2479,1047
res:/graphics/effect.dx11/managed/space/spaceobject/fx/missile/missile.sm_depth,a8/a804d68827517d9f_396d60ba2f602c50f576e64565ca1109,396d60ba2f602c50f576e64565ca1109,7333,1791
res:/graphics/effect.dx11/managed/space/spaceobject/fx/missile/missile.sm_hi,46/464de445edccb2e9_c9d51bff479c97f60b0680c77a62e11c,c9d51bff479c97f60b0680c77a62e11c,7333,1792
res:/graphics/effect.dx11/managed/space/spaceobject/fx/missile/missile.sm_lo,46/464de845edccb923_f84001240cfdcf4dab9d82a06facc63c,f84001240cfdcf4dab9d82a06facc63c,7333,1793
res:/graphics/effect.dx11/managed/space/spaceobject/fx/traffic/traffic.sm_depth,ec/ec5cf49c631942cb_d5ad4b1957deac53d96a5ef10aa7538f,d5ad4b1957deac53d96a5ef10aa7538f,7602,2171
res:/graphics/effect.dx11/managed/space/spaceobject/fx/traffic/traffic.sm_hi,b4/b48c275d4077fcd5_5de9b3c2bb0ceb7b2b8593463a242d39,5de9b3c2bb0ceb7b2b8593463a242d39,7602,2170
res:/graphics/effect.dx11/managed/space/spaceobject/fx/traffic/traffic.sm_lo,b4/b48c235d4077f59f_78c19a4c7325182f7d1020a9135f77e6,78c19a4c7325182f7d1020a9135f77e6,7602,2172
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxhologramv3.sm_depth,d0/d082e441856d4e61_6e54e43ca35909f3dc76de53dd1d5563,6e54e43ca35909f3dc76de53dd1d5563,5836,1951
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxhologramv3.sm_hi,e5/e55e5d1669ff88df_e879c1ada92a6aa44b27a31942c4c78d,e879c1ada92a6aa44b27a31942c4c78d,5750,1930
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxhologramv3.sm_lo,e5/e55e611669ff8fed_182658a6dfbb0a6da3934e6910d9b650,182658a6dfbb0a6da3934e6910d9b650,5892,1960
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxisishologramv3.sm_depth,31/311bb49d0cedb421_a555aaa96555ee0525b462d549f5a46a,a555aaa96555ee0525b462d549f5a46a,5241,1785
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxisishologramv3.sm_hi,ec/ec1ad9e012358a9f_4e5819db3c2ee12b44294d4c0c94d5f3,4e5819db3c2ee12b44294d4c0c94d5f3,5119,1763
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxisishologramv3.sm_lo,ec/ec1adde0123591ad_d09ec53d1de94bfa7b137af124801eb0,d09ec53d1de94bfa7b137af124801eb0,4878,1603
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxv3.sm_depth,48/485dc7cfed66cd82_639f6bf2a9356f6e50216dae21e3494b,639f6bf2a9356f6e50216dae21e3494b,5469,1923
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxv3.sm_hi,ca/ca02e332a8b786c2_122e72fc4ac66fa7fe20d90dd0db5234,122e72fc4ac66fa7fe20d90dd0db5234,5383,1903
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fxv3.sm_lo,ca/ca02e732a8b78d18_f07ee4dd6460b2434146a3c19ef5a76e,f07ee4dd6460b2434146a3c19ef5a76e,5549,1947
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxdirectionalv3.sm_depth,1e/1e4d5707d0fdf1a7_3e3e038055bf522df0ac20b685551acd,3e3e038055bf522df0ac20b685551acd,8209,2606
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxdirectionalv3.sm_hi,21/2124780776c68a91_f9a93a73fccae32f5da809af74bbed33,f9a93a73fccae32f5da809af74bbed33,8123,2586
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxdirectionalv3.sm_lo,21/21247c0776c691ab_0b4b363b52d9d1c9149078986166330b,0b4b363b52d9d1c9149078986166330b,8313,2639
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxhologramv3.sm_depth,74/7497e8036531ccd0_b9c57e083e8a78090cd6c72cc534e64c,b9c57e083e8a78090cd6c72cc534e64c,6909,2248
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxhologramv3.sm_hi,64/64690aae6fdd8084_5a030994e17e5739ae60ed7b0ca860ec,5a030994e17e5739ae60ed7b0ca860ec,6823,2224
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxhologramv3.sm_lo,64/646906ae6fdd7a4e_88795463e1678678dfd9df2f8e53bc92,88795463e1678678dfd9df2f8e53bc92,6989,2257
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxisishologramv3.sm_depth,98/9861e1d4b32dfaf0_5a4da8ee731a1fba778f694ed7d8d568,5a4da8ee731a1fba778f694ed7d8d568,6358,2101
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxisishologramv3.sm_hi,6b/6beb6b7455377a24_be1074f9ae38353b9e273330dcd1bf94,be1074f9ae38353b9e273330dcd1bf94,6236,2089
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxisishologramv3.sm_lo,6b/6beb6774553773ee_0fd79f24ed4d855c9992b2977cab5e4f,0fd79f24ed4d855c9992b2977cab5e4f,6019,1909
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxv3.sm_depth,1d/1deb829bb89f072b_5e667993087cd9c55fef5b977bda2ab0,5e667993087cd9c55fef5b977bda2ab0,6542,2224
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxv3.sm_hi,15/15c6764e94006fb5_fa5b0ce21e889f19d20bf9599038ca69,fa5b0ce21e889f19d20bf9599038ca69,6456,2214
res:/graphics/effect.dx11/managed/space/spaceobject/v3/skinned_fxv3.sm_lo,15/15c6724e9400697f_c39edb0785f76a4d901eb2faa3623f4e,c39edb0785f76a4d901eb2faa3623f4e,6646,2251
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxdirectionalv3.sm_depth,d6/d6383b10234e53ae_9c696aa9bd6f0919fe20293f01043f88,9c696aa9bd6f0919fe20293f01043f88,7901,2485
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxdirectionalv3.sm_hi,f3/f31eecf5a4d1a9fe_b091a1bde8fc7701ae456d7dea332c85,b091a1bde8fc7701ae456d7dea332c85,7815,2462
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxdirectionalv3.sm_lo,f3/f31ee8f5a4d1a2a4_ded151d8332b7c5faba90f717a89fc7b,ded151d8332b7c5faba90f717a89fc7b,7981,2520
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxhologramv3.sm_depth,63/63e779ad3fae3a5b_5be580fd9a41fb7d0f1a6fbe058374f6,5be580fd9a41fb7d0f1a6fbe058374f6,6861,2227
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxhologramv3.sm_hi,50/5026558dd8e60345_e4c7354b56c1694e7258833a20b1d80b,e4c7354b56c1694e7258833a20b1d80b,6775,2202
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxhologramv3.sm_lo,50/5026518dd8e5fc0f_f457724c06d1fbf75bf034e550471dd7,f457724c06d1fbf75bf034e550471dd7,6941,2248
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxv3.sm_depth,a6/a654adfc69ce9c54_af98ba76a27bf9f395039ce21c109ee7,af98ba76a27bf9f395039ce21c109ee7,6234,2126
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxv3.sm_hi,ac/ace5e85b8a8a9c48_32bed7bb10f0454c64251634400a04ff,32bed7bb10f0454c64251634400a04ff,6148,2093
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpackedskinned_fxv3.sm_lo,ac/ace5ec5b8a8aa282_03ff0ed4d28585c86634199b98c0300d,03ff0ed4d28585c86634199b98c0300d,6314,2134
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxdirectionalv3.sm_depth,88/886c045e4d257cb2_5ad5dbbde21f21f32a9df8b60d609647,5ad5dbbde21f21f32a9df8b60d609647,6084,2053
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxdirectionalv3.sm_hi,e9/e93d22ec881108d2_7fee4597b5ff5c12e6315362ebd864ca,7fee4597b5ff5c12e6315362ebd864ca,5998,2031
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxdirectionalv3.sm_lo,e9/e93d26ec88110fe8_f2c22ced4a3fabeda88bde087460a307,f2c22ced4a3fabeda88bde087460a307,6160,2080
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxhologramv3.sm_depth,d1/d1d76cea5b69aa2f_bb10e37e52b015d4f2af9d479ed65340,bb10e37e52b015d4f2af9d479ed65340,5788,1916
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxhologramv3.sm_hi,29/290b297087be0bd9_e3906c8bf01ff25532f0ee535b2c7af9,e3906c8bf01ff25532f0ee535b2c7af9,5702,1894
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxhologramv3.sm_lo,29/290b2d7087be1213_63087da414e8902090b40af4fce24813,63087da414e8902090b40af4fce24813,5844,1919
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxv3.sm_depth,5e/5e379d861989db50_b1acc91e2df09856bd9004952188b8be,b1acc91e2df09856bd9004952188b8be,5161,1817
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxv3.sm_hi,78/78f4f4ad2193ac04_bcc56c67f940ed70976ae2c1c33f3f6e,bcc56c67f940ed70976ae2c1c33f3f6e,5075,1786
res:/graphics/effect.dx11/managed/space/spaceobject/v3/unpacked_fxv3.sm_lo,78/78f4f0ad2193a5ce_c17c3ceef64c31342afeba7a95fb6c54,c17c3ceef64c31342afeba7a95fb6c54,5217,1827
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/fxdistortionv3.sm_depth,f4/f4d7111b2aa25550_bbed31b2fcb77ab45380425074d2b24c,bbed31b2fcb77ab45380425074d2b24c,8546,2227
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/fxdistortionv3.sm_hi,ea/ea6323054a951a04_2fe8c432c4c0b228fd0626f4158130bf,2fe8c432c4c0b228fd0626f4158130bf,8430,2221
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/fxdistortionv3.sm_lo,ea/ea631f054a9513ce_e2a8f2b0876222ef5cb030ae04032ba8,e2a8f2b0876222ef5cb030ae04032ba8,7938,2130
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/skinned_fxdistortionv3.sm_depth,43/43e8afa0781d9999_49fb0e8308de7b19484bbf6948324be2,49fb0e8308de7b19484bbf6948324be2,9585,2546
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/skinned_fxdistortionv3.sm_hi,4e/4e2eec993b99db37_e5d0dd32243236325dae9b72a1a217af,e5d0dd32243236325dae9b72a1a217af,9469,2527
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/skinned_fxdistortionv3.sm_lo,4e/4e2ef0993b99e245_c0f26d4940e9aed3fbddc355793ccb2d,c0f26d4940e9aed3fbddc355793ccb2d,9077,2440
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/unpackedskinned_fxdistortionv3.sm_depth,a2/a2a26ab27c6c0326_d2fb27ac2af8016954e1a783693c0262,d2fb27ac2af8016954e1a783693c0262,9585,2545
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/unpackedskinned_fxdistortionv3.sm_hi,f7/f7d5f6962288acf6_b25055f70571b6712072620767b9a9b1,b25055f70571b6712072620767b9a9b1,9469,2529
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/unpackedskinned_fxdistortionv3.sm_lo,f7/f7d5f2962288a5bc_72b7001ade3793328fec78fdcd306750,72b7001ade3793328fec78fdcd306750,9077,2441
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/unpacked_fxdistortionv3.sm_depth,30/300b9d81bfa772d4_5975bd1cad5b2dfe0d0db27064809cfd,5975bd1cad5b2dfe0d0db27064809cfd,8546,2227
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/unpacked_fxdistortionv3.sm_hi,1d/1d89259a6a231fc8_9d2400de6e239b067ad452bb60ac5fee,9d2400de6e239b067ad452bb60ac5fee,8430,2221
res:/graphics/effect.dx11/managed/space/spaceobject/v3/fx/unpacked_fxdistortionv3.sm_lo,1d/1d89299a6a232602_9f06e4867e213f46c872be224eddcf04,9f06e4867e213f46c872be224eddcf04,7938,2126
res:/graphics/effect.dx11/managed/space/spaceobject/v5/depthonlyv5.sm_depth,bd/bdfe4136280c4ed9_a89ae557c0d1e958d58721e734821f0d,a89ae557c0d1e958d58721e734821f0d,5828,1541
res:/graphics/effect.dx11/managed/space/spaceobject/v5/depthonlyv5.sm_hi,11/11e0155af35e4477_10dee4f647926e412a006050e28ca06e,10dee4f647926e412a006050e28ca06e,5828,1540
res:/graphics/effect.dx11/managed/space/spaceobject/v5/depthonlyv5.sm_lo,11/11e0195af35e4a85_87ff21165ad9c66fe93296cec213441f,87ff21165ad9c66fe93296cec213441f,5828,1540
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fxdirectionalv5.sm_depth,2f/2fd3f532cf5fdc44_c96a5f7f047a6429bcd5bff7733f282e,c96a5f7f047a6429bcd5bff7733f282e,6392,2162
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fxdirectionalv5.sm_hi,ae/ae3b65cbeb925658_b163728fa83cb1911df2a6b01a919657,b163728fa83cb1911df2a6b01a919657,6306,2139
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fxdirectionalv5.sm_lo,ae/ae3b69cbeb925c92_7921e9795607208c8e394df727151558,7921e9795607208c8e394df727151558,6492,2196
res:/graphics/effect.dx11/managed/space/spaceobject/v5/skinned_depthonlyv5.sm_depth,aa/aad007d49bccd4ae_2add957538d10f6765c9502a20949424,2add957538d10f6765c9502a20949424,8555,2136
res:/graphics/effect.dx11/managed/space/spaceobject/v5/skinned_depthonlyv5.sm_hi,d7/d7322e3104592cfe_d2b52bcba611dfab9b46ef069413d0d1,d2b52bcba611dfab9b46ef069413d0d1,8555,2135
res:/graphics/effect.dx11/managed/space/spaceobject/v5/skinned_depthonlyv5.sm_lo,d7/d7322a31045925a4_fa5ccb6263203192be2eed3617a8c892,fa5ccb6263203192be2eed3617a8c892,8555,2136
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpackedskinned_compositingv5.sm_depth,05/05ff0f1aa6b753c8_865683d614b7fc764609516dad026620,865683d614b7fc764609516dad026620,3736,1247
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpackedskinned_compositingv5.sm_hi,a7/a7df6152c6f0f6dc_171f818da432f2fb940e7050339ed432,171f818da432f2fb940e7050339ed432,3650,1226
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpackedskinned_compositingv5.sm_lo,a7/a7df5d52c6f0ef86_24ce202d95e72561f4a1ee0d946291c3,24ce202d95e72561f4a1ee0d946291c3,3510,1186
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpackedskinned_depthonlyv5.sm_depth,e1/e18fedb74a0499b7_a37b9902008c42fff68cbb00e651aec8,a37b9902008c42fff68cbb00e651aec8,8555,2136
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpackedskinned_depthonlyv5.sm_hi,24/24c6bb60bccfa181_67fa95791649f9fda2c4026b80b5cffb,67fa95791649f9fda2c4026b80b5cffb,8555,2136
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpackedskinned_depthonlyv5.sm_lo,24/24c6bf60bccfa8db_c9258260b84032d95290eff09ce10d94,c9258260b84032d95290eff09ce10d94,8555,2135
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpacked_compositingv5.sm_depth,b8/b8c2d785818238b8_4145076dcccb2220b24ebfbe0139323c,4145076dcccb2220b24ebfbe0139323c,2663,950
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpacked_compositingv5.sm_hi,20/204a34e893e5562c_2e996977867000c25c71d4dee2704a9d,2e996977867000c25c71d4dee2704a9d,2577,921
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpacked_compositingv5.sm_lo,20/204a30e893e54f16_f179ba5bc98d4b9af3ea7a983ccead80,f179ba5bc98d4b9af3ea7a983ccead80,2413,880
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpacked_depthonlyv5.sm_depth,5a/5a7e38b4380db4a7_f714c924eb6d39fafb374749ae74e3f7,f714c924eb6d39fafb374749ae74e3f7,5828,1540
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpacked_depthonlyv5.sm_hi,35/3573735b8119d391_03bfa8948ea42d5f2f684527efc1585c,03bfa8948ea42d5f2f684527efc1585c,5828,1542
res:/graphics/effect.dx11/managed/space/spaceobject/v5/unpacked_depthonlyv5.sm_lo,35/3573775b8119daab_7b9a5ddcfd17e17f896bca3fa26c02a4,7b9a5ddcfd17e17f896bca3fa26c02a4,5828,1541
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fx3dv5.sm_depth,9e/9e6819df50e14118_3545ced4139e0d4aec5c38b50f3cb73b,3545ced4139e0d4aec5c38b50f3cb73b,36176,4220
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fx3dv5.sm_hi,9a/9a5a33b9a429950c_61bb3ccfed329c656495f03b6815dab9,61bb3ccfed329c656495f03b6815dab9,35920,4183
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fx3dv5.sm_lo,9a/9a5a2fb9a4298ef6_be566719fa96c8db0f71b3993e3f2e34,be566719fa96c8db0f71b3993e3f2e34,33804,4213
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxdirectionalv5.sm_depth,f5/f5f427b137349d47_572aa6e06728b079f1266f1232cb05b0,572aa6e06728b079f1266f1232cb05b0,14602,3287
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxdirectionalv5.sm_hi,74/742743fa4eb1fbb1_40d7127df1811a74a59da6b5a62d72b2,40d7127df1811a74a59da6b5a62d72b2,14510,3261
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxdirectionalv5.sm_lo,74/742747fa4eb202cb_c7a40061240115889c9e7050f9ff657e,c7a40061240115889c9e7050f9ff657e,14690,3332
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxdistortionv5.sm_depth,0a/0ae53ae70c5ac340_e6c9828c71bec1080eaa878f4160c622,e6c9828c71bec1080eaa878f4160c622,8842,2343
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxdistortionv5.sm_hi,23/23c870095ccfd9d4_1d6eeeca96d7081bba7ef7a09bd9d833,1d6eeeca96d7081bba7ef7a09bd9d833,8726,2314
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxdistortionv5.sm_lo,23/23c86c095ccfd29e_d68b2c02a69c27e03ed33eb60edefdd7,d68b2c02a69c27e03ed33eb60edefdd7,8258,2247
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxv5.sm_depth,24/2448987b60d3cb67_e5b2e7e71c727c0065346ff474a1caff,e5b2e7e71c727c0065346ff474a1caff,14291,3278
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxv5.sm_hi,f0/f0da3994c7f66151_514cd3b53fe7cb74414c329dd5f4d252,514cd3b53fe7cb74414c329dd5f4d252,14199,3259
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/fxv5.sm_lo,f0/f0da3d94c7f6686b_6a48280e1cb1fd76e74db1ab6fd9214b,6a48280e1cb1fd76e74db1ab6fd9214b,14359,3285
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/motionfx.sm_depth,cb/cb16f178b737b8ec_151154f7079bebe87910952ac87d3de3,151154f7079bebe87910952ac87d3de3,6453,2008
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/motionfx.sm_hi,7b/7b2dac04a5bc2e80_cd23a13f7da5c6973847a2a21ee8caa8,cd23a13f7da5c6973847a2a21ee8caa8,6367,1986
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/motionfx.sm_lo,7b/7b2db004a5bc35da_beb56624df1a425dc5ef1219dfbb6a79,beb56624df1a425dc5ef1219dfbb6a79,6509,2039
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/quadsimpleinstancedlight.sm_depth,89/895302b80dc8fa9a_1bc40ef81cefaa5b3b604d3013a9d9a6,1bc40ef81cefaa5b3b604d3013a9d9a6,3961,1359
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/quadsimpleinstancedlight.sm_hi,17/17159cec0f17641a_edfcb492370bb4980289849298e5db8d,edfcb492370bb4980289849298e5db8d,3875,1335
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/quadsimpleinstancedlight.sm_lo,17/1715a0ec0f176b50_74979416e33177897689eea33cf55e54,74979416e33177897689eea33cf55e54,3697,1367
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fx3dv5.sm_depth,23/231c62d83ce152f1_96dfa9035fbdf0968ac7820d919d6f58,96dfa9035fbdf0968ac7820d919d6f58,43359,5157
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fx3dv5.sm_hi,b4/b45b18576fa6b58f_0c4a6b7c201e3ea4c4c04411792ca9e2,0c4a6b7c201e3ea4c4c04411792ca9e2,43103,5128
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fx3dv5.sm_lo,b4/b45b1c576fa6bcdd_1d06b35df31e9a431755bb017e608e76,1d06b35df31e9a431755bb017e608e76,41035,5148
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxdirectionalv5.sm_depth,48/48ed6e017628ee94_4a5f2d357bd4236298121c74185eca51,4a5f2d357bd4236298121c74185eca51,19209,4215
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxdirectionalv5.sm_hi,32/3214a9f552f9dd88_be44efaf2cf6f9004c6adec2e569ec58,be44efaf2cf6f9004c6adec2e569ec58,19117,4193
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxdirectionalv5.sm_lo,32/3214adf552f9e4c2_bed96828c0965f11e11e363dced4f528,bed96828c0965f11e11e363dced4f528,19301,4244
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxdistortionv5.sm_depth,09/09f96c928b24cb69_8d747697614891e35aa9d595778bcf61,8d747697614891e35aa9d595778bcf61,9881,2661
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxdistortionv5.sm_hi,3e/3efe9a20f1a77567_1399526db0238032998bff8e6ebe03c6,1399526db0238032998bff8e6ebe03c6,9765,2626
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxdistortionv5.sm_lo,3e/3efe9e20f1a77bb5_732d935fd6ff3354269824b1ecf49293,732d935fd6ff3354269824b1ecf49293,9397,2549
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxv5.sm_depth,24/2498fb3fbc416426_b2dc42f8813aee1d07f90a1a4dcd4d2c,b2dc42f8813aee1d07f90a1a4dcd4d2c,19062,4158
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxv5.sm_hi,04/042ec8baea94cff6_10d867151572391b9772c3d42393ecf7,10d867151572391b9772c3d42393ecf7,18970,4147
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/skinned_fxv5.sm_lo,04/042ec4baea94c8bc_769df257790889179f23ac62db8f05cf,769df257790889179f23ac62db8f05cf,19154,4182
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fx3dv5.sm_depth,5d/5d144da3e12497d2_b5fe5587e97e32835e1c370dafae6399,b5fe5587e97e32835e1c370dafae6399,42367,4941
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fx3dv5.sm_hi,6a/6a3aaab927913472_247688816a37844812f140ee00417696,247688816a37844812f140ee00417696,42111,4873
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fx3dv5.sm_lo,6a/6a3aaeb927913a88_761ac8da33e71c4386ee60b0effdfaa3,761ac8da33e71c4386ee60b0effdfaa3,39995,4938
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxdirectionalv5.sm_depth,3e/3e5eb9f2e0ad4219_2a556bd324c6e2e6b3996e9465e79b19,2a556bd324c6e2e6b3996e9465e79b19,18321,3960
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxdirectionalv5.sm_hi,6c/6c3497be752ed4b7_e37d9da879c1af4ab08dde910564e671,e37d9da879c1af4ab08dde910564e671,18229,3943
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxdirectionalv5.sm_lo,6c/6c349bbe752edbc5_d4c12da3c73d6e948aeea3e681675fad,d4c12da3c73d6e948aeea3e681675fad,18389,4032
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxdistortionv5.sm_depth,f8/f8f20b45cf8694e2_bab427dfc09b817434323fa974edd03d,bab427dfc09b817434323fa974edd03d,9585,2546
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxdistortionv5.sm_hi,c9/c9748c96ea25ffa2_a99498f270fc08dacccd420f3e08e13c,a99498f270fc08dacccd420f3e08e13c,9469,2530
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxdistortionv5.sm_lo,c9/c9749096ea2606f8_9f9aeb0cfe8e5e7d43e44a582924eb9f,9f9aeb0cfe8e5e7d43e44a582924eb9f,9077,2440
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxv5.sm_depth,74/7428c47459f420ad_1ed1d51635deede21058c39ea62eb444,1ed1d51635deede21058c39ea62eb444,18174,3916
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxv5.sm_hi,aa/aaae4070d620f1eb_693788ffdc475c814c9b270441178091,693788ffdc475c814c9b270441178091,18082,3906
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpackedskinned_fxv5.sm_lo,aa/aaae3c70d620ead9_aa9e02044653f2dad6b9cf573153a5e3,aa9e02044653f2dad6b9cf573153a5e3,18242,3985
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fx3dv5.sm_depth,7e/7e5519cfcefbb988_fa3578b76ba09077fea3bab1dea4e7ae,fa3578b76ba09077fea3bab1dea4e7ae,35184,3988
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fx3dv5.sm_hi,a6/a6d916d28172f89c_4f575f95339c8bae1830ab95158cde9d,4f575f95339c8bae1830ab95158cde9d,34928,3945
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fx3dv5.sm_lo,a6/a6d912d28172f246_1bb5a01ae397cb7e40f5b89a965055db,1bb5a01ae397cb7e40f5b89a965055db,32764,3998
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxdirectionalv5.sm_depth,65/6550c62f08be4e37_3289781a01136ac4abd8d8ae727c6257,3289781a01136ac4abd8d8ae727c6257,13714,3071
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxdirectionalv5.sm_hi,0e/0e4b82405172bf01_4303989b67bab70a67144bbc88d4157f,4303989b67bab70a67144bbc88d4157f,13622,3043
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxdirectionalv5.sm_lo,0e/0e4b86405172c65b_6f894f32182ad5d8260d60d1dd9aee9e,6f894f32182ad5d8260d60d1dd9aee9e,13778,3121
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxdistortionv5.sm_depth,3a/3aab211a93fe9650_1e8682246505a7e6d4cce3cc4fbc9fef,1e8682246505a7e6d4cce3cc4fbc9fef,8546,2226
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxdistortionv5.sm_hi,dc/dc9c7b29e1b5dd04_5f2eaf68fc24b3eabe5558b0921c46d7,5f2eaf68fc24b3eabe5558b0921c46d7,8430,2220
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxdistortionv5.sm_lo,dc/dc9c7729e1b5d6ce_dedb9e91add02adbd68e088f864ede05,dedb9e91add02adbd68e088f864ede05,7938,2128
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxv5.sm_depth,1d/1d2f98555bfeacf7_beb223078e08fd0d816e3a5f0f3877d6,beb223078e08fd0d816e3a5f0f3877d6,13403,3031
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxv5.sm_hi,a6/a68ac53d66b50bc1_6868968ac194bc1113b082cc67e1e4c2,6868968ac194bc1113b082cc67e1e4c2,13311,3016
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/unpacked_fxv5.sm_lo,a6/a68ac93d66b5121b_1c0aa234f70ba144ec69131dd6d9f184,1c0aa234f70ba144ec69131dd6d9f184,13447,3102
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/banner/unpacked_fxbannerv5.sm_depth,80/808fc42420d653e8_bfece8533c1a4d6c50df504cb454331d,bfece8533c1a4d6c50df504cb454331d,4905,1718
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/banner/unpacked_fxbannerv5.sm_hi,24/24d3fa216bf5eb7c_a5439a5226516fff4159a9da137c0dbf,a5439a5226516fff4159a9da137c0dbf,4819,1691
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/banner/unpacked_fxbannerv5.sm_lo,24/24d3f6216bf5e426_14d0963cbbdf2452247553f7a19a2dd2,14d0963cbbdf2452247553f7a19a2dd2,4961,1733
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxcloakdistortionv5.sm_depth,45/45bf407110a2265f_c5a823eb3a541bac2d0083d313dc8391,c5a823eb3a541bac2d0083d313dc8391,6063,1993
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxcloakdistortionv5.sm_hi,1c/1cbd8c5dd8b7dba9_0f0a3cbcc33e4fdfac59e90f999e25ca,0f0a3cbcc33e4fdfac59e90f999e25ca,5977,1976
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxcloakdistortionv5.sm_lo,1c/1cbd905dd8b7e2e3_f0097c2f99af25b780457e339684601c,f0097c2f99af25b780457e339684601c,5559,1911
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxcloakv5.sm_depth,d2/d2c2d2dafcf620a0_95b9addfb0e36c3eb80ed66e4c2a18fd,95b9addfb0e36c3eb80ed66e4c2a18fd,8585,2470
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxcloakv5.sm_hi,1a/1a0a324e562f9cb4_3e8f23d27e98c613fd86e31129cac5e1,3e8f23d27e98c613fd86e31129cac5e1,9847,2922
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxcloakv5.sm_lo,1a/1a0a2e4e562f967e_4bcf9eafe43c6628cb24e1e9d3913e77,4bcf9eafe43c6628cb24e1e9d3913e77,9247,2796
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxtransitionv5.sm_depth,0d/0dc976b807a0119d_8ecb9a8ee1185c3503b94a7783023ed7,8ecb9a8ee1185c3503b94a7783023ed7,4950,1769
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxtransitionv5.sm_hi,31/31dc361bfeddf07b_2e0a7ce4d1e1868888e727003bf4f9a9,2e0a7ce4d1e1868888e727003bf4f9a9,4864,1752
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/fxtransitionv5.sm_lo,31/31dc321bfedde929_e0dae92eb6d0012af61fc97405f25fce,e0dae92eb6d0012af61fc97405f25fce,5030,1782
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxcloakdistortionv5.sm_depth,ee/ee543a4ed7d1aa04_9040f39a25a179091aff536612e179e1,9040f39a25a179091aff536612e179e1,7080,2301
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxcloakdistortionv5.sm_hi,70/7044f873f1a8f118_18344295907cc3de8031a86643def28a,18344295907cc3de8031a86643def28a,6994,2283
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxcloakdistortionv5.sm_lo,70/7044fc73f1a8f852_7f2550f7307c77dc1a32ed0b93f0198f,7f2550f7307c77dc1a32ed0b93f0198f,6676,2207
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxcloakv5.sm_depth,9c/9ca705a997f8133b_7a787b704bced28224aab51d620d3c49,7a787b704bced28224aab51d620d3c49,10696,2873
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxcloakv5.sm_hi,32/3217c7285d4799a5_625ac211498af328278010346c501a6b,625ac211498af328278010346c501a6b,11958,3333
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxcloakv5.sm_lo,32/3217c3285d47936f_16ab9d91d5ed16ada548e6166ed892a3,16ab9d91d5ed16ada548e6166ed892a3,11458,3165
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxtransitionv5.sm_depth,b7/b73d865ed32c6408_2035e36216e531450fde5d99f726da42,2035e36216e531450fde5d99f726da42,6023,2064
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxtransitionv5.sm_hi,78/78ad2fa92a02f81c_245bf3cbbe48afbcc858a79ee9ad75bb,245bf3cbbe48afbcc858a79ee9ad75bb,5937,2047
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/cloak/skinned_fxtransitionv5.sm_lo,78/78ad2ba92a02f1c6_a8d18305290896e71ff54d0e29780d24,a8d18305290896e71ff54d0e29780d24,6127,2073
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxarmorimpactv5.sm_depth,3b/3b7de46d0446a383_5bf0b07f6421009beeb4b0312fa0f1d7,5bf0b07f6421009beeb4b0312fa0f1d7,20158,5591
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxarmorimpactv5.sm_hi,79/7929cc06bb9d198d_b33ac8052cf233cff66934a0a495828d,b33ac8052cf233cff66934a0a495828d,15713,4540
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxarmorimpactv5.sm_lo,79/7929c806bb9d1377_c56c052ea3294786a86048f41cfb3808,c56c052ea3294786a86048f41cfb3808,3409,1186
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxshieldhullimpactv5.sm_depth,44/44d0c30ca1e14708_b9c387ba0439800544d6fc5ccb876c26,b9c387ba0439800544d6fc5ccb876c26,8197,2597
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxshieldhullimpactv5.sm_hi,5d/5dab988628c5a11c_5ee88c9c27c76e95da9b4d9e5a6961fa,5ee88c9c27c76e95da9b4d9e5a6961fa,7719,2481
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxshieldhullimpactv5.sm_lo,5d/5dab948628c59ac6_b01deab6558d0b0d15bb295da1691464,b01deab6558d0b0d15bb295da1691464,3417,1315
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxshieldimpactv5.sm_depth,51/517f573d3c865f5f_38b5c235d3d01e61ec6969f0230acd5f,38b5c235d3d01e61ec6969f0230acd5f,9018,2802
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxshieldimpactv5.sm_hi,d9/d9204ba6d71086a9_28c4de456b87707534720e32fcded3dc,28c4de456b87707534720e32fcded3dc,8540,2689
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/fxshieldimpactv5.sm_lo,d9/d9204fa6d7108de3_679bf6a525aa54477c4441132364ba10,679bf6a525aa54477c4441132364ba10,4260,1584
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/skinned_fxarmorimpactv5.sm_depth,fd/fd00365f326924f8_3832b6721c55a786526cab4148e8b5c9,3832b6721c55a786526cab4148e8b5c9,21339,5879
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/skinned_fxarmorimpactv5.sm_hi,f3/f390584fa926646c_bf2ff0b7a3230c10614263e98e726696,bf2ff0b7a3230c10614263e98e726696,16894,4822
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/skinned_fxarmorimpactv5.sm_lo,f3/f390544fa9265d56_49b31453eb3be7dca07a9babd8112134,49b31453eb3be7dca07a9babd8112134,4526,1479
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/unpackedskinned_fxarmorimpactv5.sm_depth,dd/dd1ebccdd0a0c35d_b0ba1e6e680f7752c9c5e257360430a5,b0ba1e6e680f7752c9c5e257360430a5,21031,5787
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/unpackedskinned_fxarmorimpactv5.sm_hi,4a/4a2dccfb1aafb93b_cf97cb6138b44f9e0e0c8fa229352338,cf97cb6138b44f9e0e0c8fa229352338,16586,4728
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/unpackedskinned_fxarmorimpactv5.sm_lo,4a/4a2dc8fb1aafb2e9_a27eb724cf8bae9af4672378ea34c31b,a27eb724cf8bae9af4672378ea34c31b,4194,1386
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/unpacked_fxarmorimpactv5.sm_depth,14/14d99bc184667d01_95ab4db38d64be08fe1a39498a9bae85,95ab4db38d64be08fe1a39498a9bae85,19850,5494
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/unpacked_fxarmorimpactv5.sm_hi,10/107caea0a763f2ff_4c65e3f6ee725f985e588a9a9cb97372,4c65e3f6ee725f985e588a9a9cb97372,15405,4439
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/impact/unpacked_fxarmorimpactv5.sm_lo,10/107cb2a0a763f90d_eb035c671f49ce7dd532976c107f4700,eb035c671f49ce7dd532976c107f4700,3077,1076
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/link/fxlinkv5.sm_depth,aa/aa75584877bdb4b6_74b7771360e9d50ff1106a18f16d3c95,74b7771360e9d50ff1106a18f16d3c95,6110,2106
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/link/fxlinkv5.sm_hi,ac/ac2284b4bfe4e066_771246d525ff657823d41b24438fe02d,771246d525ff657823d41b24438fe02d,6012,2077
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/link/fxlinkv5.sm_lo,ac/ac2280b4bfe4d92c_55c670c40dfdf6fbabb57ca3d4ed30c8,55c670c40dfdf6fbabb57ca3d4ed30c8,5054,1763
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/link/unpacked_fxlinkv5.sm_depth,28/2852638d58483a0c_29f671b169543aff63de90b2cd53f688,29f671b169543aff63de90b2cd53f688,6110,2107
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/link/unpacked_fxlinkv5.sm_hi,cd/cda5b5fc21ada820_ac299cc60c0fe311d8db73944123c0fc,ac299cc60c0fe311d8db73944123c0fc,6012,2075
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/link/unpacked_fxlinkv5.sm_lo,cd/cda5b9fc21adaf7a_04a67ff28d9602f5f485e32260737311,04a67ff28d9602f5f485e32260737311,5054,1763
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/fxbuildv5.sm_depth,55/55baebb85683362d_e3d20585f680860b4dc4ad0336412c77,e3d20585f680860b4dc4ad0336412c77,21761,4666
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/fxbuildv5.sm_hi,54/5456f81a2cd0326b_604aa88b946184a13cfd74cf912534c0,604aa88b946184a13cfd74cf912534c0,21669,4644
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/fxbuildv5.sm_lo,54/5456f41a2cd02b59_5b474711a1f66c316d97827653ed042f,5b474711a1f66c316d97827653ed042f,20950,4405
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/fxholecapperv5.sm_depth,4c/4ce54028bb167234_8eb007f216f9526c1cbcc0c0649f2f2e,8eb007f216f9526c1cbcc0c0649f2f2e,8535,2384
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/fxholecapperv5.sm_hi,1c/1c95a9ef762b43a8_c13a09538ae79617b5f3060c1741e31a,c13a09538ae79617b5f3060c1741e31a,8535,2383
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/fxholecapperv5.sm_lo,1c/1c95adef762b4ae2_0d578be3e29940ec4b6037a96c054714,0d578be3e29940ec4b6037a96c054714,9227,2518
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/skinned_fxbuildv5.sm_depth,be/be6e23f3587d35be_9dbc5855ac6b96d984ea0c2fe88ddef1,9dbc5855ac6b96d984ea0c2fe88ddef1,23670,5043
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/skinned_fxbuildv5.sm_hi,c7/c721b23c25a2562e_1f1f32ecd4a6e1cf3c6586e962095bc5,1f1f32ecd4a6e1cf3c6586e962095bc5,23578,5037
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/skinned_fxbuildv5.sm_lo,c7/c721ae3c25a24f14_10f1e3cb4d9754bf004c1ef06d7070a6,10f1e3cb4d9754bf004c1ef06d7070a6,22883,4817
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/skinned_fxholecapperv5.sm_depth,7f/7f019669002b52f5_2c3f785373b50fee463528e4bee14366,2c3f785373b50fee463528e4bee14366,11320,2856
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/skinned_fxholecapperv5.sm_hi,75/7547367af8d58673_449f7b92d814ff48f83d8ca0936c8c46,449f7b92d814ff48f83d8ca0936c8c46,11320,2858
res:/graphics/effect.dx11/managed/space/spaceobject/v5/fx/nanobuilder/skinned_fxholecapperv5.sm_lo,75/7547327af8d57f21_fb30ee7ba5c2d6e7d820a197f14dc424,fb30ee7ba5c2d6e7d820a197f14dc424,12040,3010
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/asteroidv5.sm_depth,e2/e21aba7451eed9b7_0c43e463cca3f5ed3bbfb2e4aeace717,0c43e463cca3f5ed3bbfb2e4aeace717,734335,54484
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/asteroidv5.sm_hi,2c/2c4eda48cf8e6181_4683affb0f8ccfd3d0a3fff4bbaf0e6b,4683affb0f8ccfd3d0a3fff4bbaf0e6b,545532,41151
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/asteroidv5.sm_lo,2c/2c4ede48cf8e68db_629460a6be21f5de8c1408a32bdcc7ba,629460a6be21f5de8c1408a32bdcc7ba,84734,7389
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/rockv5.sm_depth,98/984d2419faba7fb7_7aea13f7595f89d026c475091cc3f0a4,7aea13f7595f89d026c475091cc3f0a4,424983,38703
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/rockv5.sm_hi,aa/aaa18df885b95381_ac886021f00f3773055d27ce2d11ce91,ac886021f00f3773055d27ce2d11ce91,308388,27251
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/rockv5.sm_lo,aa/aaa191f885b95adb_3e1ffb226ddc08fa7739272888bfc7aa,3e1ffb226ddc08fa7739272888bfc7aa,60845,6392
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/skinned_asteroidv5.sm_depth,4d/4d8dc1673f2012e6_83dd291a1681d89bcf2b3fe87bd4b6e4,83dd291a1681d89bcf2b3fe87bd4b6e4,603814,55561
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/skinned_asteroidv5.sm_hi,a0/a0d839433045a8b6_fb0d401ecc8cf2c50a2925b307dbad4a,fb0d401ecc8cf2c50a2925b307dbad4a,425795,39355
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/skinned_asteroidv5.sm_lo,a0/a0d835433045a27c_1ef3ddc317c7fe5c619c5be58c4d861f,1ef3ddc317c7fe5c619c5be58c4d861f,62113,6738
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/skinned_rockv5.sm_depth,ee/ee603875e19579fa_63acb6b433046a27103328f572b998db,63acb6b433046a27103328f572b998db,363466,37825
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/skinned_rockv5.sm_hi,33/33a5a69207968afa_3af8a315f6eb57b11ae68755b8a001c3,3af8a315f6eb57b11ae68755b8a001c3,252327,29425
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/skinned_rockv5.sm_lo,33/33a5aa9207969130_c3a35b07b994197d9795fe6dcb313e6e,c3a35b07b994197d9795fe6dcb313e6e,45232,6006
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpackedskinned_asteroidv5.sm_depth,8f/8f566598d7b0c5dd_71b50a86d31114c90039adad1aa9aabc,71b50a86d31114c90039adad1aa9aabc,604070,52019
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpackedskinned_asteroidv5.sm_hi,93/93a9728303fdc0bb_ef05922ef7f6ff9c8139b59d34e4b418,ef05922ef7f6ff9c8139b59d34e4b418,426051,37673
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpackedskinned_asteroidv5.sm_lo,93/93a96e8303fdba69_ef072cb1f272458305949c1f82c749fe,ef072cb1f272458305949c1f82c749fe,61913,6576
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpackedskinned_rockv5.sm_depth,06/0697a31209e21919_abcdd4bd7693fc3f62bbab937c76ba15,abcdd4bd7693fc3f62bbab937c76ba15,363210,37196
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpackedskinned_rockv5.sm_hi,60/6007b23d22e159b7_b183e3172211d14b58ef88b72b93fc3f,b183e3172211d14b58ef88b72b93fc3f,252071,27034
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpackedskinned_rockv5.sm_lo,60/6007b63d22e160c5_0415823fa2450a45153424bd573567c6,0415823fa2450a45153424bd573567c6,44792,5857
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpacked_asteroidv5.sm_depth,0b/0b770185787aa1e1_b92f5276a2d3bad0ae499d28cabf29a2,b92f5276a2d3bad0ae499d28cabf29a2,736127,54002
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpacked_asteroidv5.sm_hi,e3/e3a818977f11835f_629d5d3a999fa9999c6602202ad480f7,629d5d3a999fa9999c6602202ad480f7,547324,40894
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpacked_asteroidv5.sm_lo,e3/e3a81c977f118a6d_1472f6481e763143941ce27effe32bc3,1472f6481e763143941ce27effe32bc3,84334,7225
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpacked_rockv5.sm_depth,3d/3d0e73314695d715_8a6233f07218b0a7a27384c256e6c122,8a6233f07218b0a7a27384c256e6c122,424471,38147
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpacked_rockv5.sm_hi,a4/a4c494c9ab8e8313_19a097294ad6e4d713a8168d8574424c,19a097294ad6e4d713a8168d8574424c,307876,28748
res:/graphics/effect.dx11/managed/space/spaceobject/v5/organic/unpacked_rockv5.sm_lo,a4/a4c490c9ab8e7cc1_ab74dd35e28a9cfb59f0d30be03fa57f,ab74dd35e28a9cfb59f0d30be03fa57f,59965,6215
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quaddetailv5.sm_depth,22/2284d61deb8b2858_bd0f6676e23f352d0bdf3d5f5f387dcf,bd0f6676e23f352d0bdf3d5f5f387dcf,1422490,129917
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quaddetailv5.sm_hi,d0/d0b417b87277944c_09c287fd99e0515475c1b98630b67a50,09c287fd99e0515475c1b98630b67a50,1071871,78079
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quaddetailv5.sm_lo,d0/d0b413b872778d36_255d212fde10dfb5b420b9c2e7b8a1fe,255d212fde10dfb5b420b9c2e7b8a1fe,64064,7161
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadenvironmentv5.sm_depth,9d/9d86fda39ea697b8_4ced7d42427d56a8588bffdbcf8b5928,4ced7d42427d56a8588bffdbcf8b5928,763639,65726
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadenvironmentv5.sm_hi,af/af5ca9ef97c6732c_ac5aea3a2c967a3350bd9d2010d53a36,ac5aea3a2c967a3350bd9d2010d53a36,574564,49802
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadenvironmentv5.sm_lo,af/af5ca5ef97c66c16_b80af92bcabbf99091c6a0351dbaac71,b80af92bcabbf99091c6a0351dbaac71,82953,7366
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadglassv5.sm_depth,07/07ab5b74f6011755_010f108aaabfdffd6a7a05944f495a43,010f108aaabfdffd6a7a05944f495a43,519503,52348
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadglassv5.sm_hi,95/95170495ed4df953_043623c880626c42015b5361d1dd4191,043623c880626c42015b5361d1dd4191,318220,19665
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadglassv5.sm_lo,95/95170095ed4df201_bda7b40afdedc38445a6e27df8c448b4,bda7b40afdedc38445a6e27df8c448b4,72335,6255
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadheatdetailv5.sm_depth,81/81a76ac5329beae2_5b6c1f7d4b7cbbd592965fb0d2b17a08,5b6c1f7d4b7cbbd592965fb0d2b17a08,502147,59980
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadheatdetailv5.sm_hi,dd/dd04a69cc36e01a2_39612fa6c55edcec40d5be0d6a27c6e3,39612fa6c55edcec40d5be0d6a27c6e3,384872,36905
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadheatdetailv5.sm_lo,dd/dd04aa9cc36e08f8_c22afc094659d92f952d29f1466888fa,c22afc094659d92f952d29f1466888fa,60845,6391
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadheatv5.sm_depth,11/1175aee38451bc83_e491dffced1f4de0c81ef4a7ce61b960,e491dffced1f4de0c81ef4a7ce61b960,1364928,141070
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadheatv5.sm_hi,7a/7a0c24f788ea648d_0f0274431a9978edd61ac996da89d416,0f0274431a9978edd61ac996da89d416,1012149,79257
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadheatv5.sm_lo,7a/7a0c20f788ea5e77_958b80c999b144a1f17be63d443dc2f8,958b80c999b144a1f17be63d443dc2f8,62131,7043
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadinstancedv5.sm_depth,90/901fbb08c5649cb4_26ed2d3b70d4c38d8bd8984ef85ef93b,26ed2d3b70d4c38d8bd8984ef85ef93b,373449,42653
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadinstancedv5.sm_hi,52/52c818ee9313c328_ccfb1274cc8035116d4262d1c6c8c5d7,ccfb1274cc8035116d4262d1c6c8c5d7,261238,30818
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadinstancedv5.sm_lo,52/52c81cee9313ca62_b181d20716f55eb12964eeeba9671a1b,b181d20716f55eb12964eeeba9671a1b,42385,5403
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadoilv5.sm_depth,ae/ae24da1816b670c9_4778cce626b0b051cc4a39675438266c,4778cce626b0b051cc4a39675438266c,421254,49323
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadoilv5.sm_hi,17/17c367607ddf8b47_6e7b828292516bc2819ee0e465659b7c,6e7b828292516bc2819ee0e465659b7c,303587,26795
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadoilv5.sm_lo,17/17c36b607ddf9195_e849225cadb052afc523041fa028f412,e849225cadb052afc523041fa028f412,60845,6392
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadsailsv5.sm_depth,a3/a334c1b355ee9bdb_9397421b1d57cc7a5cf44e65d268153b,9397421b1d57cc7a5cf44e65d268153b,219173,24958
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadsailsv5.sm_hi,f8/f81db72c2c3927c5_71a3c61c5c7d33911385f630159aa283,71a3c61c5c7d33911385f630159aa283,160226,15136
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadsailsv5.sm_lo,f8/f81db32c2c39208f_ff31aa22a66447050006da8e89c64cdf,ff31aa22a66447050006da8e89c64cdf,40240,5367
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadv5.sm_depth,ee/ee74ca0f4e93cbf9_e452e41fcfe18cd2f17793f980ff91e0,e452e41fcfe18cd2f17793f980ff91e0,1818996,184996
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadv5.sm_hi,d8/d887f92bbf0f9517_4d48e3e86b80d5810d6ee09cbd1e83f4,4d48e3e86b80d5810d6ee09cbd1e83f4,1211945,89381
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadv5.sm_lo,d8/d887fd2bbf0f9c25_94431a90975d69b4286da5fa5852781c,94431a90975d69b4286da5fa5852781c,80592,7971
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadwreckv5.sm_depth,93/937867add6640e27_20fd99ec369149497b87161cf80d5630,20fd99ec369149497b87161cf80d5630,430372,50051
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadwreckv5.sm_hi,28/28137245344ee011_4089cfba9c9e5472193479958cdbbceb,4089cfba9c9e5472193479958cdbbceb,313201,33137
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/quadwreckv5.sm_lo,28/28137645344ee72b_6b091b4f1a3cf5c8b071d21fd649d36d,6b091b4f1a3cf5c8b071d21fd649d36d,61225,6449
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quaddetailv5.sm_depth,2d/2dbcf71b87574329_068a258a9e1dd05917eb2356edfd0348,068a258a9e1dd05917eb2356edfd0348,1211181,125034
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quaddetailv5.sm_hi,a0/a09f2863e0cbac27_fc79197332e46616e981e422ea343288,fc79197332e46616e981e422ea343288,876706,73279
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quaddetailv5.sm_lo,a0/a09f2c63e0cbb375_6d06bda2c872d5126c7bc7fac46a0895,6d06bda2c872d5126c7bc7fac46a0895,46915,6428
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadenvironmentv5.sm_depth,5a/5a3e84dc7b0d3507_f7cd58d7ed2d1d1a4898dee5032968aa,f7cd58d7ed2d1d1a4898dee5032968aa,622190,63543
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadenvironmentv5.sm_hi,06/065f096731df7b71_743a4ab94a658cd485528925b68cab45,743a4ab94a658cd485528925b68cab45,443899,46671
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadenvironmentv5.sm_lo,06/065f0d6731df818b_0b95c61e7e147b44d16f379af26ce6fb,0b95c61e7e147b44d16f379af26ce6fb,59296,6667
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadglassv5.sm_depth,c1/c1542f17c7a14eee_bc1c1a2c5f0e9e24234bf7ea562e8acc,bc1c1a2c5f0e9e24234bf7ea562e8acc,427514,49323
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadglassv5.sm_hi,fc/fcc49cd270a1cb3e_298bcde7812cde9c6e77f58d907f1096,298bcde7812cde9c6e77f58d907f1096,237519,17449
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadglassv5.sm_lo,fc/fcc498d270a1c4e4_529aed6434cc3e349424c37d55cef8f6,529aed6434cc3e349424c37d55cef8f6,52444,5872
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadheatdetailv5.sm_depth,a5/a57919ee5e0ed5bf_985dbbdbed2314a286fc9946f87e801b,985dbbdbed2314a286fc9946f87e801b,427078,58200
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadheatdetailv5.sm_hi,36/3652870b48639489_0c1a47ca22d8de0f6dc439184656b077,0c1a47ca22d8de0f6dc439184656b077,315259,34960
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadheatdetailv5.sm_lo,36/36528b0b48639bc3_792e213fac5330ce631759153b0a197f,792e213fac5330ce631759153b0a197f,45232,6004
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadheatv5.sm_depth,77/7738fdc005e325de_c3066ed7b4b049565eb8530ef9236744,c3066ed7b4b049565eb8530ef9236744,1173107,136372
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadheatv5.sm_hi,68/687e54e98b5300ce_62340027a1db86775ab468fb4032a526,62340027a1db86775ab468fb4032a526,836472,73194
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadheatv5.sm_lo,68/687e50e98b52f9b4_2d82485c1ec4a97129a4032c316a81cb,2d82485c1ec4a97129a4032c316a81cb,45426,6347
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadinstancedv5.sm_depth,cc/cca7a0c2de5da09f_afe53c615a8ae95e03aba90a1f6417b6,afe53c615a8ae95e03aba90a1f6417b6,373449,42652
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadinstancedv5.sm_hi,41/41823467bc951be9_56695b17b38c31ea517952019c08ff65,56695b17b38c31ea517952019c08ff65,261238,30819
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadinstancedv5.sm_lo,41/41823867bc952223_b94e9ecb4b8320f62bb4e253a8df3877,b94e9ecb4b8320f62bb4e253a8df3877,42385,5401
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadoilv5.sm_depth,fc/fc6fcc0c291987fe_6bbbae5f61411e934be2a652616e2c5e,6bbbae5f61411e934be2a652616e2c5e,363945,47920
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadoilv5.sm_hi,30/309a04004acb956e_a9bbd7a1399ea21cde7d94a8b94d3feb,a9bbd7a1399ea21cde7d94a8b94d3feb,251734,25124
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadoilv5.sm_lo,30/309a00004acb8e54_d73358cf2719cad24ef9b61916ea16b7,d73358cf2719cad24ef9b61916ea16b7,45232,6005
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadsailsv5.sm_depth,6b/6b8bf9b27e150268_c2f118496b48788f5532b7c2626eebd0,c2f118496b48788f5532b7c2626eebd0,187688,23708
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadsailsv5.sm_hi,ee/ee0443e2e7dff6fc_3c4b52e84b02d2fe73a52ca7b7b32d21,3c4b52e84b02d2fe73a52ca7b7b32d21,131525,14172
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadsailsv5.sm_lo,ee/ee043fe2e7dfefa6_8bc94845bbc5a6b1c55d5837931ec233,8bc94845bbc5a6b1c55d5837931ec233,30527,5203
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadv5.sm_depth,67/67c77b140a539718_8b27c2d65cfd1d7e27f93102df91388d,8b27c2d65cfd1d7e27f93102df91388d,1562019,177153
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadv5.sm_hi,58/580109d3dc88970c_7e7b0072e6b35abe39d4ed403aa989f2,7e7b0072e6b35abe39d4ed403aa989f2,975264,82961
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadv5.sm_lo,58/580105d3dc8890f6_b584173f537cc9c368b6419bd0632649,b584173f537cc9c368b6419bd0632649,57659,6920
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadwreckv5.sm_depth,1f/1fa525ffe5427504_084b3d98a6fe891d88d603f27ae4a36c,084b3d98a6fe891d88d603f27ae4a36c,365751,47643
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadwreckv5.sm_hi,a7/a7474b4abb7f5218_1c6b53d1525c6daae5d9dfebdcc73979,1c6b53d1525c6daae5d9dfebdcc73979,254036,31208
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/skinned_quadwreckv5.sm_lo,a7/a7474f4abb7f5952_87855e273489f5a24fe206e045e55d52,87855e273489f5a24fe206e045e55d52,43292,5780
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quaddetailv5.sm_depth,01/01f8a8fc4458ffda_a90aeac5a8c071e6ddf11b5375c29e0e,a90aeac5a8c071e6ddf11b5375c29e0e,1212845,124752
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quaddetailv5.sm_hi,ce/ce34ada373ea415a_b6e9ca152fdd7f01c0812c7c98101f04,b6e9ca152fdd7f01c0812c7c98101f04,878370,72540
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quaddetailv5.sm_lo,ce/ce34b1a373ea4790_c52c1d6dc5c5c67772ffb7a231780dee,c52c1d6dc5c5c67772ffb7a231780dee,46475,6279
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadenvironmentv5.sm_depth,fd/fd311794c34e7ea6_d4598d96d7b44df905946b18fb89e11a,d4598d96d7b44df905946b18fb89e11a,622446,63122
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadenvironmentv5.sm_hi,ce/cec534a970fa1f76_396d5fba7a9d5d4df0768147956198ca,396d5fba7a9d5d4df0768147956198ca,444155,45262
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadenvironmentv5.sm_lo,ce/cec530a970fa183c_429a5a1d9861285462302579145e300c,429a5a1d9861285462302579145e300c,59096,6527
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadglassv5.sm_depth,ff/ffa6408ca32fc0cf_8bba9fd7ebe13201c452cd6f9712ed5a,8bba9fd7ebe13201c452cd6f9712ed5a,427290,48956
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadglassv5.sm_hi,b9/b98b7dae68f2a5f9_423c8dba374ad3fcc2e8bbd2b66739e9,423c8dba374ad3fcc2e8bbd2b66739e9,237295,16200
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadglassv5.sm_lo,b9/b98b81ae68f2ac33_1ee68480c7a0b27ad1fce345e545b341,1ee68480c7a0b27ad1fce345e545b341,51988,5701
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadheatdetailv5.sm_depth,76/769dd09fbb12678c_f10aa02d6a80fe7d1e7db492a19488f9,f10aa02d6a80fe7d1e7db492a19488f9,426822,57579
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadheatdetailv5.sm_hi,23/23006994302e30a0_69dc399fb2501d6c9a8c9e49303702e7,69dc399fb2501d6c9a8c9e49303702e7,315003,36312
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadheatdetailv5.sm_lo,23/23006d94302e37fa_289d5051c6fca799e71c480def59778f,289d5051c6fca799e71c480def59778f,44792,5856
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadheatv5.sm_depth,55/55d1317604f029fd_a6c78441eebc9a04cc80759f03803731,a6c78441eebc9a04cc80759f03803731,397568,53135
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadheatv5.sm_hi,5e/5ec5e9b55da95c5b_82d65f30aef6b8c43ad673ecd6aad615,82d65f30aef6b8c43ad673ecd6aad615,285221,29457
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadheatv5.sm_lo,5e/5ec5e5b55da95509_dd2606ac1344e909f7d35d79a0f79b32,dd2606ac1344e909f7d35d79a0f79b32,43303,5738
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadinstancedv5.sm_depth,4e/4e8ac8eda6a0e4c2_43ca0500bd2be5ed2cabafd47ea9f486,43ca0500bd2be5ed2cabafd47ea9f486,373193,42256
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadinstancedv5.sm_hi,35/35f21f7f14f61402_51fe88d65a7183be1046f10aa9986601,51fe88d65a7183be1046f10aa9986601,260982,29770
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadinstancedv5.sm_lo,35/35f2237f14f61b58_be6dc8bb8b768bf049fb96a5e24697de,be6dc8bb8b768bf049fb96a5e24697de,41945,5252
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadoilv5.sm_depth,1e/1e0afef5d141ce9b_2bc89cdcefd281db72c95039ab34f175,2bc89cdcefd281db72c95039ab34f175,363689,47415
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadoilv5.sm_hi,fa/fa762f294d1a7685_47967104f3056d68c98c9e43502a750c,47967104f3056d68c98c9e43502a750c,251478,25261
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadoilv5.sm_lo,fa/fa762b294d1a704f_3531c3cae93f690052f46b5e5fdf01f7,3531c3cae93f690052f46b5e5fdf01f7,44792,5855
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadsailsv5.sm_depth,d8/d8a6ee29c7f72641_8a77ed17e57ea093376a498b8493e584,8a77ed17e57ea093376a498b8493e584,186952,22656
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadsailsv5.sm_hi,3d/3d9445e5517e363f_27bfbb349f19fadf16cbfacab4b1c7d7,27bfbb349f19fadf16cbfacab4b1c7d7,130789,14494
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadsailsv5.sm_lo,3d/3d9449e5517e3d4d_65a1d4268497264e90cedf66742c5a34,65a1d4268497264e90cedf66742c5a34,29847,5020
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadv5.sm_depth,6f/6f5e9ab65869b99b_d5cca7adfae9dbe86f8a3f12e4fa51d5,d5cca7adfae9dbe86f8a3f12e4fa51d5,1564835,176477
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadv5.sm_hi,cc/cc12101c19963785_47ca1f53797591f68ac73967fc15ed44,47ca1f53797591f68ac73967fc15ed44,978080,82797
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadv5.sm_lo,cc/cc120c1c1996314f_8d06ff01170ea2e5f4d48f9ca33c5c9f,8d06ff01170ea2e5f4d48f9ca33c5c9f,57411,6764
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadwreckv5.sm_depth,96/968fc6bc62610dbd_07c393e7f903483fbd6d078a5c880595,07c393e7f903483fbd6d078a5c880595,365495,47334
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadwreckv5.sm_hi,d6/d6889659112fbe1b_a874d88d5095c8383cbb181f4f91c695,a874d88d5095c8383cbb181f4f91c695,253780,29165
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpackedskinned_quadwreckv5.sm_lo,d6/d6889259112fb7c9_e249940e9d83ae1169cc475f3667850b,e249940e9d83ae1169cc475f3667850b,42852,5608
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quaddetailv5.sm_depth,58/581e54c5b360eb5e_710b97e983cbe7732de35343e8969f83,710b97e983cbe7732de35343e8969f83,1425818,129520
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quaddetailv5.sm_hi,35/3574d958a50e514e_062de8ed31b5a38378625e1e9af4fccb,062de8ed31b5a38378625e1e9af4fccb,1075199,77532
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quaddetailv5.sm_lo,35/3574d558a50e4a34_fb5208022c61ea138a2f98eebaf62e69,fb5208022c61ea138a2f98eebaf62e69,63184,7005
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadenvironmentv5.sm_depth,64/64eaa1d17a589b3a_ae3eb13128e1531f05b32cb09d8c2fcc,ae3eb13128e1531f05b32cb09d8c2fcc,765431,65227
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadenvironmentv5.sm_hi,45/45420f2d2a8b203a_d26aa4ac1b57581ce21e54178d655bbb,d26aa4ac1b57581ce21e54178d655bbb,576356,47065
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadenvironmentv5.sm_lo,45/4542132d2a8b2770_7f35cd80de7010189e750e2d29f1cdc3,7f35cd80de7010189e750e2d29f1cdc3,82553,7193
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadglassv5.sm_depth,05/0510661b5f876f5b_73cb4c4a25ca84b9685f5d95568565af,73cb4c4a25ca84b9685f5d95568565af,519055,51460
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadglassv5.sm_hi,b3/b3feb3840eeda245_5c390e4051fed2db70e7819a2bd609ce,5c390e4051fed2db70e7819a2bd609ce,317772,17610
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadglassv5.sm_lo,b3/b3feaf840eed9b0f_46edf5a9d6e8f4ac205e0a2580d5ef98,46edf5a9d6e8f4ac205e0a2580d5ef98,71423,6070
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadheatdetailv5.sm_depth,9b/9b2142755fb75a60_8c2834172472bf0a322597c3bb0fe628,8c2834172472bf0a322597c3bb0fe628,501635,59947
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadheatdetailv5.sm_hi,53/532047447c387974_23debd7c9f0655e8c0323d4333024a54,23debd7c9f0655e8c0323d4333024a54,384360,37183
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadheatdetailv5.sm_lo,53/532043447c38723e_3ada069d1bb3190f81fede0e4711a82b,3ada069d1bb3190f81fede0e4711a82b,59965,6215
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadheatv5.sm_depth,b9/b9ef610aab5e51c1_5956b4ff379430e2237ff8e4108e536b,5956b4ff379430e2237ff8e4108e536b,461229,53412
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadheatv5.sm_hi,25/25ee83302dbdb8bf_05420e0a0bb35435bcfc58bb40d2eb03,05420e0a0bb35435bcfc58bb40d2eb03,343426,33651
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadheatv5.sm_lo,25/25ee87302dbdbfcd_02675e854daabdf156a683b2ed6a3f25,02675e854daabdf156a683b2ed6a3f25,58032,6097
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadinstancedv5.sm_depth,8e/8e0a01b2db4a0756_7ed639f08d6059f72b6546e2d07d4c13,7ed639f08d6059f72b6546e2d07d4c13,373193,42257
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadinstancedv5.sm_hi,58/582991ca28a6b186_3c83d3184d0f7b8f775742f307fdb520,3c83d3184d0f7b8f775742f307fdb520,260982,29770
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadinstancedv5.sm_lo,58/58298dca28a6ab4c_a8354ee3804b8c606f9c0b15634d3e25,a8354ee3804b8c606f9c0b15634d3e25,41945,5250
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadoilv5.sm_depth,d8/d85e3a27f0f31577_9cd9708f957f6a24c13ace869f924ef9,9cd9708f957f6a24c13ace869f924ef9,420742,48886
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadoilv5.sm_hi,8e/8e69eb1dde784541_4d64e34e0f0431dd9b2b9a16a7dc064b,4d64e34e0f0431dd9b2b9a16a7dc064b,303075,26949
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadoilv5.sm_lo,8e/8e69ef1dde784b9b_939610a41d778f21024a80a360fda71a,939610a41d778f21024a80a360fda71a,59965,6216
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadsailsv5.sm_depth,31/313ee233b456b825_439a9496241b19508a149cf171ea8168,439a9496241b19508a149cf171ea8168,217701,24195
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadsailsv5.sm_hi,60/60234ebed286e183_d66ed3c965225390b6f61c30d3cac58d,d66ed3c965225390b6f61c30d3cac58d,158754,15314
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadsailsv5.sm_lo,60/60234abed286db71_4b92f06f33c333e43df616a16c1868c9,4b92f06f33c333e43df616a16c1868c9,38880,5206
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadv5.sm_depth,b2/b298b6f1e6b2ba7f_3b6899e11a0a5688d5c65e181619f512,3b6899e11a0a5688d5c65e181619f512,1824628,183459
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadv5.sm_hi,cd/cdf011fe84818b49_1d0dd9cec4e6930225300c31d1a3fba9,1d0dd9cec4e6930225300c31d1a3fba9,1217577,88947
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadv5.sm_lo,cd/cdf015fe84819183_181021aa51b4e7475c250e2fac6f3db2,181021aa51b4e7475c250e2fac6f3db2,80096,7803
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadwreckv5.sm_depth,09/0926c2a2edf1d7d9_e6b8cc7f961f7c14c7246af50d7be8e5,e6b8cc7f961f7c14c7246af50d7be8e5,429860,49629
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadwreckv5.sm_hi,5d/5d1d8a084f7adf77_8cef4384e4724369db98e8e7e053dd7e,8cef4384e4724369db98e8e7e053dd7e,312689,32739
res:/graphics/effect.dx11/managed/space/spaceobject/v5/quad/unpacked_quadwreckv5.sm_lo,5d/5d1d8e084f7ae585_ea678fec085cc1331f004a021206ac7b,ea678fec085cc1331f004a021206ac7b,60345,6308
res:/graphics/effect.dx11/managed/space/specialfx/atmospheresimple.sm_depth,99/9939553b3a4fee17_4588d576ec8c54734e61d52a84c9be37,4588d576ec8c54734e61d52a84c9be37,4626,1593
res:/graphics/effect.dx11/managed/space/specialfx/atmospheresimple.sm_hi,19/1939e78da368c561_09cb9ca65472a8817dfb1844454a5ecd,09cb9ca65472a8817dfb1844454a5ecd,4626,1593
res:/graphics/effect.dx11/managed/space/specialfx/atmospheresimple.sm_lo,19/1939eb8da368cbbb_bf55905a3e1136c12de0531c94d43eb0,bf55905a3e1136c12de0531c94d43eb0,4410,1516
res:/graphics/effect.dx11/managed/space/specialfx/background.sm_depth,38/383a377a09ae1f21_2c7730f904fde264aee7869b153587cf,2c7730f904fde264aee7869b153587cf,9599,2409
res:/graphics/effect.dx11/managed/space/specialfx/background.sm_hi,52/52bdfc6f657acb9f_4f54f9e03b158e0c253e03e966cba407,4f54f9e03b158e0c253e03e966cba407,9599,2412
res:/graphics/effect.dx11/managed/space/specialfx/background.sm_lo,52/52be006f657ad2ad_635139ec7c97317287fd405672f543ee,635139ec7c97317287fd405672f543ee,7828,1907
res:/graphics/effect.dx11/managed/space/specialfx/beaconfx.sm_depth,a4/a4d8a2346004e9e7_b587c6bcfd0d1610af27b8bb5e38ec5d,b587c6bcfd0d1610af27b8bb5e38ec5d,3411,1316
res:/graphics/effect.dx11/managed/space/specialfx/beaconfx.sm_hi,23/23b02bc106f7bcd1_372205554b54d3bae798312877a16dd2,372205554b54d3bae798312877a16dd2,3313,1290
res:/graphics/effect.dx11/managed/space/specialfx/beaconfx.sm_lo,23/23b02fc106f7c3eb_979281fa9ff59dce6cc76e88cfc30284,979281fa9ff59dce6cc76e88cfc30284,3215,1273
res:/graphics/effect.dx11/managed/space/specialfx/cloud.sm_depth,1c/1ce82300534773e2_58898f337a71b06a764153619d4be524,58898f337a71b06a764153619d4be524,9309,2745
res:/graphics/effect.dx11/managed/space/specialfx/cloud.sm_hi,eb/ebd23a2677dc9ca2_c385f9f2b68c3d6913e17f6760e3e563,c385f9f2b68c3d6913e17f6760e3e563,9309,2744
res:/graphics/effect.dx11/managed/space/specialfx/cloud.sm_lo,eb/ebd23e2677dca3f8_8132832aef77587ab5a472d65395b32f,8132832aef77587ab5a472d65395b32f,1145,472
res:/graphics/effect.dx11/managed/space/specialfx/cloudsimple.sm_depth,df/dff7f13eb51dc0ec_72f6103a3e51f08f6d3d3927fe1b6f34,72f6103a3e51f08f6d3d3927fe1b6f34,14466,3403
res:/graphics/effect.dx11/managed/space/specialfx/cloudsimple.sm_hi,83/8346550da7ce4680_2b34d81db3a362b976689aea0eba99b5,2b34d81db3a362b976689aea0eba99b5,14466,3403
res:/graphics/effect.dx11/managed/space/specialfx/cloudsimple.sm_lo,83/8346590da7ce4dda_f63d0b429b3e521bf308290dfea1cd0f,f63d0b429b3e521bf308290dfea1cd0f,2470,850
res:/graphics/effect.dx11/managed/space/specialfx/cloudtemperature.sm_depth,ad/ad2387a01be6866c_9dd6fe248ca5abbd81d8264b35a5fe36,9dd6fe248ca5abbd81d8264b35a5fe36,9423,2851
res:/graphics/effect.dx11/managed/space/specialfx/cloudtemperature.sm_hi,2d/2d074a97716a9700_8836a7953e0a3aa08b2474c2a23a8d05,8836a7953e0a3aa08b2474c2a23a8d05,1145,472
res:/graphics/effect.dx11/managed/space/specialfx/cloudtemperature.sm_lo,2d/2d074e97716a9e5a_6dddab3e0da9072a85ac07b6bbedd7c0,6dddab3e0da9072a85ac07b6bbedd7c0,1145,472
res:/graphics/effect.dx11/managed/space/specialfx/cubemapcolor.sm_depth,aa/aa00fab06cdfabdd_a027c668fc1cb0cac4fe46aab1750988,a027c668fc1cb0cac4fe46aab1750988,2130,839
res:/graphics/effect.dx11/managed/space/specialfx/cubemapcolor.sm_hi,f6/f6c2b3b7265272bb_e184840e2b3249e64de30d76e3325c64,e184840e2b3249e64de30d76e3325c64,2032,820
res:/graphics/effect.dx11/managed/space/specialfx/cubemapcolor.sm_lo,f6/f6c2afb726526c69_c17ccc29fc50a7786af3ec6dbc7ec98e,c17ccc29fc50a7786af3ec6dbc7ec98e,1934,809
res:/graphics/effect.dx11/managed/space/specialfx/distortionfx.sm_depth,35/35ef92443d962c5c_1150fb6b74bbaf694f305db82dc379c1,1150fb6b74bbaf694f305db82dc379c1,7112,2470
res:/graphics/effect.dx11/managed/space/specialfx/distortionfx.sm_hi,04/0489f9a5d4193990_3bf3d718ad42cdc3a554c6d5b304ec13,3bf3d718ad42cdc3a554c6d5b304ec13,7026,2437
res:/graphics/effect.dx11/managed/space/specialfx/distortionfx.sm_lo,04/0489fda5d41940aa_1991be116d0715615805c5ac24543b1f,1991be116d0715615805c5ac24543b1f,4433,1664
res:/graphics/effect.dx11/managed/space/specialfx/flarequad.sm_depth,70/7087255b193e56a0_d042e56a838cb30670bd9e87a2ff095d,d042e56a838cb30670bd9e87a2ff095d,5497,1813
res:/graphics/effect.dx11/managed/space/specialfx/flarequad.sm_hi,a6/a6e6c91bbd903eb4_4264df9da666613561315328484213f7,4264df9da666613561315328484213f7,4257,1447
res:/graphics/effect.dx11/managed/space/specialfx/flarequad.sm_lo,a6/a6e6c51bbd90387e_acd409d4fb5de30faf512598dcde645e,acd409d4fb5de30faf512598dcde645e,4257,1446
res:/graphics/effect.dx11/managed/space/specialfx/flarequadsoft.sm_depth,e1/e171ad631c4c2b98_048314bbf22f02f5dfaa460482bfa127,048314bbf22f02f5dfaa460482bfa127,5449,1789
res:/graphics/effect.dx11/managed/space/specialfx/flarequadsoft.sm_hi,4f/4fe851975d68548c_c3c51e7bed9088fba67b162a6c5e5a63,c3c51e7bed9088fba67b162a6c5e5a63,4209,1432
res:/graphics/effect.dx11/managed/space/specialfx/flarequadsoft.sm_lo,4f/4fe84d975d684e76_82749cbf04841855284f6f6162ee6384,82749cbf04841855284f6f6162ee6384,4209,1431
res:/graphics/effect.dx11/managed/space/specialfx/fx3dv5.sm_depth,bc/bca773e2f6770b35_791de28c2b3121001a4ac282280c6337,791de28c2b3121001a4ac282280c6337,13093,2849
res:/graphics/effect.dx11/managed/space/specialfx/fx3dv5.sm_hi,c4/c4c32a6dffe0fab3_b174c3086dc16c80f0a1f5a178e487b4,b174c3086dc16c80f0a1f5a178e487b4,12921,2829
res:/graphics/effect.dx11/managed/space/specialfx/fx3dv5.sm_lo,c4/c4c3266dffe0f461_1fc9aa7323cf51167808ec7e99bdb68b,1fc9aa7323cf51167808ec7e99bdb68b,11794,2793
res:/graphics/effect.dx11/managed/space/specialfx/gradientcircle.sm_depth,fe/fe6d91726e30258d_ae6a2c1f9dce1e110694a55a0bec2104,ae6a2c1f9dce1e110694a55a0bec2104,3277,1358
res:/graphics/effect.dx11/managed/space/specialfx/gradientcircle.sm_hi,1f/1fb4afaaf4d2264b_8b7241dae99420d14ef519bdc779d2b3,8b7241dae99420d14ef519bdc779d2b3,3277,1356
res:/graphics/effect.dx11/managed/space/specialfx/gradientcircle.sm_lo,1f/1fb4abaaf4d21f39_3d2b9ecf7e96d06ef7df3d31693ab578,3d2b9ecf7e96d06ef7df3d31693ab578,3277,1356
res:/graphics/effect.dx11/managed/space/specialfx/hexmaptile.sm_depth,e3/e30d9f5411dd0ad8_6efe9bc253f5a7d6d7fdc9132c56e08c,6efe9bc253f5a7d6d7fdc9132c56e08c,2770,1072
res:/graphics/effect.dx11/managed/space/specialfx/hexmaptile.sm_hi,b2/b244db87d00b3bcc_9f82980098705a39a47270b2e829fa2e,9f82980098705a39a47270b2e829fa2e,2672,1056
res:/graphics/effect.dx11/managed/space/specialfx/hexmaptile.sm_lo,b2/b244d787d00b34b6_5479d590753ed7f70d70c2f8edf081fb,5479d590753ed7f70d70c2f8edf081fb,2574,1039
res:/graphics/effect.dx11/managed/space/specialfx/hologram.sm_depth,ac/acc9671d82c04636_ff796e0c63f537b37289b254f902493e,ff796e0c63f537b37289b254f902493e,7750,2326
res:/graphics/effect.dx11/managed/space/specialfx/hologram.sm_hi,67/67ff1c0a8bbe94e6_1de6328c267cba6ae4cb924879d7ebf4,1de6328c267cba6ae4cb924879d7ebf4,7604,2297
res:/graphics/effect.dx11/managed/space/specialfx/hologram.sm_lo,67/67ff180a8bbe8dac_26e4f7892a72d2fd06e8408a27dd8db4,26e4f7892a72d2fd06e8408a27dd8db4,7686,2336
res:/graphics/effect.dx11/managed/space/specialfx/lines.sm_depth,e5/e5a4f85450310324_81620997787d0d076af5bb6fabfde30e,81620997787d0d076af5bb6fabfde30e,1103,528
res:/graphics/effect.dx11/managed/space/specialfx/lines.sm_hi,7b/7b1b12585d9aefb8_eba907fa67eb5ae74202c5a386bb19ac,eba907fa67eb5ae74202c5a386bb19ac,1103,528
res:/graphics/effect.dx11/managed/space/specialfx/lines.sm_lo,7b/7b1b16585d9af6f2_da02425aabdffe39986b89cc630caf3a,da02425aabdffe39986b89cc630caf3a,1103,528
res:/graphics/effect.dx11/managed/space/specialfx/lines3d.sm_depth,11/11a655f103ef65a3_f76077c397ff05a499c498a1c5525f69,f76077c397ff05a499c498a1c5525f69,5379,1803
res:/graphics/effect.dx11/managed/space/specialfx/lines3d.sm_hi,72/72970e2d6ceccf2d_13912bf87d12487d5aa3503b44aee302,13912bf87d12487d5aa3503b44aee302,5379,1803
res:/graphics/effect.dx11/managed/space/specialfx/lines3d.sm_lo,72/72970a2d6cecc817_25c1dba563096f577863afeada38613f,25c1dba563096f577863afeada38613f,5379,1802
res:/graphics/effect.dx11/managed/space/specialfx/lines3dpicking.sm_depth,90/90740b69f9df23d6_65a59a73ebb08c1ae20f5c234d3fe97e,65a59a73ebb08c1ae20f5c234d3fe97e,2685,951
res:/graphics/effect.dx11/managed/space/specialfx/lines3dpicking.sm_hi,8c/8c3f79e165bc0706_4becb91150b294a320e6fce5b0f6927a,4becb91150b294a320e6fce5b0f6927a,2685,950
res:/graphics/effect.dx11/managed/space/specialfx/lines3dpicking.sm_lo,8c/8c3f75e165bc00cc_c91bc4453db722be187f69d9e9170faf,c91bc4453db722be187f69d9e9170faf,2685,950
res:/graphics/effect.dx11/managed/space/specialfx/lines3dstarmap.sm_depth,f8/f8ce1b7b774d76bf_30e3ba40064a63fea79bbeae075c29d9,30e3ba40064a63fea79bbeae075c29d9,5082,1767
res:/graphics/effect.dx11/managed/space/specialfx/lines3dstarmap.sm_hi,61/61d6beaa8bab7789_041601f6848ecd985ea3026770bde0f9,041601f6848ecd985ea3026770bde0f9,5082,1769
res:/graphics/effect.dx11/managed/space/specialfx/lines3dstarmap.sm_lo,61/61d6c2aa8bab7ec3_2c092857a1a24ad86585f8df1e051d44,2c092857a1a24ad86585f8df1e051d44,5082,1770
res:/graphics/effect.dx11/managed/space/specialfx/lines3dstarmapnew.sm_depth,ed/ed7513f84e753cff_f695a64d7e945f59b30375aeefe7b871,f695a64d7e945f59b30375aeefe7b871,4875,1629
res:/graphics/effect.dx11/managed/space/specialfx/lines3dstarmapnew.sm_hi,22/225fb454ede712c9_18441d162d87e6ed7e88fb08681ecdbe,18441d162d87e6ed7e88fb08681ecdbe,4875,1627
res:/graphics/effect.dx11/managed/space/specialfx/lines3dstarmapnew.sm_lo,22/225fb854ede71903_23e6ee12a98d776c41a80e85b137f4fb,23e6ee12a98d776c41a80e85b137f4fb,4875,1628
res:/graphics/effect.dx11/managed/space/specialfx/linesadditive.sm_depth,dc/dccfe1b694cab1e0_f763dc8ed326af82293298b87ec26ce5,f763dc8ed326af82293298b87ec26ce5,1123,547
res:/graphics/effect.dx11/managed/space/specialfx/linesadditive.sm_hi,87/87ceed55bf8c7ff4_bfef66a1cc88851a004da65129726d7a,bfef66a1cc88851a004da65129726d7a,1123,546
res:/graphics/effect.dx11/managed/space/specialfx/linesadditive.sm_lo,87/87cee955bf8c78be_5127fa6df148e36e5489c8cabbf35679,5127fa6df148e36e5489c8cabbf35679,1123,546
res:/graphics/effect.dx11/managed/space/specialfx/linesadditivestarmap.sm_depth,42/42518c5fd0db7902_4305076259883794c485ff4bf17a612b,4305076259883794c485ff4bf17a612b,1879,850
res:/graphics/effect.dx11/managed/space/specialfx/linesadditivestarmap.sm_hi,e9/e9f237f7271f8942_cb1c7fae0bf5115dee89d9431ed91511,cb1c7fae0bf5115dee89d9431ed91511,1879,850
res:/graphics/effect.dx11/managed/space/specialfx/linesadditivestarmap.sm_lo,e9/e9f23bf7271f8f98_45024775c4eafad0f037b78a4951fb6f,45024775c4eafad0f037b78a4951fb6f,1879,851
res:/graphics/effect.dx11/managed/space/specialfx/linesfx.sm_depth,5c/5c469417f7b2f756_ac5625bac39a90fcf2b51b46d573cc84,ac5625bac39a90fcf2b51b46d573cc84,3777,1293