intel_tex_2 0.5.0

Rust bindings for Intel's ISPC texture compressor.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
!<arch>
/               1751458038              0       10644     `
�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�??$?0AEBV?$allocator@I@std@@$$V@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@I@1@@Z??$?0AEBV?$allocator@M@std@@$$V@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@M@1@@Z??$?0AEBV?$allocator@_K@std@@$$V@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@_K@1@@Z??$_Allocate@$0BA@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z??$_Allocate_at_least_helper@V?$allocator@I@std@@@std@@YAPEAIAEAV?$allocator@I@0@AEA_K@Z??$_Allocate_at_least_helper@V?$allocator@M@std@@@std@@YAPEAMAEAV?$allocator@M@0@AEA_K@Z??$_Allocate_at_least_helper@V?$allocator@_K@std@@@std@@YAPEA_KAEAV?$allocator@_K@0@AEA_K@Z??$_Allocate_manually_vector_aligned@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z??$_Construct_n@$$V@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z??$_Construct_n@$$V@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z??$_Construct_n@$$V@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z??$_Deallocate@$0BA@@std@@YAXPEAX_K@Z??$_Destroy_range@V?$allocator@I@std@@@std@@YAXPEAIQEAIAEAV?$allocator@I@0@@Z??$_Destroy_range@V?$allocator@M@std@@@std@@YAXPEAMQEAMAEAV?$allocator@M@0@@Z??$_Destroy_range@V?$allocator@_K@std@@@std@@YAXPEA_KQEA_KAEAV?$allocator@_K@0@@Z??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAAXXZ??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAAXXZ??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAAXXZ??$_Get_size_of_n@$03@std@@YA_K_K@Z??$_Get_size_of_n@$07@std@@YA_K_K@Z??$_Max_limit@_J@std@@YA_JXZ??$_To_address@PEAI@std@@YA?A_PAEBQEAI@Z??$_To_address@PEAM@std@@YA?A_PAEBQEAM@Z??$_To_address@PEA_K@std@@YA?A_PAEBQEA_K@Z??$_Unfancy@I@std@@YAPEAIPEAI@Z??$_Unfancy@M@std@@YAPEAMPEAM@Z??$_Unfancy@_K@std@@YAPEA_KPEA_K@Z??$_Unfancy_maybe_null@I@std@@YAPEAIPEAI@Z??$_Unfancy_maybe_null@M@std@@YAPEAMPEAM@Z??$_Uninitialized_value_construct_n@V?$allocator@I@std@@@std@@YAPEAIPEAI_KAEAV?$allocator@I@0@@Z??$_Uninitialized_value_construct_n@V?$allocator@M@std@@@std@@YAPEAMPEAM_KAEAV?$allocator@M@0@@Z??$_Uninitialized_value_construct_n@V?$allocator@_K@std@@@std@@YAPEA_KPEA_K_KAEAV?$allocator@_K@0@@Z??$_Zero_range@PEAI@std@@YAPEAIQEAI0@Z??$_Zero_range@PEAM@std@@YAPEAMQEAM0@Z??$_Zero_range@PEA_K@std@@YAPEA_KQEA_K0@Z??$construct@I$$V@?$_Default_allocator_traits@V?$allocator@I@std@@@std@@SAXAEAV?$allocator@I@1@QEAI@Z??$construct@M$$V@?$_Default_allocator_traits@V?$allocator@M@std@@@std@@SAXAEAV?$allocator@M@1@QEAM@Z??$construct@_K$$V@?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@SAXAEAV?$allocator@_K@1@QEA_K@Z??$forward@AEBV?$allocator@I@std@@@std@@YAAEBV?$allocator@I@0@AEBV10@@Z??$forward@AEBV?$allocator@M@std@@@std@@YAAEBV?$allocator@M@0@AEBV10@@Z??$forward@AEBV?$allocator@_K@std@@@std@@YAAEBV?$allocator@_K@0@AEBV10@@Z??$max@H@std@@YAAEBHAEBH0@Z??$min@H@std@@YAAEBHAEBH0@Z??$min@_K@std@@YAAEB_KAEB_K0@Z??0?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAA@PEAIAEAV?$allocator@I@1@@Z??0?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAA@PEAMAEAV?$allocator@M@1@@Z??0?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAA@PEA_KAEAV?$allocator@_K@1@@Z??0?$_Vector_val@U?$_Simple_types@I@std@@@std@@QEAA@XZ??0?$_Vector_val@U?$_Simple_types@M@std@@@std@@QEAA@XZ??0?$_Vector_val@U?$_Simple_types@_K@std@@@std@@QEAA@XZ??0?$allocator@I@std@@QEAA@XZ??0?$allocator@M@std@@QEAA@XZ??0?$allocator@_K@std@@QEAA@XZ??0?$vector@IV?$allocator@I@std@@@std@@QEAA@_KAEBV?$allocator@I@1@@Z??0?$vector@MV?$allocator@M@std@@@std@@QEAA@_KAEBV?$allocator@M@1@@Z??0?$vector@_KV?$allocator@_K@std@@@std@@QEAA@_KAEBV?$allocator@_K@1@@Z??0_Fake_proxy_ptr_impl@std@@QEAA@AEBU_Fake_allocator@1@AEBU_Container_base0@1@@Z??0bad_alloc@std@@AEAA@QEBD@Z??0bad_alloc@std@@QEAA@AEBV01@@Z??0bad_array_new_length@std@@QEAA@AEBV01@@Z??0bad_array_new_length@std@@QEAA@XZ??0exception@std@@QEAA@AEBV01@@Z??0exception@std@@QEAA@QEBDH@Z??1?$_Tidy_guard@V?$vector@IV?$allocator@I@std@@@std@@@std@@QEAA@XZ??1?$_Tidy_guard@V?$vector@MV?$allocator@M@std@@@std@@@std@@QEAA@XZ??1?$_Tidy_guard@V?$vector@_KV?$allocator@_K@std@@@std@@@std@@QEAA@XZ??1?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAA@XZ??1?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAA@XZ??1?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAA@XZ??1?$vector@IV?$allocator@I@std@@@std@@QEAA@XZ??1?$vector@MV?$allocator@M@std@@@std@@QEAA@XZ??1?$vector@_KV?$allocator@_K@std@@@std@@QEAA@XZ??1bad_alloc@std@@UEAA@XZ??1bad_array_new_length@std@@UEAA@XZ??1exception@std@@UEAA@XZ??2@YAPEAX_KPEAX@Z??A?$vector@IV?$allocator@I@std@@@std@@QEAAAEAI_K@Z??A?$vector@MV?$allocator@M@std@@@std@@QEAAAEAM_K@Z??A?$vector@_KV?$allocator@_K@std@@@std@@QEAAAEA_K_K@Z??_7bad_alloc@std@@6B@??_7bad_array_new_length@std@@6B@??_7exception@std@@6B@??_C@_0BA@FOIKENOD@vector?5too?5long@??_C@_0BC@EOODALEL@Unknown?5exception@??_C@_0BF@KINCDENJ@bad?5array?5new?5length@??_Gbad_alloc@std@@UEAAPEAXI@Z??_Gbad_array_new_length@std@@UEAAPEAXI@Z??_Gexception@std@@UEAAPEAXI@Z??_R0?AVbad_alloc@std@@@8??_R0?AVbad_array_new_length@std@@@8??_R0?AVexception@std@@@8??_R1A@?0A@EA@bad_alloc@std@@8??_R1A@?0A@EA@bad_array_new_length@std@@8??_R1A@?0A@EA@exception@std@@8??_R2bad_alloc@std@@8??_R2bad_array_new_length@std@@8??_R2exception@std@@8??_R3bad_alloc@std@@8??_R3bad_array_new_length@std@@8??_R3exception@std@@8??_R4bad_alloc@std@@6B@??_R4bad_array_new_length@std@@6B@??_R4exception@std@@6B@?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z?_Allocate@_Default_allocate_traits@std@@SAPEAX_K@Z?_Buy_nonzero@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z?_Buy_nonzero@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z?_Buy_nonzero@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z?_Buy_raw@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z?_Buy_raw@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z?_Buy_raw@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z?_Get_first@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEAAAEAV?$allocator@I@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEBAAEBV?$allocator@I@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEAAAEAV?$allocator@M@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEBAAEBV?$allocator@M@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEAAAEAV?$allocator@_K@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEBAAEBV?$allocator@_K@2@XZ?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEAAAEAV?$allocator@I@2@XZ?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEBAAEBV?$allocator@I@2@XZ?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEAAAEAV?$allocator@M@2@XZ?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEBAAEBV?$allocator@M@2@XZ?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEAAAEAV?$allocator@_K@2@XZ?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEBAAEBV?$allocator@_K@2@XZ?_Orphan_all@_Container_base0@std@@QEAAXXZ?_Release@?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAAPEAIXZ?_Release@?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAAPEAMXZ?_Release@?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAAPEA_KXZ?_Release@_Fake_proxy_ptr_impl@std@@QEAAXXZ?_Throw_bad_array_new_length@std@@YAXXZ?_Tidy@?$vector@IV?$allocator@I@std@@@std@@AEAAXXZ?_Tidy@?$vector@MV?$allocator@M@std@@@std@@AEAAXXZ?_Tidy@?$vector@_KV?$allocator@_K@std@@@std@@AEAAXXZ?_Xlength@?$vector@IV?$allocator@I@std@@@std@@CAXXZ?_Xlength@?$vector@MV?$allocator@M@std@@@std@@CAXXZ?_Xlength@?$vector@_KV?$allocator@_K@std@@@std@@CAXXZ?allocate@?$allocator@I@std@@QEAAPEAI_K@Z?allocate@?$allocator@M@std@@QEAAPEAM_K@Z?allocate@?$allocator@_K@std@@QEAAPEA_K_K@Z?astc_encode@@YAXPEBUrgba_surface@@PEAMPEAEPEA_KPEAUastc_enc_settings@@@Z?atsc_rank@@YAXPEBUrgba_surface@@HHPEAIPEAUastc_enc_settings@@@Z?can_store@@YA_NHH@Z?data@?$vector@IV?$allocator@I@std@@@std@@QEAAPEAIXZ?data@?$vector@MV?$allocator@M@std@@@std@@QEAAPEAMXZ?deallocate@?$allocator@I@std@@QEAAXQEAI_K@Z?deallocate@?$allocator@M@std@@QEAAXQEAM_K@Z?deallocate@?$allocator@_K@std@@QEAAXQEA_K_K@Z?get_bit@@YAIIH@Z?get_field@@YAIIHH@Z?get_levels@@YAHH@Z?infinity@?$numeric_limits@M@std@@SAMXZ?max_size@?$_Default_allocator_traits@V?$allocator@I@std@@@std@@SA_KAEBV?$allocator@I@2@@Z?max_size@?$_Default_allocator_traits@V?$allocator@M@std@@@std@@SA_KAEBV?$allocator@M@2@@Z?max_size@?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@SA_KAEBV?$allocator@_K@2@@Z?max_size@?$vector@IV?$allocator@I@std@@@std@@QEBA_KXZ?max_size@?$vector@MV?$allocator@M@std@@@std@@QEBA_KXZ?max_size@?$vector@_KV?$allocator@_K@std@@@std@@QEBA_KXZ?pack_block@@YAXQEAIPEAUastc_block@@@Z?pack_block_mode@@YAHPEAUastc_block@@@Z?pack_five_trits@@YAXQEAIQEAHPEAHH@Z?pack_integer_sequence@@YAXQEAIQEAEHHH@Z?pack_three_quint@@YAXQEAIQEAHPEAHH@Z?range_table@@3PAY02HA?reverse_bits_32@@YAII@Z?sequence_bits@@YAHHH@Z?set_bits@@YAXQEAIPEAHHI@Z?setup_list_context@@YAXPEAUastc_enc_context@ispc@@I@Z?what@exception@std@@UEBAPEBDXZCompressBlocksASTCGetProfile_astc_alpha_fastGetProfile_astc_alpha_slowGetProfile_astc_fast_Avx2WmemEnabledWeakValue_CT??_R0?AVbad_alloc@std@@@8??0bad_alloc@std@@QEAA@AEBV01@@Z24_CT??_R0?AVbad_array_new_length@std@@@8??0bad_array_new_length@std@@QEAA@AEBV01@@Z24_CT??_R0?AVexception@std@@@8??0exception@std@@QEAA@AEBV01@@Z24_CTA3?AVbad_array_new_length@std@@_TI3?AVbad_array_new_length@std@@__real@7f800000pack_block_c/               1751458038              0       10294     `
�R�??$?0AEBV?$allocator@I@std@@$$V@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@I@1@@Z??$?0AEBV?$allocator@M@std@@$$V@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@M@1@@Z??$?0AEBV?$allocator@_K@std@@$$V@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@_K@1@@Z??$_Allocate@$0BA@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z??$_Allocate_at_least_helper@V?$allocator@I@std@@@std@@YAPEAIAEAV?$allocator@I@0@AEA_K@Z??$_Allocate_at_least_helper@V?$allocator@M@std@@@std@@YAPEAMAEAV?$allocator@M@0@AEA_K@Z??$_Allocate_at_least_helper@V?$allocator@_K@std@@@std@@YAPEA_KAEAV?$allocator@_K@0@AEA_K@Z??$_Allocate_manually_vector_aligned@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z??$_Construct_n@$$V@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z??$_Construct_n@$$V@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z??$_Construct_n@$$V@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z??$_Deallocate@$0BA@@std@@YAXPEAX_K@Z??$_Destroy_range@V?$allocator@I@std@@@std@@YAXPEAIQEAIAEAV?$allocator@I@0@@Z??$_Destroy_range@V?$allocator@M@std@@@std@@YAXPEAMQEAMAEAV?$allocator@M@0@@Z??$_Destroy_range@V?$allocator@_K@std@@@std@@YAXPEA_KQEA_KAEAV?$allocator@_K@0@@Z??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAAXXZ??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAAXXZ??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAAXXZ??$_Get_size_of_n@$03@std@@YA_K_K@Z??$_Get_size_of_n@$07@std@@YA_K_K@Z??$_Max_limit@_J@std@@YA_JXZ??$_To_address@PEAI@std@@YA?A_PAEBQEAI@Z??$_To_address@PEAM@std@@YA?A_PAEBQEAM@Z??$_To_address@PEA_K@std@@YA?A_PAEBQEA_K@Z??$_Unfancy@I@std@@YAPEAIPEAI@Z??$_Unfancy@M@std@@YAPEAMPEAM@Z??$_Unfancy@_K@std@@YAPEA_KPEA_K@Z??$_Unfancy_maybe_null@I@std@@YAPEAIPEAI@Z??$_Unfancy_maybe_null@M@std@@YAPEAMPEAM@Z??$_Uninitialized_value_construct_n@V?$allocator@I@std@@@std@@YAPEAIPEAI_KAEAV?$allocator@I@0@@Z??$_Uninitialized_value_construct_n@V?$allocator@M@std@@@std@@YAPEAMPEAM_KAEAV?$allocator@M@0@@Z??$_Uninitialized_value_construct_n@V?$allocator@_K@std@@@std@@YAPEA_KPEA_K_KAEAV?$allocator@_K@0@@Z??$_Zero_range@PEAI@std@@YAPEAIQEAI0@Z??$_Zero_range@PEAM@std@@YAPEAMQEAM0@Z??$_Zero_range@PEA_K@std@@YAPEA_KQEA_K0@Z??$construct@I$$V@?$_Default_allocator_traits@V?$allocator@I@std@@@std@@SAXAEAV?$allocator@I@1@QEAI@Z??$construct@M$$V@?$_Default_allocator_traits@V?$allocator@M@std@@@std@@SAXAEAV?$allocator@M@1@QEAM@Z??$construct@_K$$V@?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@SAXAEAV?$allocator@_K@1@QEA_K@Z??$forward@AEBV?$allocator@I@std@@@std@@YAAEBV?$allocator@I@0@AEBV10@@Z??$forward@AEBV?$allocator@M@std@@@std@@YAAEBV?$allocator@M@0@AEBV10@@Z??$forward@AEBV?$allocator@_K@std@@@std@@YAAEBV?$allocator@_K@0@AEBV10@@Z??$max@H@std@@YAAEBHAEBH0@Z??$min@H@std@@YAAEBHAEBH0@Z??$min@_K@std@@YAAEB_KAEB_K0@Z??0?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAA@PEAIAEAV?$allocator@I@1@@Z??0?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAA@PEAMAEAV?$allocator@M@1@@Z??0?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAA@PEA_KAEAV?$allocator@_K@1@@Z??0?$_Vector_val@U?$_Simple_types@I@std@@@std@@QEAA@XZ??0?$_Vector_val@U?$_Simple_types@M@std@@@std@@QEAA@XZ??0?$_Vector_val@U?$_Simple_types@_K@std@@@std@@QEAA@XZ??0?$allocator@I@std@@QEAA@XZ??0?$allocator@M@std@@QEAA@XZ??0?$allocator@_K@std@@QEAA@XZ??0?$vector@IV?$allocator@I@std@@@std@@QEAA@_KAEBV?$allocator@I@1@@Z??0?$vector@MV?$allocator@M@std@@@std@@QEAA@_KAEBV?$allocator@M@1@@Z??0?$vector@_KV?$allocator@_K@std@@@std@@QEAA@_KAEBV?$allocator@_K@1@@Z??0_Fake_proxy_ptr_impl@std@@QEAA@AEBU_Fake_allocator@1@AEBU_Container_base0@1@@Z??0bad_alloc@std@@AEAA@QEBD@Z??0bad_alloc@std@@QEAA@AEBV01@@Z??0bad_array_new_length@std@@QEAA@AEBV01@@Z??0bad_array_new_length@std@@QEAA@XZ??0exception@std@@QEAA@AEBV01@@Z??0exception@std@@QEAA@QEBDH@Z??1?$_Tidy_guard@V?$vector@IV?$allocator@I@std@@@std@@@std@@QEAA@XZ??1?$_Tidy_guard@V?$vector@MV?$allocator@M@std@@@std@@@std@@QEAA@XZ??1?$_Tidy_guard@V?$vector@_KV?$allocator@_K@std@@@std@@@std@@QEAA@XZ??1?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAA@XZ??1?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAA@XZ??1?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAA@XZ??1?$vector@IV?$allocator@I@std@@@std@@QEAA@XZ??1?$vector@MV?$allocator@M@std@@@std@@QEAA@XZ??1?$vector@_KV?$allocator@_K@std@@@std@@QEAA@XZ??1bad_alloc@std@@UEAA@XZ??1bad_array_new_length@std@@UEAA@XZ??1exception@std@@UEAA@XZ??2@YAPEAX_KPEAX@Z??A?$vector@IV?$allocator@I@std@@@std@@QEAAAEAI_K@Z??A?$vector@MV?$allocator@M@std@@@std@@QEAAAEAM_K@Z??A?$vector@_KV?$allocator@_K@std@@@std@@QEAAAEA_K_K@Z??_7bad_alloc@std@@6B@??_7bad_array_new_length@std@@6B@??_7exception@std@@6B@??_C@_0BA@FOIKENOD@vector?5too?5long@??_C@_0BC@EOODALEL@Unknown?5exception@??_C@_0BF@KINCDENJ@bad?5array?5new?5length@??_Gbad_alloc@std@@UEAAPEAXI@Z??_Gbad_array_new_length@std@@UEAAPEAXI@Z??_Gexception@std@@UEAAPEAXI@Z??_R0?AVbad_alloc@std@@@8??_R0?AVbad_array_new_length@std@@@8??_R0?AVexception@std@@@8??_R1A@?0A@EA@bad_alloc@std@@8??_R1A@?0A@EA@bad_array_new_length@std@@8??_R1A@?0A@EA@exception@std@@8??_R2bad_alloc@std@@8??_R2bad_array_new_length@std@@8??_R2exception@std@@8??_R3bad_alloc@std@@8??_R3bad_array_new_length@std@@8??_R3exception@std@@8??_R4bad_alloc@std@@6B@??_R4bad_array_new_length@std@@6B@??_R4exception@std@@6B@?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z?_Allocate@_Default_allocate_traits@std@@SAPEAX_K@Z?_Buy_nonzero@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z?_Buy_nonzero@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z?_Buy_nonzero@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z?_Buy_raw@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z?_Buy_raw@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z?_Buy_raw@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z?_Get_first@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEAAAEAV?$allocator@I@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEBAAEBV?$allocator@I@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEAAAEAV?$allocator@M@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEBAAEBV?$allocator@M@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEAAAEAV?$allocator@_K@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEBAAEBV?$allocator@_K@2@XZ?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEAAAEAV?$allocator@I@2@XZ?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEBAAEBV?$allocator@I@2@XZ?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEAAAEAV?$allocator@M@2@XZ?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEBAAEBV?$allocator@M@2@XZ?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEAAAEAV?$allocator@_K@2@XZ?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEBAAEBV?$allocator@_K@2@XZ?_Orphan_all@_Container_base0@std@@QEAAXXZ?_Release@?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAAPEAIXZ?_Release@?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAAPEAMXZ?_Release@?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAAPEA_KXZ?_Release@_Fake_proxy_ptr_impl@std@@QEAAXXZ?_Throw_bad_array_new_length@std@@YAXXZ?_Tidy@?$vector@IV?$allocator@I@std@@@std@@AEAAXXZ?_Tidy@?$vector@MV?$allocator@M@std@@@std@@AEAAXXZ?_Tidy@?$vector@_KV?$allocator@_K@std@@@std@@AEAAXXZ?_Xlength@?$vector@IV?$allocator@I@std@@@std@@CAXXZ?_Xlength@?$vector@MV?$allocator@M@std@@@std@@CAXXZ?_Xlength@?$vector@_KV?$allocator@_K@std@@@std@@CAXXZ?allocate@?$allocator@I@std@@QEAAPEAI_K@Z?allocate@?$allocator@M@std@@QEAAPEAM_K@Z?allocate@?$allocator@_K@std@@QEAAPEA_K_K@Z?astc_encode@@YAXPEBUrgba_surface@@PEAMPEAEPEA_KPEAUastc_enc_settings@@@Z?atsc_rank@@YAXPEBUrgba_surface@@HHPEAIPEAUastc_enc_settings@@@Z?can_store@@YA_NHH@Z?data@?$vector@IV?$allocator@I@std@@@std@@QEAAPEAIXZ?data@?$vector@MV?$allocator@M@std@@@std@@QEAAPEAMXZ?deallocate@?$allocator@I@std@@QEAAXQEAI_K@Z?deallocate@?$allocator@M@std@@QEAAXQEAM_K@Z?deallocate@?$allocator@_K@std@@QEAAXQEA_K_K@Z?get_bit@@YAIIH@Z?get_field@@YAIIHH@Z?get_levels@@YAHH@Z?infinity@?$numeric_limits@M@std@@SAMXZ?max_size@?$_Default_allocator_traits@V?$allocator@I@std@@@std@@SA_KAEBV?$allocator@I@2@@Z?max_size@?$_Default_allocator_traits@V?$allocator@M@std@@@std@@SA_KAEBV?$allocator@M@2@@Z?max_size@?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@SA_KAEBV?$allocator@_K@2@@Z?max_size@?$vector@IV?$allocator@I@std@@@std@@QEBA_KXZ?max_size@?$vector@MV?$allocator@M@std@@@std@@QEBA_KXZ?max_size@?$vector@_KV?$allocator@_K@std@@@std@@QEBA_KXZ?pack_block@@YAXQEAIPEAUastc_block@@@Z?pack_block_mode@@YAHPEAUastc_block@@@Z?pack_five_trits@@YAXQEAIQEAHPEAHH@Z?pack_integer_sequence@@YAXQEAIQEAEHHH@Z?pack_three_quint@@YAXQEAIQEAHPEAHH@Z?range_table@@3PAY02HA?reverse_bits_32@@YAII@Z?sequence_bits@@YAHHH@Z?set_bits@@YAXQEAIPEAHHI@Z?setup_list_context@@YAXPEAUastc_enc_context@ispc@@I@Z?what@exception@std@@UEBAPEBDXZCompressBlocksASTCGetProfile_astc_alpha_fastGetProfile_astc_alpha_slowGetProfile_astc_fast_Avx2WmemEnabledWeakValue_CT??_R0?AVbad_alloc@std@@@8??0bad_alloc@std@@QEAA@AEBV01@@Z24_CT??_R0?AVbad_array_new_length@std@@@8??0bad_array_new_length@std@@QEAA@AEBV01@@Z24_CT??_R0?AVexception@std@@@8??0exception@std@@QEAA@AEBV01@@Z24_CTA3?AVbad_array_new_length@std@@_TI3?AVbad_array_new_length@std@@__real@7f800000pack_block_c//              1751458038              0       46        `
src\ispc\1624c2510bdcc8a6-ispc_texcomp_astc.o/0              1751458038              100666  245775    `
d���i��y��.drectvevdK
.debug$S؅�L���@B.data���@P�.rdata���@P@.bss�0�.text$mn#���� P`.text$mn4�
�
 P`.debug$S��
�@B.text$mn4�� P`.debug$S�
�@B.text$mn4�� P`.debug$S��@B.text$mn;�7 P`.debug$SK_@B.text$mn%�� P`.debug$S��@B.text$mn%C P`.debug$S�MI@B.text$mn%�� P`.debug$S��@B.text$mn��� P`.debug$Sl�@B.text$mn�6� P`.debug$S�0@B.text$mn�@� P`.debug$S�:�@B.text$mn�:� P`.debug$S�4 "@B.text$mn>L"�" P`.debug$S��"z#@B.text$mn�# P`.debug$S��#�$@B.text$mn�$ P`.debug$S��$�%@B.text$mn�% P`.debug$S�&�&@B.text$mnC"'e' P`.debug$S�y'q(@B.text$mnC�(�( P`.debug$S��(�)@B.text$mnC*K* P`.debug$S�_*[+@B.text$mnB�+�+ P`.debug$S4�+-@B.text$mnB?-�- P`.debug$S4�-�.@B.text$mn�. P`.debug$S�/�/@B.text$mn:0 P`.debug$S�H01@B.text$mn41 P`.debug$S�B1�1@B.text$mn&2 P`.debug$S�42�2@B.text$mn$3 P`.debug$S�/3�3@B.text$mn4 P`.debug$S�4�4@B.text$mn�4 P`.debug$S�	5�5@B.text$mn�5 P`.debug$S��5�6@B.text$mn�6 P`.debug$S��6�7@B.text$mn��7�8 P`.debug$S��8T:@B.text$mn��:9; P`.debug$S�u;�<@B.text$mn�9=�= P`.debug$S�>�?@B.text$mnU�?C@ P`.debug$S a@�A@B.text$mnU�A�A P`.debug$SB4C@B.text$mnU\C�C P`.debug$S$�C�D@B.text$mn@E[E P`.debug$S eE�F@B.text$mn@�FG P`.debug$SGH@B.text$mn@WH�H P`.debug$S(�H�I@B.text$mnJ P`.debug$S�J�J@B.text$mnK P`.debug$S�K�K@B.text$mnL P`.debug$S�L�L@B.text$mnEM P`.debug$S�[MN@B.text$mnEGN P`.debug$S��NPO@B.text$mnGxO P`.debug$S��O�P@B.text$mn>�P P`.debug$S0�P)R@B.text$mn>QR P`.debug$S$�R�S@B.text$mn>�S P`.debug$S8TQU@B.text$mn1yU P`.debug$S��U�V@B.text$mn1�V P`.debug$S��V�W@B.text$mn1X P`.debug$S�8X4Y@B.text$mn\Y P`.debug$S�gY/Z@B.text$mnWZ P`.debug$S�bZ[@B.text$mnB[ P`.debug$S�M[\@B.text$mnEE\�\ P`.debug$S4�\�]@B.text$mnE�]?^ P`.debug$SS^k_@B.text$mnE�_�_ P`.debug$SD�_0a@B.text$mnXa P`.debug$S�ma]b@B.text$mn<�b�b P`.debug$S��b�c@B.text$mn6�cd P`.debug$S�#d�d@B.text$mn6�de P`.debug$S�e�e@B.text$mn3�ef P`.debug$S�.fg@B.text$mnY.g�g P`.debug$S��gsh@B.text$mnI�h�h P`.debug$S��h�i@B.text$mn'j-j P`.debug$S<7jsk@B.text$mn'�k�k P`.debug$S �k�l@B.text$mn'm;m P`.debug$SLEm�n@B.text$mn.�n�n P`.debug$S�n
p@B.text$mn.5pcp P`.debug$Smpyq@B.text$mn.�q�q P`.debug$S$�q�r@B.text$mn%s>s P`.debug$SHsXt@B.text$mn�t�t P`.debug$S��t�u@B.text$mn�u�u P`.debug$S �uw@B.text$mn*wCw P`.debug$S�Mw�w@B.text$mn�w�w P`.debug$S�x�x@B.text$mn/�x�x P`.debug$S��x�y@B.text$mn�y P`.debug$S��y�z@B.text$mn,�z P`.debug$S{|@B.text$mn,G| P`.debug$Ss|{}@B.text$mn,�} P`.debug$S �}�~@B.text$mn<S P`.debug$S�g�@B.text$mn<�O� P`.debug$S�c��@B.text$mn<�S� P`.debug$S�g���@B.text$mn���� P`.debug$Sx��4�@B.text$mn\�t� P`.debug$S�~�J�@B.text$mn:r��� P`.debug$Sʅކ@B.text$mn:�@� P`.debug$S^�b�@B.text$mn:��Ĉ P`.debug$S���@B.text$mn�&��� P`.debug$S�Ɋm�@B.text$mn���$� P`.debug$S�8�Ў@B.text$mn����� P`.debug$S���G�@B.text$mno� P`.debug$Sz���@B.text$mn�� P`.debug$SŒݓ@B.text$mn� P`.debug$S��@B.text$mn@� P`.debug$SK�S�@B.text$mn{� P`.debug$S ����@B.text$mnΗ P`.debug$S ٗ��@B.text$mn!�<� P`.debug$S�F�&�@B.text$mnN�i� P`.debug$S�s�S�@B.text$mn{��� P`.debug$S���t�@B.text$mn���� P`.debug$S�����@B.text$mn��؝ P`.debug$S��ʞ@B.text$mn�
� P`.debug$S����@B.text$mn'� P`.debug$S�-��@B.text$mn 	� P`.debug$S�)��@B.text$mn A� P`.debug$S�a�M�@B.text$mn u� P`.debug$S�����@B.text$mn�� P`.debug$S���k�@B.text$mn%���� P`.debug$S�֥��@B.text$mn���{� P`.debug$S���G�@B.text$mn�o�<� P`.debug$S�d���@B.text$mn� ��� P`.debug$S����@B.text$mn��� P`.debug$S���@B.text$mn�!� P`.debug$S�5���@B.text$mn!�7� P`.debug$S�K�#�@B.text$mn%K�p� P`.debug$S���p�@B.text$mn%��ѳ P`.debug$S��ʹ@B.text$mn%	�.� P`.debug$S�B�2�@B.text$mnn��� P`.debug$S���s�@B.text$mn���� P`.debug$S�����@B.text$mn/��� P`.debug$S���@B.text$mn/
�<� P`.debug$S�F�2�@B.text$mn/Z��� P`.debug$S�����@B.text$mn	���� P`.debug$S�Ƽz�@B.text$mn�� P`.debug$S�����@B.text$mnƾ P`.debug$S�־��@B.text$mn� P`.debug$S�����@B.text$mnA�O� P`.debug$S�w�[�@B.text$mnA���� P`.debug$S�����@B.text$mnA��)� P`.debug$S�Q�=�@B.text$mn8e��� P`.debug$S���_�@B.xdata���3�@0@.pdata�e�%�0@0@.xdata�@0@.pdata
��@0@.xdata7�@0@.pdata?�K�@0@.xdatai�@0@.pdataq�}�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata��@0@.xdata1�@0@.pdata9�E�@0@.xdatac�@0@.pdatak�w�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata�
�@0@.xdata+�@0@.pdata3�?�@0@.xdata]�@0@.pdatae�q�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata���@0@.voltblP%�
0.xdatau�@0@.pdata}���@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata�@0@.pdata��@0@.xdata=�@0@.pdataE�Q�@0@.xdatao�@0@.pdataw���@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata�@0@.pdata
��@0@.xdata7�@0@.pdata?�K�@0@.xdatai�@0@.pdataq�}�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata��@0@.xdata1�@0@.pdata9�E�@0@.xdatac�@0@.pdatak�w�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata�
�@0@.xdata+�@0@.pdata3�?�@0@.xdata]�@0@.pdatae�q�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata���@0@.xdata%�@0@.pdata-�9�@0@.xdataW�@0@.pdata_�k�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata���@0@.xdata�@0@.pdata'�3�@0@.xdataQ�@0@.pdataY�e�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata�@0@.pdata!�-�@0@.xdataK�@0@.pdataS�_�@0@.xdata}�@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata�@0@.pdata�'�@0@.xdataE�@0@.pdataM�Y�@0@.xdataw�@0@.pdata���@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata
�@0@.pdata�!�@0@.xdata?�@0@.pdataG�S�@0@.xdataq�@0@.pdatay���@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata�@0@.pdata��@0@.xdata9�@0@.pdataA�M�@0@.xdatak�@0@.pdatas��@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata�@0@.pdata	��@0@.xdata3�@0@.pdata;�G�@0@.xdatae�@0@.pdatam�y�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata��@0@.xdata-�@0@.pdata5�A�@0@.xdata_�@0@.pdatag�s�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata��	�@0@.xdata'�@0@.pdata/�;�@0@.xdataY�@0@.pdataa�m�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata���@0@.xdata!�@0@.pdata)�5�@0@.xdataS�@0@.pdata[�g�@0@.xdata��@0@.pdata����@0@.xdata��@0@.pdata����@0@.rdata���@@@.rdata�@@@.rdata1�I�@@@.rdatag��@@@.rdata��@@@.data$r$����@@�.xdata$x$���@@@.xdata$x�4�@@@.xdata$xH�d�@@@.data$r/����@@�.xdata$x$����@@@.data$r$���@@�.xdata$x$!�E�@@@.rdataY�@@@.rdata$r$i���@@@.rdata$r����@@@.rdata$r����@@@.rdata$r$���@@@.rdata$r$�;�@@@.rdata$rY�m�@@@.rdata$rw���@@@.rdata$r$����@@@.rdata$r$��
�@@@.rdata$r!�5�@@@.rdata$r?�S�@@@.rdata$r$g���@@@.rdata��@0@.debug$S4����@B.debug$S4��)�@B.debug$S4=�q�@B.debug$S@����@B.debug$T���@B.chks64i�
   /FAILIFMISMATCH:"_MSC_VER=1900" /FAILIFMISMATCH:"_ITERATOR_DEBUG_LEVEL=0" /FAILIFMISMATCH:"RuntimeLibrary=MT_StaticRelease" /DEFAULTLIB:"libcpmt" /FAILIFMISMATCH:"_CRT_STDIO_ISO_WIDE_SPECIFIERS=0" /alternatename:_Avx2WmemEnabled=_Avx2WmemEnabledWeakValue /FAILIFMISMATCH:"annotate_string=0" /FAILIFMISMATCH:"annotate_vector=0" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" �WD:\a\intel-tex-rs-2\intel-tex-rs-2\src\ispc\1624c2510bdcc8a6-ispc_texcomp_astc.o:<`�,��,��Microsoft (R) Optimizing Compiler$__vc_attributes$helper_attributes$atl$ispc$std$_Has_ADL_swap_detail
$rel_ops$tr1��:GJI�GetProfile_astc_fastB�OsettingstOblock_widthtOblock_heightO�PJD���%�1�=�I ���@GJI�GetProfile_astc_alpha_fastB�OsettingstOblock_widthtOblock_heightO�PJD#�$�%�%&�1(�=)�I*���@GJI�GetProfile_astc_alpha_slowB�OsettingstOblock_widthtOblock_heightO�PJD-�.�/�%0�12�=3�I4���8G���CompressBlocksASTC�B��Osrc� Odst�Osettings@tOlist_size��Omode_lists8tOtex_width0tOprogramCount��Omode_bufferxtOmode_list_size�Oblock_scores�IDtOyyZzHtOxxYF<tOyy{LtO_x��\tOxx��PtOi|4tOkU6h#Omode_list�tOmode_bintuOoffset`uOmodeM�ptOindex��TtOmode_bin���#Omode_listO���-t����N�����������������I��z������������F
�{��
������6�J�c������������� �#�;%�r&��(��)��+��-��.��/�1�Q2�m3�r4��z/G<7�can_storeB tOvalue(tObitsO�@<4I�J�K�5L�7M��)5G;	6�pack_block_modexB��Oblock(tODH0tOH8tOD$tOblock_mode tORU�DtOA@tOBX�LtOAHtOBXTtOAPtOBX�\tOAXtOBUMdtOA`tOBD�ltOAhtOBO� ;!P�	Q�S�!T�IU�XV��W��Y��[��\�^�Aa��c��d��f��i�k�,l�>n�sq��s��t��v�y�M{�[|�m~������������2��6���h0Gts�get_levelsBtOrangeO�0t$����s����3G���sequence_bitsB tOcount(tOrangetObitsO�H�<����8��z����������.G���set_bits8B@uOdataHtOposPtObitsXuOvalue uOword(uOmaskO�X�L����:��X��t�������������/Gc^�get_field(B0uOinput8tOa@tObO�8c,����6��^���u-G#�get_bit(B0uOinput8tOaO�0#$�������D5G�*��pack_five_trits�C
:pO�uOdata�tOsequence�tOpos�tOn0tOC$tOT uOpack2@�Ot,uOpack1X�Om{*(tOiO�0�#$��*��E��g������������������������?��_������������������������)��O�t�|�������	�6�\	������
��K6G'��pack_three_quintxC
:hO�uOdata�tOsequence�tOpos�tOn uOpackH�Oq,tOQX�Om{'$tOi�(tOCO����'�B�d��������#�%�0&�2)�S,�c.��/��2��6��7�
8�09�U:��;��<��>��?��};G$.�pack_integer_sequence�C
:�O�uOoutput_data� Osequence�tOpos�tOcount�tOrange@tOn tObitsh�Odata$tOpos0��,tOj����Otempl�0tOi��4tOj����Otempl8tOiO�<tOiH�(tOkO��$�B�.C�WD�nE�yG��H��J��L��M�fN��O��P��Q��S��U�V�lW��X��Y��\��^��_��b�c�&d�He��g�h��}5G���reverse_bits_32B uOinputuOtO�`�	Tk�l�m� n�<o�Xp�tq��s��t��c0G�#��pack_block�C
:�O�uOdata��OblockLtOweight_bits�tOremaining_bits�tOconfig_bitshtOnum_weights8tOextra_bits��Ordata`tOendpoint_rangeTtOnum_cem_pairs<tOpos�OXtOmax_cem0tOCEMHtOmin_cemq�DtOj`a�tOpos2��4tOj��dtOc|tOmp%�tOpos2M�\tOjO>PtOrange2Y�tObitsim@tOiO���;�w�#x�8z�@{�h}��~�����������=��O��s��{�����������������7��S��a�������������,��H��p��u�������������������%��N��Y��m����������������6��>��Y��q��������������������
��9��m�������/G?:�atsc_rank8B@�OsrcHtOxxPtOyyXuOmode_buffer`�OsettingsO�0?$����:���}2G#�pack_block_c(B0uOdata8OblockO�0#$��������8G�
��setup_list_context8B@	OctxHuOpacked_mode"$tOcolor_endpoint_modes0O�`�	T��
��+��J��{����������������1G�'~�astc_encodeXC
:HO`�Osrch@Oblock_scoresp Odstx#Olist��Osettings0Olist_contextO�8�,��'��M��~���V std::_VBITS
�range_tableB�std::allocator<float>::_Minimum_asan_allocation_alignmentM�std::allocator<unsigned __int64>::_Minimum_asan_allocation_alignmentI�std::allocator<unsigned int>::_Minimum_asan_allocation_alignment��&�std::_Threshold_find_first_of8�std::_False_trivial_cat::_Bitcopy_constructible5�std::_False_trivial_cat::_Bitcopy_assignable.3std::integral_constant<bool,0>::value.std::integral_constant<bool,1>::valueNstd::denorm_absentNstd::denorm_presentSstd::round_toward_zeroSstd::round_to_nearest#Nstd::_Num_base::has_denorm(�std::_Num_base::has_denorm_loss%�std::_Num_base::has_infinity&�std::_Num_base::has_quiet_NaN*�std::_Num_base::has_signaling_NaN#�std::_Num_base::is_bounded!�std::_Num_base::is_exact"�std::_Num_base::is_iec559#�std::_Num_base::is_integer"�std::_Num_base::is_modulo"�std::_Num_base::is_signed'�std::_Num_base::is_specialized(�std::_Num_base::tinyness_before�std::_Num_base::traps$Sstd::_Num_base::round_styleVstd::_Num_base::digits!Vstd::_Num_base::digits10%Vstd::_Num_base::max_digits10%Vstd::_Num_base::max_exponent'Vstd::_Num_base::max_exponent10%Vstd::_Num_base::min_exponent'Vstd::_Num_base::min_exponent10Vstd::_Num_base::radix'�std::_Num_int_base::is_bounded%�std::_Num_int_base::is_exact'�std::_Num_int_base::is_integer+�std::_Num_int_base::is_specialized"Vstd::_Num_int_base::radix)Nstd::_Num_float_base::has_denorm+�std::_Num_float_base::has_infinity,�std::_Num_float_base::has_quiet_NaN0�std::_Num_float_base::has_signaling_NaN)�std::_Num_float_base::is_bounded(�std::_Num_float_base::is_iec559(�std::_Num_float_base::is_signed-�std::_Num_float_base::is_specialized*Sstd::_Num_float_base::round_style$Vstd::_Num_float_base::radix*Vstd::numeric_limits<bool>::digits-�std::numeric_limits<char>::is_signed-�std::numeric_limits<char>::is_modulo*Vstd::numeric_limits<char>::digits,Vstd::numeric_limits<char>::digits104�std::numeric_limits<signed char>::is_signed1Vstd::numeric_limits<signed char>::digits3Vstd::numeric_limits<signed char>::digits106�std::numeric_limits<unsigned char>::is_modulo3Vstd::numeric_limits<unsigned char>::digits5Vstd::numeric_limits<unsigned char>::digits101�std::numeric_limits<char16_t>::is_modulo.Vstd::numeric_limits<char16_t>::digits0Vstd::numeric_limits<char16_t>::digits101�std::numeric_limits<char32_t>::is_modulo.V std::numeric_limits<char32_t>::digits0V	std::numeric_limits<char32_t>::digits100�std::numeric_limits<wchar_t>::is_modulo-Vstd::numeric_limits<wchar_t>::digits/Vstd::numeric_limits<wchar_t>::digits10.�std::numeric_limits<short>::is_signed+Vstd::numeric_limits<short>::digits-Vstd::numeric_limits<short>::digits10,�std::numeric_limits<int>::is_signed)Vstd::numeric_limits<int>::digits+V	std::numeric_limits<int>::digits10-�std::numeric_limits<long>::is_signed*Vstd::numeric_limits<long>::digits,V	std::numeric_limits<long>::digits100�std::numeric_limits<__int64>::is_signed-V?std::numeric_limits<__int64>::digits/Vstd::numeric_limits<__int64>::digits107�std::numeric_limits<unsigned short>::is_modulo4Vstd::numeric_limits<unsigned short>::digits6Vstd::numeric_limits<unsigned short>::digits105�std::numeric_limits<unsigned int>::is_modulo2V std::numeric_limits<unsigned int>::digits4V	std::numeric_limits<unsigned int>::digits106�std::numeric_limits<unsigned long>::is_modulo3V std::numeric_limits<unsigned long>::digits5V	std::numeric_limits<unsigned long>::digits109�std::numeric_limits<unsigned __int64>::is_modulo6V@std::numeric_limits<unsigned __int64>::digits8Vstd::numeric_limits<unsigned __int64>::digits10:�std::integral_constant<unsigned __int64,0>::value+Vstd::numeric_limits<float>::digits-Vstd::numeric_limits<float>::digits101V	std::numeric_limits<float>::max_digits101V�std::numeric_limits<float>::max_exponent3V&std::numeric_limits<float>::max_exponent102V��std::numeric_limits<float>::min_exponent4V��std::numeric_limits<float>::min_exponent10,V5std::numeric_limits<double>::digits.Vstd::numeric_limits<double>::digits102Vstd::numeric_limits<double>::max_digits102Vstd::numeric_limits<double>::max_exponent4V4std::numeric_limits<double>::max_exponent104V��std::numeric_limits<double>::min_exponent6V���std::numeric_limits<double>::min_exponent101V5std::numeric_limits<long double>::digits3Vstd::numeric_limits<long double>::digits107Vstd::numeric_limits<long double>::max_digits107Vstd::numeric_limits<long double>::max_exponent9V4std::numeric_limits<long double>::max_exponent109V��std::numeric_limits<long double>::min_exponent;V���std::numeric_limits<long double>::min_exponent10)�std::_Invoker_functor::_Strategy��,�std::_Invoker_pmf_object::_Strategy-�std::_Invoker_pmf_refwrap::_Strategy-�std::_Invoker_pmf_pointer::_Strategy,�std::_Invoker_pmd_object::_Strategy�/-�std::_Invoker_pmd_refwrap::_Strategy��-�std::_Invoker_pmd_pointer::_Strategy'�std::_Big_allocation_threshold'� std::_Big_allocation_alignment�'std::_Non_user_size.�	���������std::_Big_allocation_sentinel'�	�%#"����std::_FNV_offset_basis �
��std::_FNV_prime:�std::_Floating_type_traits<float>::_Mantissa_bits:�std::_Floating_type_traits<float>::_Exponent_bitsD�std::_Floating_type_traits<float>::_Maximum_binary_exponentE���std::_Floating_type_traits<float>::_Minimum_binary_exponent:�std::_Floating_type_traits<float>::_Exponent_bias7�std::_Floating_type_traits<float>::_Sign_shift;�std::_Floating_type_traits<float>::_Exponent_shift:��std::_Floating_type_traits<float>::_Exponent_maskE�����std::_Floating_type_traits<float>::_Normal_mantissa_maskG����std::_Floating_type_traits<float>::_Denormal_mantissa_maskJ��@std::_Floating_type_traits<float>::_Special_nan_mantissa_maskB���std::_Floating_type_traits<float>::_Shifted_sign_maskF���std::_Floating_type_traits<float>::_Shifted_exponent_mask>���std::_Floating_type_traits<float>::_Minimum_value>����std::_Floating_type_traits<float>::_Maximum_value�std::_Asan_granularity;�5std::_Floating_type_traits<double>::_Mantissa_bits$�std::_Asan_granularity_mask;�std::_Floating_type_traits<double>::_Exponent_bitsE��std::_Floating_type_traits<double>::_Maximum_binary_exponentG���std::_Floating_type_traits<double>::_Minimum_binary_exponent;��std::_Floating_type_traits<double>::_Exponent_bias8�?std::_Floating_type_traits<double>::_Sign_shift<�4std::_Floating_type_traits<double>::_Exponent_shift;��std::_Floating_type_traits<double>::_Exponent_maskJ�
�������std::_Floating_type_traits<double>::_Normal_mantissa_maskL�
�������std::_Floating_type_traits<double>::_Denormal_mantissa_maskO�
�std::_Floating_type_traits<double>::_Special_nan_mantissa_maskG�	��std::_Floating_type_traits<double>::_Shifted_sign_maskK�
��std::_Floating_type_traits<double>::_Shifted_exponent_maskC�
�std::_Floating_type_traits<double>::_Minimum_valueC�
��������std::_Floating_type_traits<double>::_Maximum_value6�std::_Iterator_base0::_Unwrap_when_unverified7�std::_Iterator_base12::_Unwrap_when_unverified:+std::integral_constant<unsigned __int64,2>::value���std::_Meta_nposV std::_ISORT_MAX&Vstd::_Stl_isa_available_sse42%Vstd::_Stl_isa_available_avx2;_CatchableType#rsize_t/_TypeDescriptor;_s__CatchableType#uint64_tpva_listispc::astc_blockispc::astc_enc_contextXstd::_Num_base�std::_Num_int_baseNstd::float_denorm_style=Kstd::_Default_allocator_traits<std::allocator<float> >"�std::numeric_limits<double>>�std::vector<unsigned int,std::allocator<unsigned int> >T~std::vector<unsigned int,std::allocator<unsigned int> >::_Reallocation_policy[std::_Num_float_base?3std::allocator_traits<std::allocator<unsigned __int64> > �std::numeric_limits<bool> �std::_Fake_proxy_ptr_impl*�std::numeric_limits<unsigned short>.mstd::initializer_list<unsigned __int64>%�std::_One_then_variadic_args_t'std::allocator<unsigned __int64>8std::false_typeSstd::float_round_styleH0std::_Default_allocator_traits<std::allocator<unsigned __int64> >F�std::vector<unsigned __int64,std::allocator<unsigned __int64> >\�std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Reallocation_policyD
std::_Uninitialized_backout_al<std::allocator<unsigned int> >,�std::numeric_limits<unsigned __int64>#�std::initializer_list<float>$�std::numeric_limits<char16_t>%std::integral_constant<bool,1> �std::_Leave_proxy_unboundb�std::_Compressed_pair<std::allocator<float>,std::_Vector_val<std::_Simple_types<float> >,1>)std::_Iterator_base12#�std::numeric_limits<wchar_t>�std::_Container_base0*Pstd::initializer_list<unsigned int>%8std::integral_constant<bool,0>�std::bad_exception�std::_Fake_allocator3cstd::_Vector_val<std::_Simple_types<float> >!_std::numeric_limits<float>x�std::_Compressed_pair<std::allocator<unsigned __int64>,std::_Vector_val<std::_Simple_types<unsigned __int64> >,1>Hstd::exception_ptr:+std::_Vector_val<std::_Simple_types<unsigned int> >=3std::_Uninitialized_backout_al<std::allocator<float> >$�std::numeric_limits<char32_t> std::exception�std::_Iterator_base0"std::_Container_base12)�std::numeric_limits<unsigned char>std::true_type �std::numeric_limits<long>�std::_Invoker_strategy$ustd::_Default_allocate_traits!�std::numeric_limits<short>fstd::bad_alloc#�std::numeric_limits<__int64> |std::bad_array_new_lengthp�std::_Compressed_pair<std::allocator<unsigned int>,std::_Vector_val<std::_Simple_types<unsigned int> >,1>std::_Container_proxyOstd::nested_exception(�std::numeric_limits<unsigned int>0std::vector<float,std::allocator<float> >F�std::vector<float,std::allocator<float> >::_Reallocation_policy'�std::numeric_limits<long double>H std::_Uninitialized_backout_al<std::allocator<unsigned __int64> >std::nullptr_t)�std::numeric_limits<unsigned long>#�std::allocator<unsigned int>'�std::numeric_limits<signed char> �std::numeric_limits<char>Dstd::_Default_allocator_traits<std::allocator<unsigned int> >,std::allocator<float>C�std::_Tidy_guard<std::vector<float,std::allocator<float> > >4Nstd::allocator_traits<std::allocator<float> >>Hstd::_Vector_val<std::_Simple_types<unsigned __int64> >Y�std::_Tidy_guard<std::vector<unsigned __int64,std::allocator<unsigned __int64> > >;std::allocator_traits<std::allocator<unsigned int> >Q�std::_Tidy_guard<std::vector<unsigned int,std::allocator<unsigned int> > >�std::numeric_limits<int>�std::bad_variant_access
_off_ttint32_t
!_ino_t=terminate_handlerC_CatchableTypeArrayptrdiff_t5_PMD uint8_tterrno_t__time64_tE_PMFN#uintptr_tC_s__CatchableTypeArray�rgba_surface�astc_block
#size_t
time_t__std_exception_data
u_dev_t�astc_enc_settings=unexpected_handleruuint32_t�8 �R��M{|�)�A���w"�b���"����P�co �=׵�*�>�="��UJ���aP�
R�� ���ǣ:MZ�%?qg�+r���2���Ճ�[[n l�����`LN~��2u�<����9z0iv&j��T P�;P�����<d;[�c����u����J$����� �
b�gH��<j��w�/��&d[ݡ?�v�h=�: �Lm���t�La<2�pT������*b�^A_9�� .Ճ�ۊ+��FR�9�o��cgA��_q���� 
~�,;�T銢h��>����H&��hV>�{/�S �ty�	�nNشϴ�N��uG6E����d��� �/%��{6�N�5ݟ����m��<���>�� ��:Lw��V�=G'V�o�I�-}}�ct[��Z< R��qĖ�{K��le���z�-�Kd���Vo� ��x�A��>���՝N7�5
v�C���躙M��� ���H��Bdgx��4s��R	��C�Zs��)>
Q �v1
N�ݤHs���3l�:/O�YCe�o���z�� f����Tc�+#T3Z�4_���vAǫȏ��6 PpD�7�sZ�I Jǧ��E֪`w ����,W�� ��ܜ�/�	���{?�+4�yE4J�E侬X�=�� �Ih%4�/��k�t�_d��M���-�2�e>�6 ݴ�����
O�Y9A��y`lv��X�L0��ܠ�� ���,�;+��`�3p�ֶoe��e td�	^,� &���i����*z2�c��]����9��;M �Gu��=#�N�<>���#�u��X�e3�����"7� �l�J�#��«�1⡊ٗa��Gu�w_��	 �2�.�9�ʊ�Z-�˧y�����'o՞Y]l	 Vƾg����?�}H�<�(�cܢĜ)oI+��	 Օ�	d�	���^���q��BaH��E//E�F
 ��GdA�Xk���G2�J|�3e�ж�X3���
 ���c�$=�"�3�aѮSY���
�_�����
 ��R��v��Ը��"�[J��5�>xF��d 栊��^�o����3@H��a�9�^�:�M`q�� ���x��>*A�*8` 3���m q���&�{)� ��^}���u���=I?��\�T�uk9l�H(>c� ��~������e�&��%��P*�x�g3C(��� �<�1�8�/����b-}��ݘ
�%�8��C:
 G4��5c��z�9
m����u su�I;!0	�
 �V�ķ�-X4��m�����T�h#[���	�4��
 Ѽ
_�=U�;�6��<��4�mǣ�7����&�Nh v���%��4��/�.Aǻ$��!�\,Jr��� D���0��E�JG5����J�\)�pw��� 
���{e_��g�1���d�ە�3���H�,2�u �������XJ��;�7�c���;�
��W\(lR� 5~+Nj�Z�I���(D�1򈸘{XW|��\< �ܚ$���
��� �V`�uǕy�0O�L��T� ~`�Pu�OC�+ ���U�(r�q6�D��u� �"�L��B�si���Pv��cB�'���nF ��7�4��X[��N�$�L���K�]�� ��c�x���%�|*"���iV���S��j�Z� i��3�"���K
�F�ە�m�兏]�'�>�!{ /w5���Q\ˑs��R�Ȅ���X��kt*q� ��*��B�������A�7� T�n��
�q�5 /��I�,�*�꼩��cMxz�����*,]j�Ȳ� ��%���|�}��;G�7a8�M��s2�]�	 /��������H��y�w]��&�������p �\\�$@p�κȒ
�̖�=!���$F�7IP鄇� ��y�Gq}7	jR�(���3���NF>)�~+ #v2S�l��T��|����#�B9��H� 5�,�ǟ��D�S��"q"�[Y8���4�� �����5�O��k�c����ߵw{-u�,��(Z c�#�'��Q����D�ԃ�f�$x�;]�jz�� ��
x�"+������5I0�������I5�G�1 O�';�q`5�-���{��K@�ev���`�ɭ� @;�Y��7%�)u/
��fq)�\�:������� c���jbİ.X���i���׹

�����)R o����4�o"�ܦM���
}z�$ )���E�EX� �44�v���0�c���\sl�H��`���  �����mó�f�0W�S���(�*�}�#���� ˫:P��j�>[�.�׆<�fcUt5'ϙ��� ?~���p��IȚ* ����)������t���(L v�A����v
p��g��>��;d�
�ɓحv��{ ��Fg���8
k�߅?���<Ƒ�W8�;gY��� ��bC ��8����"��'<��[�җ����y�% l�Tj�HH���m����~t��M9�u�=����k o�D�P\F����|���db&��_�똦� )�mK���hw`� ��I���sV��S�$@�\2 yk"&������T-���A����§È+]�| ����&@�C��N�52¦zDm��L��y�� �RW���6�
�UY�\uw[�Y?ƼEYU`5 ͠dY�8h�^�p<fSLt��e+Լ+4�E�F� ���!#МVOBU.zU�����99�������� ����>�/���b��Tʂ�46��n���9P ���*o�ya�(ʩ�r9�W��

�� �N��o޼t�v\�:�}�J+�їYs!���G  I���kǩ.��;�|��7���)��9���.i J73�ώ��Y ��jH��-3�A��!qf�z��� ߹���'�
q�m݅�?�1�W;ABK�ۚHE{��  v5���c������r�P�M4�A�Q���{�-pe  \�1QLޡ��\S�Z��(��
Y�������  a^$JB"w�6.Y�����g�x|�J�V[3<)! ��S,;fi@�S`�H�[k��c.2��x����r!C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vcruntime_string.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\wchar.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\malloc.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wconio.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\__msvc_sanitizer_annotate_container.hppC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\climitsC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_search.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\limits.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\cstdlibC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\math.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_math.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wtime.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\setjmp.hD:\a\intel-tex-rs-2\intel-tex-rs-2\vendor\ispc_texcomp\ispc_texcomp_astc.cppC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\intrin.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\intrin0.inl.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\cassertC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\yvals_core.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\xkeycheck.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\assert.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\intrin0.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\ammintrin.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wdirect.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\zmmintrin.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\algorithmC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\__msvc_heap_algorithms.hppC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\xutilityC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\yvals.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\crtdbg.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vcruntime_new_debug.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wio.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\crtdefs.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vcruntime_new.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_share.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\use_ansi.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\newC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\exceptionD:\a\intel-tex-rs-2\intel-tex-rs-2\target\debug\build\intel_tex_2-f6430b1a1df775b0\out\kernel_astc_ispc.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\stdlib.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_malloc.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vcruntime_exception.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\eh.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\type_traitsC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_terminate.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\cstdintC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wctype.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\immintrin.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\wmmintrin.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\nmmintrin.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\smmintrin.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wstdlib.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\__msvc_minmax.hppC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\tmmintrin.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\pmmintrin.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wprocess.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\emmintrin.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\xmmintrin.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vectorC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\mmintrin.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wstring.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\__msvc_bit_utils.hppC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\__msvc_iter_core.hppC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\utilityC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\cwcharC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\initializer_listC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\cstdioC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\cstddefC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\stdio.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\stddef.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\xatomic.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_wstdio.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_stdio_config.hD:\a\intel-tex-rs-2\intel-tex-rs-2\vendor\ispc_texcomp\ispc_texcomp.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\cstringC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\stdint.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\string.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vcruntime.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_memory.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\sal.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\xtr1commonC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\corecrt_memcpy_s.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\concurrencysal.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\errno.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vadefs.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\sys\stat.hC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\sys\types.hC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\xmemoryC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\limitsC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\cfloatC:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt\float.h�LK<7@7
�7�7
H8L8
�8�8
X9\9
�9�9
h:l:
�:�:
�:�:
�:�:
!:%:
I:M:
q:u:
�:�:
�:�:
-:1:
t:x:
�:�:
�:�:
�	_�	_
�	_�	_
L
`P
`
�
``
:`>`
u`y`
�`�`
�`�`
&`*`
``d`
�
a�
a
�
a�
a
PbTb
�b�b
<c@c
�c�c
hdld
�d�d
8e<e
�e�e
�f�f
�f�f
f f
tgxg
UgYg
�g�g
�g�g
�h�h
�h�h
�h�h
hh
?hCh
fhjh
�h�h
�h�h
�h�h
hh
8j<j
�j�j
(k,k
~k�k
�k�k
�kk
(k,k
OkSk
�k�k
�k�k
�k�k
kk
LkPk
tkxk
� m� m
,!m0!m
�!n�!n
�!n�!n
D"oH"o
�"o�"o
`#pd#p
0$p4$p
�$	�$	
vendor/ispc_texcomp/ispc_texcomp_astc.cppbits <= 25vendor/ispc_texcomp/ispc_texcomp_astc.cppa >= bvendor/ispc_texcomp/ispc_texcomp_astc.cppnum_weights <= 64vendor/ispc_texcomp/ispc_texcomp_astc.cpp24 <= weight_bits && weight_bits <= 96vendor/ispc_texcomp/ispc_texcomp_astc.cppmax_cem / 4 <= min_cem / 4 + 1vendor/ispc_texcomp/ispc_texcomp_astc.cppc == 0 || c == 1vendor/ispc_texcomp/ispc_texcomp_astc.cppblock->partitions < 4vendor/ispc_texcomp/ispc_texcomp_astc.cppnum_cem_pairs <= 9vendor/ispc_texcomp/ispc_texcomp_astc.cppendpoint_range >= 4vendor/ispc_texcomp/ispc_texcomp_astc.cppblock->endpoint_range == endpoint_rangevendor/ispc_texcomp/ispc_texcomp_astc.cppsrc->height % settings->block_height == 0vendor/ispc_texcomp/ispc_texcomp_astc.cppsrc->width % settings->block_width == 0vendor/ispc_texcomp/ispc_texcomp_astc.cppsettings->block_height <= 8vendor/ispc_texcomp/ispc_texcomp_astc.cppsettings->block_width <= 8D�D$�T$H�L$H�D$�L$�H�D$�L$�HH�D$�@H�D$�@H�D$�@�������D�D$�T$H�L$H�D$�L$�H�D$�L$�HH�D$�@H�D$�@H�D$�@�������D�D$�T$H�L$H�D$�L$�H�D$�L$�HH�D$�@H�D$�@@H�D$�@�������L�D$H�T$H�L$H���H��$��@�H��$�y�…�tA��H�H�
�3�H��$��@�H��$�9�…�tA��H�H�
�3�H��$�x~A��H�H�
�3�H��$�8~A��H�H�
�3�H��$��@�H��$�9�D$8��D$0H�L$X�H��$�H��$��T$8�Q�ʋ��H��$�yH�H��$�L��H��H��$����D$D�
�D$D���D$DH��$��@�H��$�y9D$D}_�D$H�
�D$H���D$H�D$89D$H}<���$��D$D�D$8D$HH�H��H��$����$����z����D$x
�D$0�D$@H�L$Y��L$@�L$xHc�L��H��H��$���H�L$Z�H��$�T$0�Q��Hc�L��H��H��$����D$<�
�D$<���D$<H��$��@�H��$�y9D$<�$�D$L�
�D$L���D$L�D$8�L$0�D���|$09D$L���D$L�D$0�D$\H��$��H��$H�L$ L��D�D$<�T$\H��$����D$P�
�D$P���D$PH��$�@9D$P���D$4�
�D$4���D$4�D$09D$4�Z�D$4�L$\ȋ�;D$8|�ԋD$<���L$4�T$\ы���D$t�D$0�D$PD$4H�H��H��$����D$`�D$`����$��D$@��$�H�H��H��$��H�D$h�D$0��H�H�L$hH9sO�Hk�H�L$hH�H���D$pHcD$p�Hk�H�T$hH�
�D$tH�� �L$`H�HcL$pH�T$hH���q�D$tH�� �L$`H��Hk�H�T$hH�
H��$��H��$H�L$ L�L$hL��$�H��H��$��HcD$@H��L��3�H�L$h�������`�������������D$T�
�D$T���D$T�D$x9D$T���D$@�D$TH�H��H��$��H��$��Hk�H��$�H�<u뫸Hk�H��$�H�H��$��H��$H�L$ L��$�L��$�H��H��$��HcD$@H��L��3�H��$����7���H��$��H��$��H��$���H�����������������̉T$�L$H���|$ }2�� �D$(��$�ȋ$��9D$ |2���H�����������������������H�L$H��x�D$$H��$��@�D$8H��$��x|
�D$,��D$,�D$,�D$0�D$0�L$8�H�D$(�|$0~
�D$4��D$4H��$��@��+D$4�D$ �D$ �+����D$<�D$ ���3�+‹L$<���D$ H��$������������tvH��$��@����������tUH��$�����D$@H��$��@���D$D�D$(��	�L$@����L$D����L$ ������L$ ����D$$H��$������������tyH��$��@����������tXH��$�����D$HH��$��@���D$L�D$(��	�L$H����L$L����L$ ��������L$ ����D$$H��$������������tyH��$��@����������tXH��$�����D$TH��$��@���D$P�D$(��	�L$P����L$T����L$ ��������L$ ����D$$H��$������������tyH��$��@����������tXH��$�����D$\H��$��@���D$X�D$(��	�L$X����L$\����L$ ��������L$ ����D$$H��$������������tvH��$��@����������tUH��$���D$`H��$��@���D$d�D$(��	�L$`����L$d����L$ ��������L$ ����D$$�|$(��H��$������������teH��$��@����������tDH��$�����D$lH��$��@���D$h�D$h��	���L$l����L$ ����D$$�D$$H��x���������������������̉L$HcD$Hk�H�
H�H���Hk��HcL$Hk�H�H�H�ʺHk�����DAHcL$Hk�H�H�H�ʺHk����������������̉T$�L$H��HcD$(Hk�H�
H�H���Hk��T$ ��‰$HcD$(Hk�H�
H�H���Hk��T$ ��������$ȋ��$HcD$(Hk�H�
H�H���Hk��T$ ���k��������$ȋ��$�$H����������������D�L$ D�D$H�T$H�L$H��8�|$P~A��H�H�
�3�H�D$H�������H�H�L$@��D$ �D$P��L$$�ȋD$$���ȉD$(H�D$H����ƒ�+��ȋD$X���L$ ȋ��D$ H�D$H�������H�H�L$@�T$ �H�D$H�D$PH�L$H�H��8�����������������D�D$�T$�L$H��(�D$@9D$8}A��H�H�
�3��D$@�ȋD$0��L$@�T$8+ы���������#�H��(�������������̉T$�L$H��(D�D$8�T$8�L$0�H��(��������������D�L$ L�D$H�T$H�L$H��H�H3�H�D$p�D$(�
�D$(���D$(�|$(}`HcD$(��$�H��$�����HcL$(�D�@HcD$(HcL$(H�L$8��$���H�T$8�T�@���H��$���+�HcL$(�D�X돸Hk��|@u&�Hk��|@u�Hk��D@���D$0�d�Hk��|@u%�Hk�kD@�Hk��L@�D��D$0�/�Hk�kD@�Hk��L@���Hk�D@�D$0�Hk��|@uJ�Hk��|@u:A���L$0�k� �D$4E3���L$0��L$4�D�D$$�oE3���L$0��D$$�Hk��|@u�Hk�iD@��L$$�D`�D$$�+�Hk�iD@��Hk�kL@ L$$ȋ��D$$�D$,�Hk��DX�L$,ȋ��D$,E3���L$$���$����L$,ȋ��D$,�Hk���$����DX���L$,ȋ��D$,�D$ A���L$$��L$ ȋ��D$ �Hk��DX���L$ ȋ��D$ A���L$$���$������L$ ȋ��D$ �Hk���$����DX���L$ ȋ��D$ A���L$$���$��L	���L$ ȋ��D$ �Hk���$��L	�DX���L$ ȋ��D$ A���L$$�k�$������L$ ȋ��D$ ��$��DD�L$,D��H��$�H��$��k�$���D�L$ D��H��$�H��$���H�L$pH3��H�Ĉ������������������D�L$ L�D$H�T$H�L$H��xH�H3�H�D$h�D$$�
�D$$���D$$�|$$}`HcD$$��$�H��$�����HcL$$�D�HHcD$$HcL$$H�L$@��$���H�T$@�T�H���H��$���+�HcL$$�D�X돸Hk��|HuV�Hk��|HuF�Hk�E3���LH��D$0�Hk���LH��L$0�D��D$,���Hk��|Hu�Hk��DH���D$(�!�Hk��DH�Hk��LH���D$(�Hk��|HuW�D$(��A�����k� �D$4A���L$(��L$4���D$83ҋL$(��L$8�D�D$,�/�Hk�kDH �D$<E3���L$(��L$<ȋ��D$,�D$ �Hk��DX�L$ ȋ��D$ E3���L$,���$����L$ ȋ��D$ �Hk���$����DX���L$ ȋ��D$ A���L$,���$��L	���L$ ȋ��D$ �Hk���$��L	�DX���L$ ȋ��D$ A���L$,�k�$������L$ ȋ��D$ k�$���D�L$ D��H��$�H��$���H�L$hH3��H��x�����������������D�L$ D�D$H�T$H�L$WH��H�H3�H��$�Hc�$�Hk�H�
H�H���Hk���D$@��$���$���D$ ��$��D$$H�D$hH��3���Hc�$�Hk�H�
H�H���Hk��<���D$,�
�D$,���D$,��$�������9D$,��H��$�H��3����D$0�
�D$0���D$0�D$DkD$,��$�+ȋ��D$HH�T$DH�L$H��9D$0}%kD$,D$0H�H��$��HcL$0�����D�L$@L��$�H��$�H�L$h���5����RHc�$�Hk�H�
H�H���Hk��<���D$4�
�D$4���D$4��$�������9D$4��H��$�H��3����D$8�
�D$8���D$8�D$LkD$4��$�+ȋ��D$PH�T$LH�L$P��9D$8}%kD$4D$8H�H��$��HcL$8�����D�L$@L��$�H��$�H�L$h���5����O�D$<�
�D$<���D$<��$�9D$<}.HcD$<H��$��D��D�D$@H��$�H�L$h��뻋D$ �L$$ȋ���`}�Hk��Dh�D$ �L$$ȋ���@}�Hk��Dh�D$ �L$$ȋ��� }�Hk��Dh�D$ �L$$ȋ�������H�H�D$`�L$ �T$$ыʋ����ƒ�+¹�L$T�ȋD$T����H�L$`�L�h#ȋ��D$X�L$ �T$$ыʋ�������H��L$X�L�h�D$(�
�D$(���D$(�|$(}-HcD$(HcL$(H��$��L�h���HcL$(H��$�����H��$�H3��H�İ_������������̉L$H���D$ �$�$���$����$�$%�����$��������$�$%���$����������$�$%3333���$����������$�$%UUUU���$�᪪������$�$H�������������H�T$H�L$H���H�H3�H��$�A�3�H��$���D$<H��$��D��A�H�T$<H��$��H��$��@��t
�D$l��D$lH��$�H��$���A�D$l�D$hH��$��P�L$h��D$L�D$8�|$h@~A��H�H�
�3��|$L|�|$L`~A��H�H�
�3�H��$��@T��D��A�H�T$<H��$���H��$��xT��H��$�D�HXA�
H�T$<H��$���D$H�D$X�D$D�
�D$D���D$DH��$��@T9D$D}LHcD$DH��$�H�D�dH��H�L$H���D$HHcD$DH��$�H�D�dH��H�L$X���D$X뙋D$X�������D$p�D$H���������L$p;�~A��H�H�
�3��Hk�H��$��Dd���D$0�D$H9D$X�`�D$H���������D$t�D$xH�T$tH�L$x���D$0�D$4�
�D$4���D$4H��$��@T9D$4��HcD$4H��$��D�d�������L$0����+��D$dHcD$4H��$��D�d���ƒ�+‰D$|�|$dt"�|$dtA��H�H�
�3��D$4���ȋD$d���L$0ȋ��D$0H��$��@T�L$4�DH�ȋD$|���L$0ȋ��D$0�&���H��$�k@T���D$8��+D$L+D$8��$��D$0��D��D�D$8H��$�H��$����D$0��?D��A�H�T$<H��$����/�Hk�H��$�D�LdA�H�T$<H��$���H��$��@��tpH��$��xT|A��H�H�
�3��D$8���D$8��+D$L+D$8��$�H��$�D�HPA�H��$�H��$����D$8�L$<ȋ���$���+�$�+D$L��$��D$T�D$\�
�D$\���D$\H��$��@T9D$\}(HcD$\H��$��D�d�������L$T�D�D$T뽃|$T	~A��H�H�
�3��D$`�����D$P�
�D$P�ȉD$P�|$P~4�D$T���T$P�����$���$�9�$�
�D$P�D$`�뻃|$`}A��H�H�
�3�H��$��L$`9HttA��H�H�
�3��D$T��H��$�H��x�T$`�T$ D��D�D$<H��H��$��DŽ$�DŽ$�DŽ$�DŽ$�H��$�H��H��$��I�L$ D�L$hE3�H��H��$����D$@�
�D$@���D$@�|$@}NHcD$@H��$��+L$@Hcɋ����H��$�H��$���ȋ�HcL$@H��$����H��$�H3��H����������������������L�L$ D�D$�T$H�L$H��8H�D$`H�D$ L�L$XD�D$P�T$HH�L$@��H��8������������������H�T$H�L$H��(H�T$8H�L$0��H��(�������������̉T$H�L$H��8A�
��L$H���H�L$@�A���L$H���H�L$@�AA���L$H���t�D$ ��D$ H�D$@�L$ �HH�D$@�@A���L$H��D�D$$�D$$��������H�L$@�A�|$$~
�D$(��D$(H�D$@�L$(�HH��8�������������L�L$ L�D$H�T$H�L$H��XH�H3�H�D$H�Hk�H�L$x�����H�H#‹�H�L$0�H��$�H�D$(H�D$0H�D$ L�L$xL�D$pH�T$hH�L$`��H�L$HH3��H��X�,#3$8?c%j&o?�'�(�?�)�*�?�=�q4u�C�y����	�1����mn���4w^pv@��w=pX@k�x��v�_�_F_g_�_	_x	_�	_
_2
_�
_�
_P	r	�	�		F	��
�?�
�
�
?�
d.�d�d�dFd�d�d)d|d�c�c��+��de�d�d�e�d'dud�d	c�O�m	�b�	ei�f�	ki�gcG��4@I`dc�b���?	?8coc�i�l%,1?�i!&?�c�cc<CH?�c$+0?fb���?���?	 hh h� j� �5!<i!k�!d�!d�!d"d�"��"o�";�"�L�D$�T$H�L$H��(H�L$@�H�D$0H����H�D$0H��(��%��}G4/�std::_Compressed_pair<std::allocator<unsigned int>,std::_Vector_val<std::_Simple_types<unsigned int> >,1>::_Compressed_pair<std::allocator<unsigned int>,std::_Vector_val<std::_Simple_types<unsigned int> >,1><std::allocator<unsigned int> const &>( B0�Othis8�O__formal@�O_Val1O� 4�
�,�0�
����
L�D$�T$H�L$H��(H�L$@�H�D$0H����H�D$0H��(��%��Z�G4/�std::_Compressed_pair<std::allocator<float>,std::_Vector_val<std::_Simple_types<float> >,1>::_Compressed_pair<std::allocator<float>,std::_Vector_val<std::_Simple_types<float> >,1><std::allocator<float> const &>( B0�Othis8�O__formal@�O_Val1O� 4�
�,�0�
p�t�
L�D$�T$H�L$H��(H�L$@�H�D$0H����H�D$0H��(��%���/G4/�std::_Compressed_pair<std::allocator<unsigned __int64>,std::_Vector_val<std::_Simple_types<unsigned __int64> >,1>::_Compressed_pair<std::allocator<unsigned __int64>,std::_Vector_val<std::_Simple_types<unsigned __int64> >,1><std::allocator<unsigned __int64> const &>( B0�Othis8�O__formal@�O_Val1O� 4�
�,�0�
����
H�L$H��(H�|$0u3��!H�|$0rH�L$0��
H�L$0�H��(�&�2Z��VG;	6�std::_Allocate<16,std::_Default_allocate_traits>( B0�O_Bytes^%^1O�P;�
D��	������ ��,�6�,�0�
����
����
����
H�T$H�L$H��(H�D$8H�H�L$0�H��(����cG% gstd::_Allocate_at_least_helper<std::allocator<unsigned int> >( B0>O_Al8?O_Count^uO�0%�
$���� 	�,�0�
����
����
H�T$H�L$H��(H�D$8H�H�L$0�H��(�s��\G% vstd::_Allocate_at_least_helper<std::allocator<float> >( B0DO_Al8EO_Count^@O�0%�
$���� 	�,�0�
����
����
H�T$H�L$H��(H�D$8H�H�L$0�H��(����gG% rstd::_Allocate_at_least_helper<std::allocator<unsigned __int64> >( B0BO_Al8CO_Count^#O�0%�
$���� 	�,�0�
����
����
H�L$H��XH�D$`H��'H�D$8H�D$`H9D$8w��H�L$8�H�D$0H�|$0uH�D$ E3�E3�3�3���H�D$0H��'H���H�D$@�Hk��H�L$@H�T$0H�H�D$@H��X�$Y/ZT>��kG�	��std::_Allocate_manually_vector_aligned<std::_Default_allocate_traits>XB`�O_Bytes8�O_Block_size0�O_Ptr_container@�O_PtrO�h��

\��	����#��)��8��Y��k��������,�0�
��
H�T$H�L$WH��PH�L$`�H�D$@H�D$!H��3���H�D$"H�D$8H�D$`H�D$(L�D$(H�T$8H�L$ ��H�|$htMH�T$hH�L$`�H�D$`H�D$0L�D$@H�T$hH�D$(H��H�L$(H�AH�D$0H�L$0��H�L$ ��H��P_��S]k������^�>mG���std::vector<unsigned int,std::allocator<unsigned int> >::_Construct_n<>P B`4OthishVO_Count �O_Proxy8�O_Alproxy(�O_My_data@�O_AlM`0�O_GuardO���	
t6�;�<�9=�C>�X?�`@�oA�yC��M��N��P��Q�,�0�
&�*�
T�X�
H�T$H�L$WH��PH�L$`�H�D$@H�D$!H��3���H�D$"H�D$8H�D$`H�D$(L�D$(H�T$8H�L$ ��H�|$htMH�T$hH�L$`�H�D$`H�D$0L�D$@H�T$hH�D$(H��H�L$(H�AH�D$0H�L$0��H�L$ ��H��P_�~S]k{�����^�0_G���std::vector<float,std::allocator<float> >::_Construct_n<>P B`mOthish�O_Count �O_Proxy8�O_Alproxy(�O_My_data@�O_AlM`0�O_GuardO���	
t6�;�<�9=�C>�X?�`@�oA�yC��M��N��P��Q�,�0�
��
D�H�
H�T$H�L$WH��PH�L$`�H�D$@H�D$!H��3���H�D$"H�D$8H�D$`H�D$(L�D$(H�T$8H�L$ ��H�|$htMH�T$hH�L$`�H�D$`H�D$0L�D$@H�T$hH�D$(H��H�L$(H�AH�D$0H�L$0��H�L$ ��H��P_��S]k������^�FuG���std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Construct_n<>P B`QOthishsO_Count �O_Proxy8�O_Alproxy(�O_My_data@�O_AlM`0�O_GuardO���	
t6�;�<�9=�C>�X?�`@�oA�yC��M��N��P��Q�,�0�
.�2�
\�`�
H�T$H�L$H��(H�|$8rH�T$8H�L$0��H�T$8H�L$0��H��(�$[46��:G>9Estd::_Deallocate<16>( B0O_Ptr8#O_BytesO�@>�
4���)!�9#�,�0�
����
L�D$H�T$H�L$���XGstd::_Destroy_range<std::allocator<unsigned int> > BuO_First�O_Last�O_AlO�(�
J�R�,�0�
����
L�D$H�T$H�L$���QGstd::_Destroy_range<std::allocator<float> > B@O_First�O_Last�O_AlO�(�
J�R�,�0�
����
L�D$H�T$H�L$���\Gstd::_Destroy_range<std::allocator<unsigned __int64> > B#O_First�O_Last�O_AlO�(�
J�R�,�0�
����
H�L$H��(H�D$0H�H�H��H�D$0H�H�H�D$0H�@H��H�L$0H�AH��(��$���tGC	>%std::_Uninitialized_backout_al<std::allocator<unsigned int> >::_Emplace_back<>( B0�OthisO�8C�
,3�	4�(5�>6�,�0�
����
H�L$H��(H�D$0H�H�H��H�D$0H�H�H�D$0H�@H��H�L$0H�AH��(��$���mGC	>Astd::_Uninitialized_backout_al<std::allocator<float> >::_Emplace_back<>( B0%OthisO�8C�
,3�	4�(5�>6�,�0�
����
H�L$H��(H�D$0H�H�H��H�D$0H�H�H�D$0H�@H��H�L$0H�AH��(��$���xGC	>3std::_Uninitialized_backout_al<std::allocator<unsigned __int64> >::_Emplace_back<>( B0OthisO�8C�
,3�	4�(5�>6�,�0�
����
H�L$H��8�D$ H��������?H�D$(H��������?H9D$@v��H�D$@H��H��8�/Y��<GB	=�std::_Get_size_of_n<4>8 B@�O_Count" �O_Overflow_is_possible&(�O_Max_possibleO�PB�
Dp�	q�t�u�.v�4z�={�,�0�
����
����
H�L$H��8�D$ H��������H�D$(H��������H9D$@v��H�D$@H��H��8�/Y��<GB	=�std::_Get_size_of_n<8>8 B@�O_Count" �O_Overflow_is_possible&(�O_Max_possibleO�PB�
Dp�	q�t�u�.v�4z�={�,�0�
����
����
H��H�$����H��������H�����>Gjstd::_Max_limit<__int64> BFO_Unsigned_maxO�8�	,_�b�c�g�,�0�
z�~�
����
H�L$H�D$H���}FG
#std::_To_address<unsigned int *> B6O_ValO�08$��
�,�0�
����
H�L$H�D$H���v?G
?std::_To_address<float *> B<O_ValO�08$��
�,�0�
����
H�L$H�D$H����JG
1std::_To_address<unsigned __int64 *> B9O_ValO�08$��
�,�0�
����
H�L$H�D$��xAG
std::_Unfancy<unsigned int> BuO_PtrO�0�
$D�E�
F�,�0�
����
H�L$H�D$��q:G
7std::_Unfancy<float> B@O_PtrO�0�
$D�E�
F�,�0�
����
H�L$H�D$��|EG
)std::_Unfancy<unsigned __int64> B#O_PtrO�0�
$D�E�
F�,�0�
����
H�L$H�D$���LG
�std::_Unfancy_maybe_null<unsigned int> BuO_PtrO�0�
$O�P�
Q�,�0�
����
H�L$H�D$��|EG
�std::_Unfancy_maybe_null<float> B@O_PtrO�0�
$O�P�
Q�,�0�
����
L�D$H�T$H�L$H��XH�L$`�H�D$ H�D$ H�L$hH��H��H�L$ �H�D$`H�L$hH���WL�D$pH�T$`H�L$0���
H�D$hH��H�D$hH�|$hv
H�L$0����H�L$0�H�D$(H�L$0�H�D$(H��X��9�]�������jG���std::_Uninitialized_value_construct_n<std::allocator<unsigned int> >X B`uO_Firsth#O_Countp�O_Al0
O_Backout: uO_PFirstO�h��

\�&�"'�=(�M,�b-�y.��/��1��2�,�0�
����
(�,�
L�D$H�T$H�L$H��XH�L$`�H�D$ H�D$ H�L$hH��H��H�L$ �H�D$`H�L$hH���WL�D$pH�T$`H�L$0���
H�D$hH��H�D$hH�|$hv
H�L$0����H�L$0�H�D$(H�L$0�H�D$(H��X��9�]�������cG���std::_Uninitialized_value_construct_n<std::allocator<float> >X B`@O_Firsth#O_Countp�O_Al03O_Backout: @O_PFirstO�h��

\�&�"'�=(�M,�b-�y.��/��1��2�,�0�
����
 �$�
L�D$H�T$H�L$H��XH�L$`�H�D$ H�D$ H�L$hH��H��H�L$ �H�D$`H�L$hH���WL�D$pH�T$`H�L$0���
H�D$hH��H�D$hH�|$hv
H�L$0����H�L$0�H�D$(H�L$0�H�D$(H��X��9�]�������nG���std::_Uninitialized_value_construct_n<std::allocator<unsigned __int64> >X B`#O_Firsth#O_Countp�O_Al0 O_Backout: #O_PFirstO�h��

\�&�"'�=(�M,�b-�y.��/��1��2�,�0�
���
,�0�
H�T$H�L$H��8H�L$@�H�D$ H�L$H�H�D$(H�D$ H�L$(H+�H��L��3�H�L$ �H�D$HH��8��#�G@��FGUPstd::_Zero_range<unsigned int *>8B@�O_FirstH�O_Last(�O_Last_ch �O_First_chO�HU�
<���,�K�P�,�0�
����
H�T$H�L$H��8H�L$@�H�D$ H�L$H�H�D$(H�D$ H�L$(H+�H��L��3�H�L$ �H�D$HH��8��#�G@��?GUP;std::_Zero_range<float *>8B@"O_FirstH"O_Last(�O_Last_ch �O_First_chO�HU�
<���,�K�P�,�0�
����
H�T$H�L$H��8H�L$@�H�D$ H�L$H�H�D$(H�D$ H�L$(H+�H��L��3�H�L$ �H�D$HH��8��#�G@��JGUP-std::_Zero_range<unsigned __int64 *>8B@O_FirstHO_Last(�O_Last_ch �O_First_chO�HU�
<���,�K�P�,�0�
����
H�T$H�L$WH��0H�D$ H�T$HH�L$ �H�D$(H�|$(3�H�L$ �H��0_�#A��|G@:]std::_Default_allocator_traits<std::allocator<unsigned int> >::construct<unsigned int>0 B@O__formalH7O_Ptr^"uO�0@�
$����:��,�0�
����
����
H�T$H�L$WH��0H�D$ H�T$HH�L$ �H�D$(H�|$(3�H�L$ �H��0_�#A��nG@:cstd::_Default_allocator_traits<std::allocator<float> >::construct<float>0 B@:O__formalH=O_Ptr^"@O�0@�
$����:��,�0�
����
����
H�T$H�L$WH��0H�D$ H�T$HH�L$ �H�D$(H�|$(3�H�L$ �H��0_�#A���G@:`std::_Default_allocator_traits<std::allocator<unsigned __int64> >::construct<unsigned __int64>0 B@O__formalH:O_Ptr^"#O�0@�
$����:��,�0�
����
����
H�L$H�D$���XG
�std::forward<std::allocator<unsigned int> const &> B�O_ArgO�0�$����
��,�0�
����
H�L$H�D$���QG
�std::forward<std::allocator<float> const &> B�O_ArgO�0�$����
��,�0�
����
H�L$H�D$���\G
�std::forward<std::allocator<unsigned __int64> const &> B�O_ArgO�0�$����
��,�0�
����
H�T$H�L$H��H�D$ H�L$(�	9}H�D$(H�$�	H�D$ H�$H�$H�D$H�D$H�����3GE@�std::max<int> B �O_Left(�O_RightO�0E�	$K�M�@N�,l0l
�l�l
H�T$H�L$H��H�D$(H�L$ �	9}H�D$(H�$�	H�D$ H�$H�$H�D$H�D$H�����3GE@�std::min<int> B �O_Left(�O_RightO�0E�	$c�e�@f�,i0i
�i�i
H�T$H�L$H��H�D$(H�L$ H�	H9sH�D$(H�$�	H�D$ H�$H�$H�D$H�D$H�����@GGBnstd::min<unsigned __int64> B AO_Left(AO_RightO�0G�	$c�e�Bf�,�0�
����
L�D$H�T$H�L$H�D$H�L$H�H�D$H�L$H�HH�D$H�L$H�HH�D$����G>=Nstd::_Uninitialized_backout_al<std::allocator<unsigned int> >::_Uninitialized_backout_al<std::allocator<unsigned int> > B�OthisuO_Dest�O_Al_O� >�
)�,�0�
��
L�D$H�T$H�L$H�D$H�L$H�H�D$H�L$H�HH�D$H�L$H�HH�D$����G>=Hstd::_Uninitialized_backout_al<std::allocator<float> >::_Uninitialized_backout_al<std::allocator<float> > B%Othis@O_Dest#O_Al_O� >�
)�,�0�
��
L�D$H�T$H�L$H�D$H�L$H�H�D$H�L$H�HH�D$H�L$H�HH�D$���G>=Kstd::_Uninitialized_backout_al<std::allocator<unsigned __int64> >::_Uninitialized_backout_al<std::allocator<unsigned __int64> > BOthis#O_DestO_Al_O� >�
)�,�0�
��
H�L$H�D$H�H�D$H�@H�D$H�@H�D$����G10	std::_Vector_val<std::_Simple_types<unsigned int> >::_Vector_val<std::_Simple_types<unsigned int> > B"OthisO� 1	��,�0�
����
H�L$H�D$H�H�D$H�@H�D$H�@H�D$���{G10std::_Vector_val<std::_Simple_types<float> >::_Vector_val<std::_Simple_types<float> > BZOthisO� 1	��,�0�
����
H�L$H�D$H�H�D$H�@H�D$H�@H�D$����G10std::_Vector_val<std::_Simple_types<unsigned __int64> >::_Vector_val<std::_Simple_types<unsigned __int64> > B?OthisO� 1	��,�0�
����
H�L$H�D$���[G
�std::allocator<unsigned int>::allocator<unsigned int> B�OthisO� �
��,�0�
����
H�L$H�D$���MG
�std::allocator<float>::allocator<float> B OthisO� �
��,q0q
�q�q
H�L$H�D$���cG
�std::allocator<unsigned __int64>::allocator<unsigned __int64> BOthisO� �
��,�0�
����
L�D$H�T$H�L$H��8H�D$@L�D$P�T$ H����H�T$HH�L$@��H�D$@H��8�&�6����GE@�std::vector<unsigned int,std::allocator<unsigned int> >::vector<unsigned int,std::allocator<unsigned int> >8 B@4OthisHVO_CountPSO_AlO�0E	$��+��;��,�0�
��
L�D$H�T$H�L$H��8H�D$@L�D$P�T$ H����H�T$HH�L$@��H�D$@H��8�&�6���uGE@�std::vector<float,std::allocator<float> >::vector<float,std::allocator<float> >8 B@mOthisH�O_CountP�O_AlO�0E	$��+��;��,u0u
�u�u
L�D$H�T$H�L$H��8H�D$@L�D$P�T$ H����H�T$HH�L$@��H�D$@H��8�&�6����GE@�std::vector<unsigned __int64,std::allocator<unsigned __int64> >::vector<unsigned __int64,std::allocator<unsigned __int64> >8 B@QOthisHsO_CountPpO_AlO�0E	$��+��;��,�0�
��
L�D$H�T$H�L$H�D$���UG}std::_Fake_proxy_ptr_impl::_Fake_proxy_ptr_impl B�Othis�O__formal�O__formalO� �
��,]0]
�]�]
H�T$H�L$H��(A�H�T$8H�L$0�H�D$0H�
H�H�D$0H��(�F+���?G<7gstd::bad_alloc::bad_alloc( B0ROthis8	O_MessageO�8<h,����#��2��,M0M
�M�M
H�T$H�L$H��(H�T$8H�L$0�H�D$0H�
H�H�D$0H��(�G%���?G61qstd::bad_alloc::bad_alloc( B0ROthis8WO__thatO,O0O
H�T$H�L$H��(H�T$8H�L$0�H�D$0H�
H�H�D$0H��(�O%���UG61pstd::bad_array_new_length::bad_array_new_length( B0iOthis8nO__thatO,U0U
H�L$H��(H�H�L$0�H�D$0H�
H�H�D$0H��(��M"���UG3	.jstd::bad_array_new_length::bad_array_new_length( B0iOthisO�83h,��	����)��,S0S
�S�S
H�T$H�L$WH�� H�D$0H�
H�H�D$0H��H��3���H�D$0H��H�L$8H��H����H�D$0H�� _��ID��?GYScstd::exception::exception  B0Othis8O_OtherO�8Yh,I�H�3J�NK�,G0G
�G�G
D�D$H�T$H�L$WH�D$H�
H�H�D$H��H��3���H�D$H�L$H�HH�D$_����?GIGbstd::exception::exception BOthis	O_Message tO__formalO�8Ih,C�B�4D�BE�,F0F
�F�F
H�L$H��(H�D$0H�8tH�D$0H���H��(�����G'	"
std::_Tidy_guard<std::vector<unsigned int,std::allocator<unsigned int> > >::~_Tidy_guard<std::vector<unsigned int,std::allocator<unsigned int> > >( B0�OthisO�8'�
,V�	W�X�"Z�,�0�
��
H�L$H��(H�D$0H�8tH�D$0H���H��(�|���G'	"std::_Tidy_guard<std::vector<float,std::allocator<float> > >::~_Tidy_guard<std::vector<float,std::allocator<float> > >( B0�OthisO�8'�
,V�	W�X�"Z�,�0�
����
H�L$H��(H�D$0H�8tH�D$0H���H��(�����G'	"std::_Tidy_guard<std::vector<unsigned __int64,std::allocator<unsigned __int64> > >::~_Tidy_guard<std::vector<unsigned __int64,std::allocator<unsigned __int64> > >( B0�OthisO�8'�
,V�	W�X�"Z�,�0�
��
H�L$H��(H�D$0L�@H�D$0H�PH�D$0H���H��(�$����G.	)Mstd::_Uninitialized_backout_al<std::allocator<unsigned int> >::~_Uninitialized_backout_al<std::allocator<unsigned int> >( B0�OthisO�0.�
$.�	/�)0�,�0�
����
H�L$H��(H�D$0L�@H�D$0H�PH�D$0H���H��(�$����G.	)Gstd::_Uninitialized_backout_al<std::allocator<float> >::~_Uninitialized_backout_al<std::allocator<float> >( B0%OthisO�0.�
$.�	/�)0�,�0�
����
H�L$H��(H�D$0L�@H�D$0H�PH�D$0H���H��(�$����G.	)Jstd::_Uninitialized_backout_al<std::allocator<unsigned __int64> >::~_Uninitialized_backout_al<std::allocator<unsigned __int64> >( B0OthisO�0.�
$.�	/�)0�,�0�
����
H�L$H��(H�L$0��H��(�����G	�std::vector<unsigned int,std::allocator<unsigned int> >::~vector<unsigned int,std::allocator<unsigned int> >( B04OthisO�0	$=�	>�C�,�0�
����
H�L$H��(H�L$0��H��(�|��vG	�std::vector<float,std::allocator<float> >::~vector<float,std::allocator<float> >( B0mOthisO�0	$=�	>�C�,v0v
�v�v
H�L$H��(H�L$0��H��(�����G	�std::vector<unsigned __int64,std::allocator<unsigned __int64> >::~vector<unsigned __int64,std::allocator<unsigned __int64> >( B0QOthisO�0	$=�	>�C�,�0�
����
H�L$H��(H�L$0��H��(�H�w@G	istd::bad_alloc::~bad_alloc( B0ROthisO,N0N
H�L$H��(H�L$0��H��(�N��VG	lstd::bad_array_new_length::~bad_array_new_length( B0iOthisO,T0T
H�L$H��(H�D$0H�
H�H�D$0H��H����H��(��%E�w@G/	*dstd::exception::~exception( B0OthisO�0/h$Z�[�*\�,H0H
�H�H
H�T$H�L$H�D$��2G
Ioperator new B#O_SizeO_WhereO�0($��
����,A0A
�A�A
H�T$H�L$H��H�D$ H�$H�$H�H�L$(H��H�����iG,'�std::vector<unsigned int,std::allocator<unsigned int> >::operator[] B 4Othis(VO_Pos�O_My_dataO�8,	,������'��,�0�
����
H�T$H�L$H��H�D$ H�$H�$H�H�L$(H��H�����[G,'�std::vector<float,std::allocator<float> >::operator[] B mOthis(�O_Pos�O_My_dataO�8,	,������'��,y0y
�y�y
H�T$H�L$H��H�D$ H�$H�$H�H�L$(H��H�����qG,'�std::vector<unsigned __int64,std::allocator<unsigned __int64> >::operator[] B QOthis(sO_Pos�O_My_dataO�8,	,������'��,�0�
����
�T$H�L$H��(H�L$0��D$8����t�H�L$0��H�D$0H��(�N-6��RG<
7hstd::bad_alloc::`scalar deleting destructor'( B0ROthisO,P0P
�T$H�L$H��(H�L$0��D$8����t�H�L$0��H�D$0H��(�T-6��]G<
7kstd::bad_array_new_length::`scalar deleting destructor'( B0iOthisO,V0V
�T$H�L$H��(H�L$0��D$8����t�H�L$0��H�D$0H��(�H-6��RG<
7fstd::exception::`scalar deleting destructor'( B0OthisO,J0J
H�T$H�L$H��XH�D$hH�H��'H�L$hH�H�D$`H�H�D$@�Hk��H�L$@H�H�D$8H�D$HH�D$`H�L$8H�H+�H�D$0H�|$0rH�|$0'vH�D$ E3�E3�3�3���H�D$`H�L$8H�H��XÈ>�JG��{std::_Adjust_manually_vector_alignedX B`�O_Ptrh�O_Bytes8�O_Ptr_container0�O_Back_shift@�O_Ptr_userH�O_Min_back_shiftO�`��
	T����"��/��F��O��d��������,[0[
[[
H�L$H��(H�L$0�H��(�5��NG	wstd::_Default_allocate_traits::_Allocate( B0�O_BytesO�0�
$��	����,Z0Z
�Z�Z
H�T$H�L$H��(H�L$0�H9D$8v��H�T$8H�L$0��H��(�� �0���kG:5std::vector<unsigned int,std::allocator<unsigned int> >::_Buy_nonzero( B04Othis8VO_NewcapacityO�@:	4����%�5�,�0�
����
H�T$H�L$H��(H�L$0�H9D$8v��H�T$8H�L$0��H��(�x }0z��]G:5std::vector<float,std::allocator<float> >::_Buy_nonzero( B0mOthis8�O_NewcapacityO�@:	4����%�5�,{0{
�{�{
H�T$H�L$H��(H�L$0�H9D$8v��H�T$8H�L$0��H��(�� �0���sG:5std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Buy_nonzero( B0QOthis8sO_NewcapacityO�@:	4����%�5�,�0�
����
H�T$H�L$H��XH�D$`H�D$ H�D$ H�D$0H�D$ H��H�D$8H�D$ H��H�D$@H�L$`�H�T$hH���H�D$(H�D$0H�L$(H�H�D$8H�L$(H�H�D$(H�L$hH��H�L$@H�H��X�D�Q��(gG��Qstd::vector<unsigned int,std::allocator<unsigned int> >::_Buy_rawX B`4Othish#O_Newcapacity8�O_Mylast0�O_Myfirst �O_My_data@�O_Myend(�O_NewvecO�h�	
\������"��0��>��Z��g��t�����,�0�
<�@�
H�T$H�L$H��XH�D$`H�D$ H�D$ H�D$0H�D$ H��H�D$8H�D$ H��H�D$@H�L$`�H�T$hH���H�D$(H�D$0H�L$(H�H�D$8H�L$(H�H�D$(H�L$hH��H�L$@H�H��X�D~Q��YG��Ystd::vector<float,std::allocator<float> >::_Buy_rawX B`mOthish#O_Newcapacity8�O_Mylast0�O_Myfirst �O_My_data@�O_Myend(�O_NewvecO�h�	
\������"��0��>��Z��g��t�����,z0z
0z4z
H�T$H�L$H��XH�D$`H�D$ H�D$ H�D$0H�D$ H��H�D$8H�D$ H��H�D$@H�L$`�H�T$hH���H�D$(H�D$0H�L$(H�H�D$8H�L$(H�H�D$(H�L$hH��H�L$@H�H��X�D�Q��0oG��Ustd::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Buy_rawX B`QOthish#O_Newcapacity8�O_Mylast0�O_Myfirst �O_My_data@�O_Myend(�O_NewvecO�h�	
\������"��0��>��Z��g��t�����,�0�
D�H�
H�L$H�D$����G
Ostd::_Compressed_pair<std::allocator<unsigned int>,std::_Vector_val<std::_Simple_types<unsigned int> >,1>::_Get_first B�OthisO�0�
$��
�,�0�
����
H�L$H�D$����G
}std::_Compressed_pair<std::allocator<unsigned int>,std::_Vector_val<std::_Simple_types<unsigned int> >,1>::_Get_first B�OthisO�0�
$��
�,�0�
����
H�L$H�D$����G
Wstd::_Compressed_pair<std::allocator<float>,std::_Vector_val<std::_Simple_types<float> >,1>::_Get_first B�OthisO�0�
$��
�,�0�
����
H�L$H�D$����G
�std::_Compressed_pair<std::allocator<float>,std::_Vector_val<std::_Simple_types<float> >,1>::_Get_first B�OthisO�0�
$��
�,�0�
����
H�L$H�D$����G
Sstd::_Compressed_pair<std::allocator<unsigned __int64>,std::_Vector_val<std::_Simple_types<unsigned __int64> >,1>::_Get_first B�OthisO�0�
$��
�,�0�
����
H�L$H�D$����G
std::_Compressed_pair<std::allocator<unsigned __int64>,std::_Vector_val<std::_Simple_types<unsigned __int64> >,1>::_Get_first B�OthisO�0�
$��
�,�0�
����
H�L$H��(H�D$0H���H��(����eG	std::vector<unsigned int,std::allocator<unsigned int> >::_Getal( B04OthisO�0	$��	����,�0�
����
H�L$H��(H�D$0H���H��(����eG	xstd::vector<unsigned int,std::allocator<unsigned int> >::_Getal( B0�OthisO�0	$��	����,�0�
����
H�L$H��(H�D$0H���H��(����WG	std::vector<float,std::allocator<float> >::_Getal( B0mOthisO�0	$��	����,~0~
�~�~
H�L$H��(H�D$0H���H��(����WG	|std::vector<float,std::allocator<float> >::_Getal( B0�OthisO�0	$��	����,0
��
H�L$H��(H�D$0H���H��(����mG	std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Getal( B0QOthisO�0	$��	����,�0�
����
H�L$H��(H�D$0H���H��(����mG	zstd::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Getal( B0�OthisO�0	$��	����,�0�
����
H�L$��HG|std::_Container_base0::_Orphan_all B�OthisO� �
��,\0\
�\�\
H�L$H�D$H�L$H�IH�H�D$H�@���mG Lstd::_Uninitialized_backout_al<std::allocator<unsigned int> >::_Release B�OthisO�8 �
,8�9�:�;�,�0�
����
H�L$H�D$H�L$H�IH�H�D$H�@���fG Fstd::_Uninitialized_backout_al<std::allocator<float> >::_Release B%OthisO�8 �
,8�9�:�;�,�0�
����
H�L$H�D$H�L$H�IH�H�D$H�@���qG Istd::_Uninitialized_backout_al<std::allocator<unsigned __int64> >::_Release BOthisO�8 �
,8�9�:�;�,�0�
����
H�L$���IG~std::_Fake_proxy_ptr_impl::_Release B�OthisO� �
��,^0^
�^�^
H��HH�L$ �H�H�L$ ��H��H�
S���jFG% ostd::_Throw_bad_array_new_lengthH BO�0%�
$k�l� m�,Y0Y
�Y�Y
H�L$H��XH�L$`�H�D$0H�D$`H�D$(H�D$(H�D$ H�D$(H��H�D$8H�D$(H��H�D$@H�L$(��H�D$ H�8tjL�D$0H�D$8H�H�D$ H��H�D$@H�L$ H�	H�H+�H��L��H�D$ H�H�L$0�H�D$ H�H�D$8H�H�D$@H�H��X��N\t����dG�	��std::vector<unsigned int,std::allocator<unsigned int> >::_TidyX B`4Othis8�O_Mylast �O_Myfirst(�O_My_data0�O_Al@�O_MyendO���	|!�	"�#�"$�,%�:&�H(�S*�^+�x-��/��0��1��3�,�0�
� �
H�L$H��XH�L$`�H�D$0H�D$`H�D$(H�D$(H�D$ H�D$(H��H�D$8H�D$(H��H�D$@H�L$(��H�D$ H�8tjL�D$0H�D$8H�H�D$ H��H�D$@H�L$ H�	H�H+�H��L��H�D$ H�H�L$0�H�D$ H�H�D$8H�H�D$@H�H��X�~N\t��r��VG�	��std::vector<float,std::allocator<float> >::_TidyX B`mOthis8�O_Mylast �O_Myfirst(�O_My_data0�O_Al@�O_MyendO���	|!�	"�#�"$�,%�:&�H(�S*�^+�x-��/��0��1��3�,|0|
||
H�L$H��XH�L$`�H�D$0H�D$`H�D$(H�D$(H�D$ H�D$(H��H�D$8H�D$(H��H�D$@H�L$(��H�D$ H�8tjL�D$0H�D$8H�H�D$ H��H�D$@H�L$ H�	H�H+�H��L��H�D$ H�H�L$0�H�D$ H�H�D$8H�H�D$@H�H��X��N\t����lG�	��std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_TidyX B`QOthis8�O_Mylast �O_Myfirst(�O_My_data0�O_Al@�O_MyendO���	|!�	"�#�"$�,%�:&�H(�S*�^+�x-��/��0��1��3�,�0�
$�(�
H��(H�
��H��(��B��gGPstd::vector<unsigned int,std::allocator<unsigned int> >::_Xlength( BO�0	$������,�0�
����
H��(H�
��H��(��B�}YGXstd::vector<float,std::allocator<float> >::_Xlength( BO�0	$������,}0}
�}�}
H��(H�
��H��(��B��oGTstd::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Xlength( BO�0	$������,�0�
����
H�T$H�L$H��(H�L$8�H���H��(�����LG% ~std::allocator<unsigned int>::allocate( B0�Othis8�O_Count^uO�0%�
$���� ��,�0�
����
����
H�T$H�L$H��(H�L$8�H���H��(�����EG% �std::allocator<float>::allocate( B0 Othis8�O_Count^@O�0%�
$���� ��,s0s
�s�s
�s�s
H�T$H�L$H��(H�L$8�H���H��(�����PG% �std::allocator<unsigned __int64>::allocate( B0Othis8�O_Count^#O�0%�
$���� ��,�0�
����
����
H�L$H��(H�D$0H��H��(����cG	�std::vector<unsigned int,std::allocator<unsigned int> >::data( B04OthisO�0	$(�	)�*�,�0�
����
H�L$H��(H�D$0H��H��(����UG	�std::vector<float,std::allocator<float> >::data( B0mOthisO�0	$(�	)�*�,w0w
�w�w
L�D$H�T$H�L$H��(H�D$@H��H��H�L$8��H��(�%���NG/*
std::allocator<unsigned int>::deallocate( B0�Othis8�O_Ptr@�O_CountO�0/�
$����*��,�0�
����
L�D$H�T$H�L$H��(H�D$@H��H��H�L$8��H��(�%���GG/*std::allocator<float>::deallocate( B0 Othis8"O_Ptr@�O_CountO�0/�
$����*��,r0r
�r�r
L�D$H�T$H�L$H��(H�D$@H��H��H�L$8��H��(�%���RG/*std::allocator<unsigned __int64>::deallocate( B0Othis8O_Ptr@�O_CountO�0/�
$����*��,�0�
����
����nJG	astd::numeric_limits<float>::infinity BO�0	�
$o�p�q�,C0C
�C�C
H�L$H��������?���mGwstd::_Default_allocator_traits<std::allocator<unsigned int> >::max_size BO__formalO�0�
$������,�0�
����
H�L$H��������?���fG{std::_Default_allocator_traits<std::allocator<float> >::max_size BFO__formalO�0�
$������,t0t
�t�t
H�L$H�����������qGystd::_Default_allocator_traits<std::allocator<unsigned __int64> >::max_size B+O__formalO�0�
$������,�0�
����
H�L$H��8H�L$@�H���H�D$ �H�D$(H�T$ H�L$(�H�H��8���!�5���gGA	<Rstd::vector<unsigned int,std::allocator<unsigned int> >::max_size8 B@�OthisO�0A	$~�	�<��,�0�
����
H�L$H��8H�L$@�H���H�D$ �H�D$(H�T$ H�L$(�H�H��8�t!�5���YGA	<Zstd::vector<float,std::allocator<float> >::max_size8 B@�OthisO�0A	$~�	�<��,x0x
�x�x
H�L$H��8H�L$@�H���H�D$ �H�D$(H�T$ H�L$(�H�H��8���!�5���oGA	<Vstd::vector<unsigned __int64,std::allocator<unsigned __int64> >::max_size8 B@�OthisO�0A	$~�	�<��,�0�
����
H�L$H��H�D$ H�xtH�D$ H�@H�$�H�H�$H�$H���'��q:G8	3estd::exception::what B OthisO�08h$_�	`�3a�,I0I
�I�I
"		�"bBB*p'�h.p�"#�bB

b'�H@�P�d�|����<;��c#�$��?#����K����� �$�(�,�0�4�8�<�@�D�H�L�P�T�X�\�`�d�h�l�p�t�x�|�������������������������������pI��Q2pY��W		B/��]		"8��c

B<��iB<��o		B��uB6��{

B<���		B3���		B���B6���

B<����%���		B������������p"~����k�����h&����g"�����f%�"E���"E���B/�B%�bE�		B�		B�		bA",��B:				��

B		B$		B

*B/0B%6bE<		BB		bAH",N��TB:Z		��`Bf		Bl		BrB/xB%~bE�		B�		B�		bA�",  ���!!�B:""�		��##�B$$�		B%%�		B&&�B4''��p�((�B4))��p�**�B4++��p�,,�		B'--���..�		B'//���00�		B'11��22bU33		B.44		BC55bU66 		B.77&		BC88,bU992		B.::8		BC;;>B><<DRp@==JRp@>>PRp@??VB%@@\"AAb"GBBhB%CCnB%DDt		bBEEz		B;FF�		bBGG�		��HH��KIUnknown exception�QI�WIbad array new length.?AVexception@std@@������GT����.?AVbad_array_new_length@std@@������U.?AVbad_alloc@std@@������Ovector too long���������@�������������@������@����������(&
t_Avx2WmemEnabledWeakValue""
�(&
�std::exception::`vftable'��
�(&
�std::bad_alloc::`vftable'��
�31
�std::bad_array_new_length::`vftable'��
:�std::exception.?AVexception@std@@���
U�


��
,
	
p��
	t	

			"

,		

	F�__std_exception_data.?AU__std_exception_data@@��&
_What
0_DoFree��F__std_exception_data.?AU__std_exception_data@@��zC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vcruntime_exception.h���
u	�	exception��operator=��~exception�what���
_Data__local_vftable_ctor_closure���__vecDelDtor���
U�:&std::exception.?AVexception@std@@��� 1F�std::nested_exception.?AVnested_exception@std@@�
P�
#
"
"��
&,
'	"%(	"%)*
",	,"%(	"%
&	"/B�std::exception_ptr.?AVexception_ptr@std@@���
1
1��
3,
4	125
	127	12689	12
1,	<127	<125=>
3	01@
��
BC	11D	12�:exception_ptr��;~exception_ptr�?operator=��Aoperator bool��E_Copy_exception
_Data1���
_Data2���F__vecDelDtor���BfGstd::exception_ptr.?AVexception_ptr@std@@���nC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\exception���HI�	1"/	"%�	$+nested_exception���-operator=��.~nested_exception��0rethrow_nested�Knested_ptr�
1_Exc�.__local_vftable_ctor_closure���L__vecDelDtor���
P�F
&MNstd::nested_exception.?AVnested_exception@std@@�OIN:�std::bad_alloc.?AVbad_alloc@std@@���
Q
Q�
S	QRT
Q��
V,
W	QRX	QR	QR"UYZ[	QR
Q,	^QRT	^QRX_`	QR	QR���\bad_alloc��]~bad_alloc�aoperator=��b__local_vftable_ctor_closure���c__vecDelDtor���
U�:
&destd::bad_alloc.?AVbad_alloc@std@@���fuN�std::bad_array_new_length.?AVbad_array_new_length@std@@�
h
h�
j	hik
h��
m,
n	hio	hilpq	hi
h,	thik	thiouv	hi	hi�Q��rbad_array_new_length���s~bad_array_new_length��woperator=��x__local_vftable_ctor_closure���y__vecDelDtor���
U�N	&z{std::bad_array_new_length.?AVbad_array_new_length@std@@�|�B�std::bad_exception.?AVbad_exception@std@@���
~
~�
�	~�
~��
�,
�	~�	~���	~
~,	�~�	�~���	~	~����bad_exception���~bad_exception��operator=���__local_vftable_ctor_closure����__vecDelDtor���
U�B	&��std::bad_exception.?AVbad_exception@std@@����hJ�std::bad_variant_access.?AVbad_variant_access@std@@�
�
��
�	���
���
�,
�	���	�����
�	��	��
�,	����	������	��	������bad_variant_access��what����~bad_variant_access�operator=���__local_vftable_ctor_closure����__vecDelDtor���
U�J
&��std::bad_variant_access.?AVbad_variant_access@std@@��I�

p
#��
0��
#,
,
#��
�F�std::_Container_base0.?AU_Container_base0@std@@�
�	��
�,
�	���F�std::_Fake_allocator.?AU_Fake_allocator@std@@���F�std::_Fake_allocator.?AU_Fake_allocator@std@@���jC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\xmemory����
���
�,
�	�����	���j�_Orphan_all�_Swap_proxy_and_iterators���_Alloc_proxy����_Reload_proxy��F�std::_Container_base0.?AU_Container_base0@std@@����N�std::_Fake_proxy_ptr_impl.?AU_Fake_proxy_ptr_impl@std@@�
�
���
�,��	���N�std::_Leave_proxy_unbound.?AU_Leave_proxy_unbound@std@@�N�std::_Leave_proxy_unbound.?AU_Leave_proxy_unbound@std@@������	���
���
�,
�	������
�,	������	���	��Z�_Fake_proxy_ptr_impl����operator=���_Bind���_Release���N&�std::_Fake_proxy_ptr_impl.?AU_Fake_proxy_ptr_impl@std@@����>�astc_enc_settings.?AUastc_enc_settings@@~
tblock_width��
tblock_height�
tchannels�
tfastSkipTreshold�
trefineIterations�>�astc_enc_settings.?AUastc_enc_settings@@ND:\a\intel-tex-rs-2\intel-tex-rs-2\vendor\ispc_texcomp\ispc_texcomp.h����?
�2�astc_block.?AUastc_block@@�� #@�t#� #�B
twidth
theight���
 dual_plane���
tweight_range�
�weights��
tPcolor_component_selector�
tTpartitions���
tXpartition_id�
t\color_endpoint_pairs�
t`channels�
�dcolor_endpoint_modes�
ttendpoint_range���
�xendpoints2
��astc_block.?AUastc_block@@��VD:\a\intel-tex-rs-2\intel-tex-rs-2\vendor\ispc_texcomp\ispc_texcomp_astc.cpp�����6
�t#�t#�
t��
�,u#�
t��
�,u#�6�rgba_surface.?AUrgba_surface@@��J
 ptr��
twidth
theight���
tstride���6�rgba_surface.?AUrgba_surface@@����
���
�>�ispc::astc_block.?AUastc_block@ispc@@���t#�B
twidth
theight���
 dual_plane���
tweight_range�
�weights��
tPcolor_component_selector�
tTpartitions���
tXpartition_id�
t\color_endpoint_pairs�
t`channels�
�dcolor_endpoint_modes�
ttendpoint_range���
�xendpoints>
�ispc::astc_block.?AUastc_block@ispc@@���rD:\a\intel-tex-rs-2\intel-tex-rs-2\target\debug\build\intel_tex_2-f6430b1a1df775b0\out\kernel_astc_ispc.h��@
�J�ispc::astc_enc_context.?AUastc_enc_context@ispc@@���
twidth
theight���
tchannels�
0dual_plane���
tpartitions���
tcolor_endpoint_pairs�Jispc::astc_enc_context.?AUastc_enc_context@ispc@@���)
j�std::vector<float,std::allocator<float> >.?AV?$vector@MV?$allocator@M@std@@@std@@���B�std::allocator<float>.?AV?$allocator@M@std@@
@��

@,
,Z�std::integral_constant<bool,1>.?AU?$integral_constant@_N$00@std@@���
0��
��
	0bvalue��0value_type�type���operator bool��operator()�ZTstd::integral_constant<bool,1>.?AU?$integral_constant@_N$00@std@@���nC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\xtr1common��
��

	

	@
	 
@"�	 #�C	@ %
�	@ '&(	#�_From_primary��@value_type�@pointer
const_pointer��reference��const_reference#size_type��difference_typepropagate_on_container_move_assignment�is_always_equaladdress!allocator<float>���$deallocate�)allocate���*max_size����_Minimum_asan_allocation_alignment�B+std::allocator<float>.?AV?$allocator@M@std@@,��v�std::allocator_traits<std::allocator<float> >.?AU?$allocator_traits@V?$allocator@M@std@@@std@@���std::_Default_allocator_traits<std::allocator<float> >.?AU?$_Default_allocator_traits@V?$allocator@M@std@@@std@@
@��
0Z�std::integral_constant<bool,0>.?AU?$integral_constant@_N$0A@@std@@��
0��
2��
4	025b3value��0value_type�2type���6operator bool��6operator()�ZT7std::integral_constant<bool,0>.?AU?$integral_constant@_N$0A@@std@@��8
,
#��
B:;<	@/=:;	@/?>@
@:B;	/C
��
E,
F	#/G	/G�allocator_type�@value_type�@pointer1const_pointer��void_pointer���Cconst_void_pointer�#size_type��difference_type2propagate_on_container_copy_assignment�propagate_on_container_move_assignment�2propagate_on_container_swapis_always_equalAallocate���Ddeallocate�Hmax_size���Iselect_on_container_copy_construction��Jstd::_Default_allocator_traits<std::allocator<float> >.?AU?$_Default_allocator_traits@V?$allocator@M@std@@@std@@K��/��vMstd::allocator_traits<std::allocator<float> >.?AU?$allocator_traits@V?$allocator@M@std@@@std@@��N��
0
@,
@��
R,r�std::_Vector_val<std::_Simple_types<float> >.?AV?$_Vector_val@U?$_Simple_types@M@std@@@std@@
@��
U
@,
@��
X,
T@@@	TZ[	TZ\]
T,
_	TZ`:���@value_type�#size_type��difference_type@pointerVconst_pointer��Wreference��Yconst_reference^_Vector_val<std::_Simple_types<float> >a_Swap_val��a_Take_contents�
@_Myfirst�
@_Mylast��
@_Myend���rbstd::_Vector_val<std::_Simple_types<float> >.?AV?$_Vector_val@U?$_Simple_types@M@std@@@std@@jC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\vector��cd���std::vector<float,std::allocator<float> >::_Reallocation_guard.?AU_Reallocation_guard@?$vector@MV?$allocator@M@std@@@std@@���std::vector<float,std::allocator<float> >::_Simple_reallocation_guard.?AU_Simple_reallocation_guard@?$vector@MV?$allocator@M@std@@@std@@��std::vector<float,std::allocator<float> >::_Vaporization_guard.?AU_Vaporization_guard@?$vector@MV?$allocator@M@std@@@std@@���std::_Vector_iterator<std::_Vector_val<std::_Simple_types<float> > >.?AV?$_Vector_iterator@V?$_Vector_val@U?$_Simple_types@M@std@@@std@@@std@@���std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<float> > >.?AV?$_Vector_const_iterator@V?$_Vector_val@U?$_Simple_types@M@std@@@std@@@std@@����std::reverse_iterator<std::_Vector_iterator<std::_Vector_val<std::_Simple_types<float> > > >.?AV?$reverse_iterator@V?$_Vector_iterator@V?$_Vector_val@U?$_Simple_types@M@std@@@std@@@std@@@std@@��std::reverse_iterator<std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<float> > > >.?AV?$reverse_iterator@V?$_Vector_const_iterator@V?$_Vector_val@U?$_Simple_types@M@std@@@std@@@std@@@std@@



�
��
o,np	
mq
n	
ms

��
u,vp	
mw
v	
myR�std::initializer_list<float>.?AV?$initializer_list@M@std@@��
@��
|,
|
{~~	{�	{��
{��
�	~{�	#{��@value_type�}reference��}const_reference#size_type��~iterator���~const_iterator��initializer_list<float>�begin���end�size���
~_First���
~_LastR
�std::initializer_list<float>.?AV?$initializer_list@M@std@@��rC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\initializer_list��
��
�,{�	
m�
#���S�	
m���	
m�
�	
m�	
mJrtxz�����

,
{	�
m�	�
my	�
ms���	
m
@�
�	
m�
S	
m���j{	i
m�j�S	i
m�j�	i
m�jS	i
m�"����
�	
m��S	
m���
�	
m���"_At_least_Exactly�t�std::vector<float,std::allocator<float> >::_Reallocation_policy.?AW4_Reallocation_policy@?$vector@MV?$allocator@M@std@@@std@@��dg
#	
m�	
mjj	i
m�
j	i
m���
�	
m�
R
u	�
�	@
m��	j
�	i
m����	l
�	k
m��������	0
�	#
�	S
��	Q
m���	S
��	Q
m���	S
�	Q
m����	
�	#
��
@���	
m�	
m�	
@@	
��
��
�,	�
�
,	�
m��
�	i
m�	i
m���std::_Compressed_pair<std::allocator<float>,std::_Vector_val<std::_Simple_types<float> >,1>.?AV?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@���
��
�,
���
�	���
,
�	�����F��
T_Myval2��_Mybase�_Get_first���std::_Compressed_pair<std::allocator<float>,std::_Vector_val<std::_Simple_types<float> >,1>.?AV?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@������	
m�_Alty��._Alty_traits���@value_type�allocator_type�@pointerPconst_pointer��Qreference��Sconst_reference#size_type��difference_typeT_Scary_val�f_Reallocation_guardg_Simple_reallocation_guard�h_Vaporization_guardiiterator���jconst_iterator�kreverse_iterator���lconst_reverse_iterator�	�vector<float,std::allocator<float> >����operator=���~vector<float,std::allocator<float> >���push_back���insert��assign��resize��_Reallocation_policy����_Clear_and_reserve_geometric����reserve�shrink_to_fit���pop_back����erase���clear���swap����data����begin���end�rbegin��rend����cbegin��cend����crbegin�crend���_Unchecked_begin����_Unchecked_end��empty���size����max_size����capacity����operator[]��at��front���back����get_allocator���_Calculate_growth���_Buy_raw����_Buy_nonzero����_Change_array���_Tidy���_Move_assign_unequal_alloc�	�_Xlength���	�_Xrange�_Orphan_range���_Getal��_Make_iterator��_Make_iterator_offset��
�_Mypair���__vecDelDtor���j`6�std::vector<float,std::allocator<float> >.?AV?$vector@MV?$allocator@M@std@@@std@@���d���std::vector<unsigned __int64,std::allocator<unsigned __int64> >.?AV?$vector@_KV?$allocator@_K@std@@@std@@���N�std::allocator<unsigned __int64>.?AV?$allocator@_K@std@@
#��

#,
,
��

		

	#	

	
#�		#%	#'	#	�_From_primary��#value_type�#pointerconst_pointer��reference��const_reference#size_type��difference_typepropagate_on_container_move_assignment�is_always_equaladdressallocator<unsigned __int64>deallocate�allocate���max_size����_Minimum_asan_allocation_alignment�Nstd::allocator<unsigned __int64>.?AV?$allocator@_K@std@@����std::allocator_traits<std::allocator<unsigned __int64> >.?AU?$allocator_traits@V?$allocator@_K@std@@@std@@���std::_Default_allocator_traits<std::allocator<unsigned __int64> >.?AU?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@
#��

,
#��
B !	#" 	#$#%
#' 	(
��
*,
+	#,	,�allocator_type�#value_type�#pointerconst_pointer��void_pointer���Cconst_void_pointer�#size_type��difference_type2propagate_on_container_copy_assignment�propagate_on_container_move_assignment�2propagate_on_container_swapis_always_equal&allocate���)deallocate�-max_size���.select_on_container_copy_construction��/std::_Default_allocator_traits<std::allocator<unsigned __int64> >.?AU?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@0����2std::allocator_traits<std::allocator<unsigned __int64> >.?AU?$allocator_traits@V?$allocator@_K@std@@@std@@��3��

#,
#��
7,~�std::_Vector_val<std::_Simple_types<unsigned __int64> >.?AV?$_Vector_val@U?$_Simple_types@_K@std@@@std@@
#��
:
#,
#��
=,
9###	9?@	9?AB
9,
D	9?EF���#value_type�#size_type��difference_type#pointer;const_pointer��<reference��>const_referenceC_Vector_val<std::_Simple_types<unsigned __int64> >�F_Swap_val��F_Take_contents�
#_Myfirst�
#_Mylast��
#_Myend���~Gstd::_Vector_val<std::_Simple_types<unsigned __int64> >.?AV?$_Vector_val@U?$_Simple_types@_K@std@@@std@@Hd���std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Reallocation_guard.?AU_Reallocation_guard@?$vector@_KV?$allocator@_K@std@@@std@@���std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Simple_reallocation_guard.?AU_Simple_reallocation_guard@?$vector@_KV?$allocator@_K@std@@@std@@��std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Vaporization_guard.?AU_Vaporization_guard@?$vector@_KV?$allocator@_K@std@@@std@@���std::_Vector_iterator<std::_Vector_val<std::_Simple_types<unsigned __int64> > >.?AV?$_Vector_iterator@V?$_Vector_val@U?$_Simple_types@_K@std@@@std@@@std@@���std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<unsigned __int64> > >.?AV?$_Vector_const_iterator@V?$_Vector_val@U?$_Simple_types@_K@std@@@std@@@std@@����std::reverse_iterator<std::_Vector_iterator<std::_Vector_val<std::_Simple_types<unsigned __int64> > > >.?AV?$reverse_iterator@V?$_Vector_iterator@V?$_Vector_val@U?$_Simple_types@_K@std@@@std@@@std@@@std@@��std::reverse_iterator<std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<unsigned __int64> > > >.?AV?$reverse_iterator@V?$_Vector_const_iterator@V?$_Vector_val@U?$_Simple_types@_K@std@@@std@@@std@@@std@@

�
��
S,RT	QU
R	QW
��
Y,ZT	Q[
Z	Q]^�std::initializer_list<unsigned __int64>.?AV?$initializer_list@_K@std@@��
#��
`,
`
_bb	_cd	_cef
_��
h	b_i	#_i�#value_type�areference��aconst_reference#size_type��biterator���bconst_iterator�ginitializer_list<unsigned __int64>�jbegin��jendksize���
b_First���
b_Last^
lstd::initializer_list<unsigned __int64>.?AV?$initializer_list@_K@std@@��m�
��
o,_p	Qq
#��s8p	Qtsp	Qv
p	Qx	QJVX\^ruwyz
,
_	|Q}	|Q]	|QW~�	Q
#�
�	Q�
8	Q���N_	MQ�Ns8	MQ�N�	MQ�N8	MQ�"����
h	Q�s8	Q���
s	Q���"_At_least_Exactly�t�std::vector<unsigned __int64,std::allocator<unsigned __int64> >::_Reallocation_policy.?AW4_Reallocation_policy@?$vector@_KV?$allocator@_K@std@@@std@@��dg
#	Q�	QNN	MQ�
N	MQ���
|	Q�
7
Y	��	#Q��	N�	MQ����	P�	OQ��������	0�	#�	8��	6Q���	8��	6Q���	8�	6Q����	�	#��
#�ss	Q�	Q�	##	��
��
�,	��
,	�Q��
�	MQ�	MQ���std::_Compressed_pair<std::allocator<unsigned __int64>,std::_Vector_val<std::_Simple_types<unsigned __int64> >,1>.?AV?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@���
��
�,
���
�	���
,
�	�����F��
9_Myval2��_Mybase�_Get_first���std::_Compressed_pair<std::allocator<unsigned __int64>,std::_Vector_val<std::_Simple_types<unsigned __int64> >,1>.?AV?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@������	Q�_Alty��_Alty_traits���#value_type�allocator_type�#pointer5const_pointer��6reference��8const_reference#size_type��difference_type9_Scary_val�J_Reallocation_guardK_Simple_reallocation_guard�L_Vaporization_guardMiterator���Nconst_iterator�Oreverse_iterator���Pconst_reverse_iterator�	{vector<unsigned __int64,std::allocator<unsigned __int64> >��operator=���~vector<unsigned __int64,std::allocator<unsigned __int64> >�push_back���insert��assign��resize��_Reallocation_policy����_Clear_and_reserve_geometric����reserve�shrink_to_fit���pop_back����erase���clear���swap����data����begin���end�rbegin��rend����cbegin��cend����crbegin�crend���_Unchecked_begin����_Unchecked_end��empty���size����max_size����capacity����operator[]��at��front���back����get_allocator���_Calculate_growth���_Buy_raw����_Buy_nonzero����_Change_array���_Tidy���_Move_assign_unequal_alloc�	�_Xlength���	�_Xrange�_Orphan_range���_Getal��_Make_iterator��_Make_iterator_offset��
�_Mypair���__vecDelDtor���`6�std::vector<unsigned __int64,std::allocator<unsigned __int64> >.?AV?$vector@_KV?$allocator@_K@std@@@std@@����d�v�std::vector<unsigned int,std::allocator<unsigned int> >.?AV?$vector@IV?$allocator@I@std@@@std@@�J�std::allocator<unsigned int>.?AV?$allocator@I@std@@�
u��
�
u,
�,
���
�
�	����
�	u�����
�	��
u��	���	u��%	u��'��	#����_From_primary��uvalue_type�upointer�const_pointer���reference���const_reference#size_type��difference_typepropagate_on_container_move_assignment�is_always_equal�address�allocator<unsigned int>�deallocate��allocate����max_size����_Minimum_asan_allocation_alignment�J�std::allocator<unsigned int>.?AV?$allocator@I@std@@����~�std::allocator_traits<std::allocator<unsigned int> >.?AU?$allocator_traits@V?$allocator@I@std@@@std@@����std::_Default_allocator_traits<std::allocator<unsigned int> >.?AU?$_Default_allocator_traits@V?$allocator@I@std@@@std@@�
u��

�,
#��
B	u�	u�
u
	�
���

,
	#�	����allocator_type�uvalue_type�upointerconst_pointer��void_pointer���Cconst_void_pointer�#size_type��difference_type2propagate_on_container_copy_assignment�propagate_on_container_move_assignment�2propagate_on_container_swapis_always_equal	allocate���deallocate�max_size���select_on_container_copy_construction��std::_Default_allocator_traits<std::allocator<unsigned int> >.?AU?$_Default_allocator_traits@V?$allocator@I@std@@@std@@������~std::allocator_traits<std::allocator<unsigned int> >.?AU?$allocator_traits@V?$allocator@I@std@@@std@@�����

u,
u��
,z�std::_Vector_val<std::_Simple_types<unsigned int> >.?AV?$_Vector_val@U?$_Simple_types@I@std@@@std@@�
u��

u,
u��
 ,
uuu	"#	"$%
,
'	"(B���uvalue_type�#size_type��difference_typeupointerconst_pointer��reference��!const_reference&_Vector_val<std::_Simple_types<unsigned int> >�)_Swap_val��)_Take_contents�
u_Myfirst�
u_Mylast��
u_Myend���z*std::_Vector_val<std::_Simple_types<unsigned int> >.?AV?$_Vector_val@U?$_Simple_types@I@std@@@std@@�+d���std::vector<unsigned int,std::allocator<unsigned int> >::_Reallocation_guard.?AU_Reallocation_guard@?$vector@IV?$allocator@I@std@@@std@@��std::vector<unsigned int,std::allocator<unsigned int> >::_Simple_reallocation_guard.?AU_Simple_reallocation_guard@?$vector@IV?$allocator@I@std@@@std@@���std::vector<unsigned int,std::allocator<unsigned int> >::_Vaporization_guard.?AU_Vaporization_guard@?$vector@IV?$allocator@I@std@@@std@@��std::_Vector_iterator<std::_Vector_val<std::_Simple_types<unsigned int> > >.?AV?$_Vector_iterator@V?$_Vector_val@U?$_Simple_types@I@std@@@std@@@std@@����std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<unsigned int> > >.?AV?$_Vector_const_iterator@V?$_Vector_val@U?$_Simple_types@I@std@@@std@@@std@@�����std::reverse_iterator<std::_Vector_iterator<std::_Vector_val<std::_Simple_types<unsigned int> > > >.?AV?$reverse_iterator@V?$_Vector_iterator@V?$_Vector_val@U?$_Simple_types@I@std@@@std@@@std@@@std@@���std::reverse_iterator<std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<unsigned int> > > >.?AV?$reverse_iterator@V?$_Vector_const_iterator@V?$_Vector_val@U?$_Simple_types@I@std@@@std@@@std@@@std@@�
�
��
���
6,57	�48
5	�4:
���
<,=7	�4>
=	�4@Z�std::initializer_list<unsigned int>.?AV?$initializer_list@I@std@@���
u��
C,
C
BEE	BFG	BFHI
B��
K	EBL	#BL�uvalue_type�Dreference��Dconst_reference#size_type��Eiterator���Econst_iterator�Jinitializer_list<unsigned int>�Mbegin��MendNsize���
E_First���
E_LastZ
Ostd::initializer_list<unsigned int>.?AV?$initializer_list@I@std@@���P�
���
R,BS	�4T
#��VS	�4WVS	�4Y
S	�4[	�4J9;?AUXZ\]
�,
B	_�4`	_�4@	_�4:abc	�4
u�
f	�4g
	�4ihj1B	0�4l1V	0�4n1f	0�4p1	0�4r"moqs
K	�4uV	�4wvx
V	�4zx{"_At_least_Exactly�t}std::vector<unsigned int,std::allocator<unsigned int> >::_Reallocation_policy.?AW4_Reallocation_policy@?$vector@IV?$allocator@I@std@@@std@@���~dg
#	�4�	�411	0�4�
1	0�4���
_	�4�

<	���	u�4��	1��	0�4����	3��	2�4��������	0��	#��	��z	�4z��	��z	�4z��	��	�4����	���	#��z
u�VV	�4�	�4�	�uu	���
���
�,	���
�,	��4��
�	0�4�	0�4z��std::_Compressed_pair<std::allocator<unsigned int>,std::_Vector_val<std::_Simple_types<unsigned int> >,1>.?AV?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@�
���
�,
���
�	���
�,
�	�����F���
_Myval2���_Mybase�_Get_first���std::_Compressed_pair<std::allocator<unsigned int>,std::_Vector_val<std::_Simple_types<unsigned int> >,1>.?AV?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@����	�4��_Alty���_Alty_traits���uvalue_type��allocator_type�upointerconst_pointer��reference��const_reference#size_type��difference_type_Scary_val�-_Reallocation_guard._Simple_reallocation_guard�/_Vaporization_guard0iterator���1const_iterator�2reverse_iterator���3const_reverse_iterator�	^vector<unsigned int,std::allocator<unsigned int> >�doperator=��e~vector<unsigned int,std::allocator<unsigned int> >kpush_back��tinsert�yassign�|resize�~_Reallocation_policy���{_Clear_and_reserve_geometric����reserve�shrink_to_fit��epop_back����erase��eclear���swap����data����begin���end�rbegin��rend����cbegin��cend����crbegin�crend���_Unchecked_begin����_Unchecked_end��empty���size����max_size����capacity����operator[]��at��front���back����get_allocator���_Calculate_growth���_Buy_raw���{_Buy_nonzero����_Change_array��e_Tidy���_Move_assign_unequal_alloc�	�_Xlength���	�_Xrange�_Orphan_range���_Getal��_Make_iterator��_Make_iterator_offset��
�_Mypair���__vecDelDtor���v`6�std::vector<unsigned int,std::allocator<unsigned int> >.?AV?$vector@IV?$allocator@I@std@@@std@@��d�
,
R,Z�std::_One_then_variadic_args_t.?AU_One_then_variadic_args_t@std@@������
9,
o,
T,
�,
���
�,
����std::_Tidy_guard<std::vector<unsigned int,std::allocator<unsigned int> > >.?AU?$_Tidy_guard@V?$vector@IV?$allocator@I@std@@@std@@@std@@�
�
�	��	��~
�_Target���~_Tidy_guard<std::vector<unsigned int,std::allocator<unsigned int> > >��__vecDelDtor����std::_Tidy_guard<std::vector<unsigned int,std::allocator<unsigned int> > >.?AU?$_Tidy_guard@V?$vector@IV?$allocator@I@std@@@std@@@std@@���T
�,
��
�,��std::_Tidy_guard<std::vector<unsigned __int64,std::allocator<unsigned __int64> > >.?AU?$_Tidy_guard@V?$vector@_KV?$allocator@_K@std@@@std@@@std@@���

�	��	���
�_Target���~_Tidy_guard<std::vector<unsigned __int64,std::allocator<unsigned __int64> > >��__vecDelDtor����std::_Tidy_guard<std::vector<unsigned __int64,std::allocator<unsigned __int64> > >.?AU?$_Tidy_guard@V?$vector@_KV?$allocator@_K@std@@@std@@@std@@�����T
,
��
�,��std::_Tidy_guard<std::vector<float,std::allocator<float> > >.?AU?$_Tidy_guard@V?$vector@MV?$allocator@M@std@@@std@@@std@@���


�	��	��r
�_Target���~_Tidy_guard<std::vector<float,std::allocator<float> > >����__vecDelDtor����std::_Tidy_guard<std::vector<float,std::allocator<float> > >.?AU?$_Tidy_guard@V?$vector@MV?$allocator@M@std@@@std@@@std@@�����T
,
u,
u
�,
#,
#
,
@,
@
,
u
�,��std::_Uninitialized_backout_al<std::allocator<unsigned int> >.?AV?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@�
�
���
,
	��u�	��
�,	��	��	u��	��upointer_Uninitialized_backout_al<std::allocator<unsigned int> >���operator=��	~_Uninitialized_backout_al<std::allocator<unsigned int> >��
_Release���
u_First���
u_Last
�_Al��__vecDelDtor���
6std::_Uninitialized_backout_al<std::allocator<unsigned int> >.?AV?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@�
�#
#
,��std::_Uninitialized_backout_al<std::allocator<unsigned __int64> >.?AV?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@

��
,
	#	
,			#	#pointer_Uninitialized_backout_al<std::allocator<unsigned __int64> >���operator=��~_Uninitialized_backout_al<std::allocator<unsigned __int64> >��_Release���
#_First���
#_Last
_Al��__vecDelDtor���
6std::_Uninitialized_backout_al<std::allocator<unsigned __int64> >.?AV?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@ �#
@
,��std::_Uninitialized_backout_al<std::allocator<float> >.?AV?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@
$
$��
&,
'	$%(@#	$%*)+
$,	-$%(	$%	@$%	$%�@pointer,_Uninitialized_backout_al<std::allocator<float> >��.operator=��/~_Uninitialized_backout_al<std::allocator<float> >�0_Release���
@_First���
@_Last
#_Al��1__vecDelDtor���
62std::_Uninitialized_backout_al<std::allocator<float> >.?AV?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@3�#
u
5,
u
#
8,
#
@
;,
@
�,
#,
#��
@,
,
#,
,
#,
#��#G"Hoperator newݯO���}���N�std::numeric_limits<float>.?AV?$numeric_limits@M@std@@��F�std::_Num_float_base.?AU_Num_float_base@std@@���:�std::_Num_base.?AU_Num_base@std@@���J��denorm_indeterminatedenorm_absentdenorm_present���FtMstd::float_denorm_style.?AW4float_denorm_style@std@@��jC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\limits��NO
N����round_indeterminate�round_toward_zeroround_to_nearest�round_toward_infinityround_toward_neg_infinityBtRstd::float_round_style.?AW4float_round_style@std@@SO 
S��
t���Qhas_denorm��has_denorm_loss�has_infinity����has_quiet_NaN���has_signaling_NaN���is_bounded��is_exact����is_iec559���is_integer��is_modulo���is_signed���is_specialized��tinyness_before�traps��Uround_styleVdigits�Vdigits10���Vmax_digits10���Vmax_exponent���Vmax_exponent10�Vmin_exponent���Vmin_exponent10�Vradix��:Wstd::_Num_base.?AU_Num_base@std@@���XO(�L��Qhas_denorm��has_infinity����has_quiet_NaN���has_signaling_NaN���is_bounded��is_iec559���is_signed���is_specialized�Uround_styleVradix��FZstd::_Num_float_base.?AU_Num_float_base@std@@���[O~	@JJK��]min]max]lowest�]epsilon]round_error]denorm_min�]infinity���]quiet_NaN��]signaling_NaN��Vdigits�Vdigits10���Vmax_digits10���Vmax_exponent���Vmax_exponent10�Vmin_exponent���Vmin_exponent10�N^std::numeric_limits<float>.?AV?$numeric_limits@M@std@@��_OTJ]infinity��O!-/����{ctor}����,��w�{ctor}/� �J��{dtor}��@��g��whati�kw�!l���__delDtorm���'���QZ{ctor}�آ/����Qc__delDtory"��ħ���Q]{dtor}��9R�Rߢ�hq{ctor}\����#��hy__delDtorsV�g������hs{dtor}	�#�T�h~�
std.mn_Throw_bad_array_new_length���D՗�}hp{ctor}����;�c�QY{ctor}�F~M��[��V�std::_Default_allocate_traits.?AU_Default_allocate_traits@std@@�	r's_Allocate��Vtstd::_Default_allocate_traits.?AU_Default_allocate_traits@std@@�u��rs_AllocateyC��E�����
std��y2xz_Adjust_manually_vector_aligned%���,���_Orphan_all��fS�Z���{ctor}�E��A�����_Release;F˺;�"����tt*�GetProfile_astc_fast� Hf����.�GetProfile_astc_alpha_fast�xJ�tl��.�GetProfile_astc_alpha_slow���]�,�tt0��can_store��q�"�M��
�t�"�pack_block_mode��gȽE
tt��get_levelsjj�g�S�q�t�"�sequence_bits�=ÎQ!Q��uttu��set_bits���������uttu��get_field*~��B��utu��get_bit�V��8�uttt�"�pack_five_trits��83P&�pack_three_quintOq���3���u ttt�*�pack_integer_sequence��
���
uu�"�reverse_bits_32���Y]��u���pack_block��5ْG�o��ttu���atsc_rank�����ǡ��u�"�pack_block_c_���$�V����	u�&�setup_list_context����4c0Q��@ #���astc_encode��Y�x֥� ��&�CompressBlocksASTCdXdnF����
std������min�?R�^a�D
std������max4���������operator[]7DVT��a���data������=�����e{dtor},�:>�^��Z{ctor})������*���{ctor}KG��'���operator[]%�����r��{dtor}˔��cW��w{ctor}����F���{ctor}�O���c'�
�operator[]��zVӜ�
�dataL�U��ճ<���
�{dtor}ME7c��n�
�{ctor}q������!{ctor}�d��oo���
std
uu�&��_Unfancy_maybe_null�j\)��hfZ�std::_One_then_variadic_args_t.?AU_One_then_variadic_args_t@std@@�����	�����{ctor}S�����c��"�{_Construct_n}A��`O������	�����{ctor}Q�X�!���"�_Construct_n�i2Ȱzi����
std
@@�&��_Unfancy_maybe_null8��H����	�����{ctor}O윳̘��"
�_Construct_nl��rZ=������e_Tidy�e0�=������_TidyE�ǯ�#���
�_Tidyo���D���
std
R,
�����forward���vW��
stdu#�u�6��_Uninitialized_value_construct_nnyq�v��e���
std
o,
�����forwardmM�����
std##�#�6��_Uninitialized_value_construct_nyZh�Cp�W���
std
�,
�����forward7(�
�R�
std@#�@�6��_Uninitialized_value_construct_nށ��f&����
stdu���"��_Destroy_rangel��������
std#��"_Destroy_range#�m�ճ��
std@��"_Destroy_range}
�5��b�%{ctor}H�>;�����{dtor}�p�)������_Getal�=����"�{_Buy_nonzero�悄]�}'�����deallocatep��o���9B{ctor})���:�����{dtor}��V����_Getal�ʫ�j����"�_Buy_nonzero7�[���q���deallocate�Df��x��T]{ctor}
Nw?������{dtor}���M�AM�
�_GetalEA>�cD��"
�_Buy_nonzero���@�����$deallocate�,\R�
��
std
uu_Unfancy�(k���X<���
std��u_Zero_range�+���X�
std
6u! "_To_address^�o�1�d	��"�$_Emplace_back�v��FTE��
std
##'&(_Unfancy8>�M���0���
std#+*,_Zero_rangev1J�`�0
std
9#/.0_To_addressg�$�2	"2_Emplace_backP4zb��FE��
std
@@546_Unfancy�D�����9���
std""@98:_Zero_rangeU)E�d���
std
<@=<>_To_address�ka��׫	$%"$@_Emplace_backE�������
std#CBD_Deallocate]�>4�t��$0_Release���#Y�&���$/{dtor}@�U��_N�$+{ctor}����<Njm�_ReleaseɣX������{dtor}gs��ka�{ctor}�`� ����
_Release�T� ��������	{dtor}�֦������{ctor}5{M2{�x����_Get_first����d̩���_Xlength�AЬ��C�����_Buy_raw��p�x�>,�����max_size��)/� �����_Get_first��g��ST��_Xlength�e��i������_Buy_rawf�,��t,[����max_size��6�b�������_Get_first��`!p^�
�_XlengthZ喗�s5����
�_Buy_raw�﷪�R�����
�max_size`�h�%Y�����7	�[�\construct���1��:	^_construct�����r��:=	/a/bconstructYy��d����
std>?ue.df_Allocate_at_least_helper̉���@��
stdhi_Max_limit��e��'��
stdAAAlkmminZv���	�
stdBC#p.oq_Allocate_at_least_helper�f��D2��
stdDE@t.su_Allocate_at_least_helperiWgI�K����max_size�4ev��r�����_Getal?ݝd���-max_size��t:�X�����_Getal:敪�Xv�/Hmax_size!*/T����
�_Getal�Ψ:��>!���_Get_firstυ�a��w���allocate��I�(�������_Get_firstV�0k�K��allocate�^�g�vN"�����_Get_firstt����<�(allocategj��Z������
std#'"��_Get_size_of_n��,_�Q,�
std'��_Allocate@y�C[����
std"��_Get_size_of_n��Pȃ���
std6��_Allocate_manually_vector_aligned.m?N�9.���#��
��B�std::_Num_int_base.?AU_Num_int_base@std@@���rL���is_bounded��is_exact����is_integer��is_specialized�Vradix��B�std::_Num_int_base.?AU_Num_int_base@std@@����OvN�std::numeric_limits<bool>.?AV?$numeric_limits@_N@std@@��	0������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN��Vdigits�N�std::numeric_limits<bool>.?AV?$numeric_limits@_N@std@@���O�N�std::numeric_limits<char>.?AV?$numeric_limits@D@std@@���	p������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_signed���is_modulo��Vdigits�Vdigits10���N�std::numeric_limits<char>.?AV?$numeric_limits@D@std@@����O�R�std::numeric_limits<signed char>.?AV?$numeric_limits@C@std@@	������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_signed��Vdigits�Vdigits10���R
�std::numeric_limits<signed char>.?AV?$numeric_limits@C@std@@�O�V�std::numeric_limits<unsigned char>.?AV?$numeric_limits@E@std@@��	 ������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_modulo��Vdigits�Vdigits10���V
�std::numeric_limits<unsigned char>.?AV?$numeric_limits@E@std@@���OR�std::numeric_limits<char16_t>.?AV?$numeric_limits@_S@std@@��	z������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_modulo��Vdigits�Vdigits10���R
�std::numeric_limits<char16_t>.?AV?$numeric_limits@_S@std@@���OlR�std::numeric_limits<char32_t>.?AV?$numeric_limits@_U@std@@��	{������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_modulo��Vdigits�Vdigits10���R
�std::numeric_limits<char32_t>.?AV?$numeric_limits@_U@std@@���O�R�std::numeric_limits<wchar_t>.?AV?$numeric_limits@_W@std@@���	q������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_modulo��Vdigits�Vdigits10���R
�std::numeric_limits<wchar_t>.?AV?$numeric_limits@_W@std@@����O�N�std::numeric_limits<short>.?AV?$numeric_limits@F@std@@��	������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_signed��Vdigits�Vdigits10���N
�std::numeric_limits<short>.?AV?$numeric_limits@F@std@@���O�J�std::numeric_limits<int>.?AV?$numeric_limits@H@std@@	t������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_signed��Vdigits�Vdigits10���J
�std::numeric_limits<int>.?AV?$numeric_limits@H@std@@�ON�std::numeric_limits<long>.?AV?$numeric_limits@J@std@@���	������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_signed��Vdigits�Vdigits10���N
�std::numeric_limits<long>.?AV?$numeric_limits@J@std@@����OHR�std::numeric_limits<__int64>.?AV?$numeric_limits@_J@std@@���	������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_signed��Vdigits�Vdigits10���R
�std::numeric_limits<__int64>.?AV?$numeric_limits@_J@std@@����OuV�std::numeric_limits<unsigned short>.?AV?$numeric_limits@G@std@@�	!������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_modulo��Vdigits�Vdigits10���V
�std::numeric_limits<unsigned short>.?AV?$numeric_limits@G@std@@��O�V�std::numeric_limits<unsigned int>.?AV?$numeric_limits@I@std@@���	u������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_modulo��Vdigits�Vdigits10���V
�std::numeric_limits<unsigned int>.?AV?$numeric_limits@I@std@@����O�V�std::numeric_limits<unsigned long>.?AV?$numeric_limits@K@std@@��	"������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_modulo��Vdigits�Vdigits10���V
�std::numeric_limits<unsigned long>.?AV?$numeric_limits@K@std@@���O�Z�std::numeric_limits<unsigned __int64>.?AV?$numeric_limits@_K@std@@��	#������min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN���is_modulo��Vdigits�Vdigits10���Z
�std::numeric_limits<unsigned __int64>.?AV?$numeric_limits@_K@std@@���O(
#��N�std::numeric_limits<double>.?AV?$numeric_limits@N@std@@�	A�JK���min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN��Vdigits�Vdigits10���Vmax_digits10���Vmax_exponent���Vmax_exponent10�Vmin_exponent���Vmin_exponent10�N�std::numeric_limits<double>.?AV?$numeric_limits@N@std@@��O�R�std::numeric_limits<long double>.?AV?$numeric_limits@O@std@@	A�JK���min�max�lowest��epsilon�round_error�denorm_min��infinity����quiet_NaN���signaling_NaN��Vdigits�Vdigits10���Vmax_digits10���Vmax_exponent���Vmax_exponent10�Vmin_exponent���Vmin_exponent10�R�std::numeric_limits<long double>.?AV?$numeric_limits@O@std@@�O��_Functor�_Pmf_object��_Pmf_refwrap�_Pmf_pointer�_Pmd_object��_Pmd_refwrap�_Pmd_pointer�Bt�std::_Invoker_strategy.?AW4_Invoker_strategy@std@@nC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.44.35207\include\type_traits���
n�#�
���
t��
u��
@��
#��
A��F�std::_Iterator_base0.?AU_Iterator_base0@std@@���
�
C	���
�
���
�	���F�_Adopt��_Getcont����_Unwrap_when_unverifiedF�std::_Iterator_base0.?AU_Iterator_base0@std@@������F�std::_Iterator_base12.?AU_Iterator_base12@std@@�

��
,
		
,	J�std::_Container_base12.?AU_Container_base12@std@@���



��
,

	
	


,	
	

	
F�std::_Container_proxy.?AU_Container_proxy@std@@�

		
J_Container_proxy���
_Mycont��
_Myfirstiter�Fstd::_Container_proxy.?AU_Container_proxy@std@@���_Container_base12��operator=��_Orphan_all_Swap_proxy_and_iterators��
_Myproxy�_Orphan_all_unlocked_v3_Swap_proxy_and_iterators_unlocked�_Orphan_all_locked_v3��_Swap_proxy_and_iterators_locked���J
&!std::_Container_base12.?AU_Container_base12@std@@���"��
	$
	&�_Iterator_base12���	operator=��%_Adopt�'_Getcont����_Unwrap_when_unverified
_Myproxy�
_Mynextiter��F&(std::_Iterator_base12.?AU_Iterator_base12@std@@�)��
#��:�_TypeDescriptor.?AU_TypeDescriptor@@p#�6
CpVFTable�
spare
-name�:._TypeDescriptor.?AU_TypeDescriptor@@RD:\a\intel-tex-rs-2\intel-tex-rs-2\predefined C++ types (compiler internal)/0�
,&�_PMD.?AU_PMD@@��2
tmdisp
tpdisp
tvdisp&4_PMD.?AU_PMD@@��50�
7
8v
uproperties���
2pType
3thisDisplacement�
tsizeOrOffset�
9copyFunction�>:$_s__CatchableType.?AU_s__CatchableType@@;0�
n>�_s__CatchableType.?AU_s__CatchableType@@
>��
?@#�>
tnCatchableTypes��
AarrayOfCatchableTypesJB_s__CatchableTypeArray.?AU_s__CatchableTypeArray@@��C0�
8
���
���
���
���.-nologo -MT -Z7 -Brepro -W4 -c -TP -X��FGHIJ����Һ.q��\>�~�f�Y�Եo]X����������"jv�k�W�φ�@G�͐�Wk�W�φ��B[k�Nk�W�φ�mq��3�W�t��>���cR��c�3�3�c
�M�fC>ȡ��3�c
���M%���3�c
�k��	��Qj���}������}^�K�{(G�l��mz
r��.{(G�l������J�{(G�l��
����'{Q]�1��M����T��>���SV
�"b+�,��>���SV
�����(��>���SV
cO���q�O�<�
��^�3�5ط�~�<�
��^����k�������+j�#�$]� I���?�՝�b)I�cW\�������aӫ�: kԱ�m06"�Cb�[���-��ҽ�.[���[���-��8���T8[���-������M�+�g��g2�O���"�3|,jg��g2�O��]�Дyвg��g2�O�nm�W�=g��g2�O�yP@���-g��g2�O�-�!3���M��?�ՌLRL���2M��?�ՌL��EZpd�����$��E�6;���(�&j+�n��^6L*��(�&j+�}�//ȼq��(�&j++j$M��u7~�v8�m�+�k4u7~�v��7Q#�A��	���9ܝ2��Иg��g2�O��$�#ܣ�g��g2�O�ڎ�Ѐ|�/g��g2�O������R>I��F�$!�=`�R����)| SĦQ{TL���-xv@ĝrQƅ����yu��8E
l_�}Dl��vu��8E
lc���>��iu��8E
l)@�%Q�q,.�Qy���
22�� �,.�Qy��J�����,.�Qy��d���Gkg��g2�O�����v!g��g2�O��N,RI�īg��g2�O���fd�Lj����Z�n�m�L� !����Z�n�jP�>�c0����Z�n���ё��4�Wt��ҥJ����k������s5K����|C����z��������|C���
���������c�Z�b�{�9y���Ɋ������I��c�-ӥM�j|���b��j(�!&�u�G�U��j(�!`6�=e��j(�!�o��>y'Q�.�Q.���?d�kd�.�Q.�oQ�����.�Q.��������SF�'3iD�Eݕ)��QSF�'3iD/�@Y*Z qSF�'3iD����iSF�'3iD9寤Ii�SF�'3iD�����jW����G�:��v�P����QW.�3P�2j7-��������Y'��q��K������Y�8��ڥQ�qmfiR��R��k�~����w
�s¶�k�~��e�CR��k�~��i�M6�(�d�[ڧSh�L�V�+N�h���'�i>;�=���,�ƺ	��>;�=���9��,��>;�=���X����-���-����Ռ�t��k��-����>������E�6L8ʣl�)]�W�`g��g2�O����!g��g2�O�U�[�*rN�g��g2�O�o�Y�m\\g��g2�O��>U�K-t�g��g2�O�j�(:��(�g��g2�O�����Z�?�<�����
���e?�<�����cp ��>?�<�����:	��Y;?�<����W��+���?�<����������?�<����r!~a1\w{>��fL���3e��Sk�c!	}�����k����!	}���:������!	}���M#�f�@>��fL���2��ԱYq*�Eg��[�EZS��pdJ/�mh�����.���J/�mh�������[me}�d$by�fԪ6_��*��r���)��0q�<�*��r���َ$�.���*��r���H`\C��n�{�O4����xy|�$n�{�O4���&N$'��n�{�O4�Ɓk�_�!�cz�U ��8�F�cz�U � ��yTw��?8AVϮ�����*�T�?8AVϮ����,�{�`6:�y����ڬu��T��6����0i�2	��Lգ�h��i�2	��LI����'{^5��T�|�Ih  �&��lz���/�$`&��lz�;�P�6H�&��lz��r�n�Q��Hb�!�5"V�D>t��Ƶe'��
��Q
��.�@�/���[����|ψy�gJ�G����zV�Y��bm��n���z�Bb����S�[Ŀ����b͏�]�n��&{-��w
��	l��&{-���bm�`��+d+��w
��	l�T4�"
�b͏�]�n��&{-���bm��X���bm�`��+d+��w
��	l�T4�"
�b͏�]�n��&{-��l���K��\R�'��r���bm�Z����廯W} �~�vK�Wz'vyU���nR��&�Yd����nR��&�Yd�9I=?�T��n���z��w
��	l\R�'��r�2Ɓj(�)�Yd���bm�`��+d+���bm�%�rRbr $�����w�>i,�B���nR��&|�ʞ��W} M��ɬ�6��w
��	l/��	��R�Ovh��c��/�����-�g�(��0]Z�9�$��bm�%�rRb��bm�%�rRb9I=?�T��n���z��w
��	l\R�'��r�2Ɓj(�)�Yd���bm�`��+d+�r $�����w�>i,�B���nR��&|�ʞ��W} M��ɬ�6��w
��	l/��	��R�Ovh��c��/�����-�g�(��0]Z�9�$��bm�%�rRb��bm�%�rRb9I=?�T��n���z��w
��	l\R�'��r�2Ɓj(�)�Yd���bm�`��+d+���bm�%�rRbr $�����w�>i,�B���nR��&|�ʞ��W} M��ɬ�6��w
��	l/��	��R�Ovh��c��/�����-�g�(��0]Z�9�$��bm�%�rRb��bm�%�rRbaj@�\wcI4u�=�c�wv��`ޗ�Θ)aj@�\wcI4u�=�c�wv��`ޗ�Θ)aj@�\wcI4u�=�c�wv��`ޗ�Θ)��bm=PR\N�/D�@Ę�İ.w���o��bm=PR\N�/D�@Ę�İ.w���o��bm=PR\N�/D�@Ę�İ.w���oi������P�v�ȵ���bm�
,�j��bm��j��p�i������P�v�ȵ���bm�
,�j��bm��j��p�i������P�v�ȵ���bm�
,�j��bm��j��p��w
��	lT��n2�aV4O�Է}G�+$�"��d�4O�Է}G�+$�"��d�4O�Է}G�+$�"��d͟w
��	l\R�'��r�����ꊱ%�rRb���nR��&zߎc�kc�w
��	l\R�'��r�w
��	l\R�'��r�r $����ݨ;[��o���bm�����rr $����ݨ;[��o��Ovh��c�%'��?�
���϶�V�l��T�H�϶�Vޝ��϶�V�`o;�H��m��j��}A+|��:������M�6�Gg�r�=E��}A+|��[�o��(���լI�M�%G>�Mh��\&2�"�:߇A��{�2�>��C5��\&2��#qM�5<A:�����і��� "^��a�%ZZ�$Ϊ��Gɲ~���\&2��=ة��]T�W�I���s��˚z����o�>���C��h��� @comp.id����@feat.00����@vol.md��.drectvev.debug$S؅�.data��@�M.rdata����$SG50136$SG50137X$SG50145p$SG50146�$SG50321�$SG503228$SG50323`$SG50324�$SG50327$SG50328h$SG50330�$SG50331$SG503330$SG50334�$SG50335�$SG50336$SG50338@$SG50339�$SG50340�$SG50341 .bss$SG52003p$SG52004�$SG520050$SG52006�$SG52007�$SG520088$SG52009p$SG52010�.text$mn#��<ҙ.text$mn4[:�.debug$S�.text$mn	4[:�.debug$S
�	.text$mn4[:�.debug$S�.text$mn
;�#�.debug$S
.text$mn%�o��.debug$S.text$mn%�o��.debug$S�.text$mn%�o��.debug$S.text$mn���,.debug$Sl.text$mn�Y��.debug$S�.text$mn�Y��.debug$S�.text$mn�Y��.debug$S�.text$mn> ���.debug$S�.text$mnMpg�.debug$S �.text$mn!Mpg�.debug$S"�!.text$mn#Mpg�.debug$S$�#.text$mn%Cy�^!.debug$S&�%.text$mn'Cy�^!.debug$S(�'.text$mn)C�x�d.debug$S*�).text$mn+B�T�.debug$S,4+.text$mn-B����.debug$S.4-.text$mn/�Ҡ�.debug$S0�/.text$mn1I�[�.debug$S2�1.text$mn3I�[�.debug$S4�3.text$mn5I�[�.debug$S6�5.text$mn7o9U�.debug$S8�7.text$mn9o9U�.debug$S:�9.text$mn;o9U�.debug$S<�;.text$mn=o9U�.debug$S>�=.text$mn?o9U�.debug$S@�?.text$mnA�r��.debug$SB�A.text$mnC�r��.debug$SD�C.text$mnE��i@�.debug$SF�E.text$mnGU�.7.debug$SH G.text$mnIU�.7.debug$SJI.text$mnKU�.7.debug$SL$K.text$mnM@��։.debug$SN M.text$mnO@��։.debug$SPO.text$mnQ@Y�F�.debug$SR(Q.text$mnSo9U�.debug$ST�S.text$mnUo9U�.debug$SV�U.text$mnWo9U�.debug$SX�W.text$mnYE�;m�.debug$SZ�Y.text$mn[Eh�@.debug$S\�[.text$mn]G�C.debug$S^�].text$mn_>��ţ.debug$S`0_.text$mna>��ţ.debug$Sb$a.text$mnc>��ţ.debug$Sd8c.text$mne1�X�n.debug$Sf�e.text$mng1�X�n.debug$Sh�g.text$mni1�X�n.debug$Sj�i.text$mnko9U�.debug$Sl�k.text$mnmo9U�.debug$Sn�m.text$mnoo9U�.debug$Sp�o.text$mnqEyQ=.debug$Sr4q.text$mnsEyQ=.debug$Sts.text$mnuEyQ=.debug$SvDu.text$mnw�ݳ.debug$Sx�w.text$mny<� A�.debug$Sz�y.text$mn{6���{.debug$S|�{.text$mn}6���{.debug$S~�}.text$mn3��:�.debug$S��.text$mn�YZ�ۑ.debug$S���.text$mn�I��!
.debug$S���.text$mn�'���k.debug$S�<�.text$mn�'���k.debug$S� �.text$mn�'���k.debug$S�L�.text$mn�.jB�-.debug$S��.text$mn�.jB�-.debug$S��.text$mn�.jB�-.debug$S�$�.text$mn��Fn.debug$S��.text$mn��Fn.debug$S���.text$mn��Fn.debug$S� �.text$mn��Fn.debug$S���.text$mn��Fn.debug$S���.text$mn�/`q��.debug$S���.text$mn�N��b.debug$S���.text$mn�,�e.debug$S��.text$mn�,�e.debug$S��.text$mn�,ku�j.debug$S� �.text$mn�<9-�].debug$S���.text$mn�<9-�].debug$S���.text$mn�<9-�].debug$S���.text$mn��p�).debug$S�x�.text$mn��BO�.debug$S���.text$mn�:��j.debug$S��.text$mn�:��j.debug$S��.text$mn�:��j.debug$S��.text$mn��^[��.debug$S���.text$mn��^[��.debug$S���.text$mn����h�.debug$S���.text$mn�o9U�.debug$S��.text$mn�o9U�.debug$S��.text$mn�o9U�.debug$S��.text$mn�o9U�.debug$S��.text$mn�o9U�.debug$S� �.text$mn�o9U�.debug$S� �.text$mn���.debug$S���.text$mn���.debug$S���.text$mn���.debug$S���.text$mn���.debug$S���.text$mn���.debug$S���.text$mn���.debug$S���.text$mn�YJ�{.debug$S���.text$mn� �*��.debug$S���.text$mn� �*��.debug$S���.text$mn� �*��.debug$S���.text$mn�YJ�{.debug$S���.text$mn�%s/�.debug$S���.text$mn���z[�.debug$S���.text$mn���z[�.debug$S���.text$mn����.debug$S���.text$mn��U�P.debug$S���.text$mn��U�P.debug$S���.text$mn��U�P.debug$S���.text$mn�%=}��.debug$S���.text$mn�%=}��.debug$S���.text$mn�%=}��.debug$S���.text$mn��+J>.debug$S���.text$mn��+J>.debug$S���.text$mn�/Q��=.debug$S���.text$mn�/Q��=.debug$S���.text$mn�/��X.debug$S���.text$mn�	�s%C.debug$S���.text$mn��+	c.debug$S���.text$mn��+	c.debug$S��.text$mn��.debug$S�.text$mnA��R�.debug$S�.text$mnA��R�.debug$S�.text$mnA��R�.debug$S�.text$mn	8���z.debug$S
�	5 D T iP �� �� � � � � _wassert memset ��  $� L a y� �� �� �	 ��  iJ1y O� i{ �� � iP� �� } >� h iV�� �� �� &� Qw �� �� �� @  � 8� Sp
 h�
 z � �0 �[ 
` # JY f! �P! ��! �p" 5m S� �� �� s J� y� � �� 	� Q	� �	� �	� �	� ;
� �
g �
� :� �o �� 	� 5 �u �� 
 D
� {
� �
� �
� (� ^� �� �i *� �� 2k P� }� �� q G� v� � �� � N� �� �� �� 8� e �� 7� �= � � � � �? �	 � �S ;� A �W *� pE �U � aC � # b! �7 �G �_ P� �� �% /; RK |c �� � g) �9 �I a [� �� �' :  ` 1 � M � 5 !Q �!3 �!O " l"/ �"] �" # ]#+ �#
 �#- �# <$ O$ `$ $LN32�$LN3�$LN3�$LN3�$LN5	$LN4�$LN3y$LN3�$LN3{$LN4�$LN3$LN3�$LN3}$LN4�$LN3�$LN3�$LN5�$LN5�$LN13�$LN3�$LN4�$LN4p
$LN3�
$LN14$LN12$LN280$LN5[$LN3`$LN34$LN5Y$LN3!$LN3P!$LN7�!$LN3p"$LN3�$LN3�$LN3s$LN3�$LN3�$LN3$LN3�$LN3�$LN4�$LN4�$LN3�$LN3�$LN3�$LN3�$LN3�$LN3u$LN3�$LN3$LN3�$LN3�$LN4�$LN4�$LN3�$LN3�$LN3�$LN3�$LN3�$LN3q$LN3�$LN3�$LN3$LN3�$LN3�$LN4�$LN4�$LN3�$LN3�$LN3�$LN3$LN4$LN3$LN4$LN3	$LN4$LN4�$LN6A$LN4�$LN6E$LN4�$LN6C$LN3G$LN3�$LN3%$LN3K$LN3�$LN3)$LN3I$LN3�$LN3'$LN4$LN3M$LN3Q$LN3O$LN3$LN3/$LN5]$LN3$LN3$LN4+$LN5
$LN4-$LN5.xdata���M�x$.pdata�0�E��$.xdata
:p�d��$
.pdata���6��$.xdata#XW���$.pdata��iJ�#%.xdatàx��K%.pdata�pV �m%.xdata�K��	�%.pdata�H(V	�%.xdata�3U��%.pdata2Fbҩ&.xdata���y*&.pdata2Fb�yP&.xdatàx��u&.pdata*�c��&.xdata���{�&.pdata�Z�C{�&.xdata�3U�	'.pdata2Fbҥ0'.xdatàx�V'.pdata �TB�' .xdata!̀x���'!.pdata"*�c��'".xdata#���}(#.pdata$�Z�C}<($.xdata%�3U�o(%.pdata&2Fbҧ�(&.xdata'��j���('.pdata(2l���)(.xdata)̀x��1)).pdata*�*^��m)*.xdata+[V�m��)+.pdata,]�����),'*D*`*�*�*�*$�* !+0C+(`+<|+0�+H�+8�+T.voltbl-P�qS_volmd@-,H6,`_volmd0-c,X�,l_volmd -.xdata.�Mߌ[�,..pdata/��}a[�,/-l,-xL-t{-�_volmd-.xdata0�MߌY�-0.pdata1��}aY�-1�-�9.��.��.��.��.�'/�y/�_volmd-.xdata2��r`��/2.pdata3�pV ��/3.xdata4����304.pdata52l���e05.xdata6W�?Xs�06.pdata7��}as�07.xdata8̀x��/18.pdata9*�c�f19.xdata:̀x���1:.pdata;}-�!��1;.xdata<,�5�2<.pdata=s�7�T2=.xdata>�Mߌ��2>.pdata?wٮ��2?.xdata@[V�m�	3@.pdataAv���I3A.xdataB��ı�3B.pdataC�O
��3C.xdataDlP�5�4D.pdataE�R���J4E.xdataF�9���4F.pdataG�8Ժ��4G.xdataH̀x���4H.pdataI}-�!�J5I.xdataJ̀x���5J.pdataK}-�!��5K.xdataL��r`�56L.pdataM�pV �l6M.xdataN�����6N.pdataO2l����6O.xdataPW�?Xu	7P.pdataQ��}auY7Q.xdataR̀x���7R.pdataS*�c��7S.xdataT,�5�8T.pdataUs�7�Z8U.xdataV�Mߌ��8V.pdataWwٮ��8W.xdataX[V�m�9X.pdataYv���Y9Y.xdataZ��ij�9Z.pdata[�O
��9[.xdata\lP�5�%:\.pdata]�R���b:].xdata^�9���:^.pdata_�8Ժ��:_.xdata`̀x��;`.pdataa}-�!�k;a.xdatab̀x���;b.pdatac}-�!�<c.xdatad��r`�_<d.pdatae�pV ��<e.xdataf�����<f.pdatag2l����<g.xdatahW�?Xq+=h.pdatai��}aqx=i.xdataj̀x���=j.pdatak*�c��=k.xdatal̀x��1>l.pdatam}-�!�n>m.xdatan,�5��>n.pdataos�7��>o.xdatap�Mߌ�'?p.pdataqwٮ�c?q.xdatar[V�m��?r.pdatasv����?s.xdatat��į@t.pdatau�O
�a@u.xdatavlP�5��@v.pdataw�R����@w.xdatax�9��Ax.pdatay�8Ժ�UAy.xdataz̀x���Az.pdata{}-�!��A{.xdata|̀x��-B|.pdata}}-�!�|B}.xdata~f��~�B~.pdata�]��C.xdata�C/b?D�.pdata���|��D�.xdata�f��~�D�.pdata��]��E�.xdata�C/bOF�.pdata���|��F�.xdata�f��~	�F�.pdata��]�	�G�.xdata�C/b[H�.pdata���|��H�.xdata�̀x���H�.pdata�Ok��:I�.xdata�$��A�I�.pdata����A�I�.xdata�̀x��VJ�.pdata�Ok���J�.xdata�$��E�J�.pdata����E^K�.xdata�̀x���K�.pdata�Ok��L�.xdata�$��CaL�.pdata����C�L�.xdata��E�G2M�.pdata����GaM�.xdata�̀x���M�.pdata�dp���M�.xdata�̀x�% N�.pdata���%{N�.xdata��E�K�N�.pdata����KO�.xdata�̀x��8O�.pdata�dp���O�.xdata�̀x�)�O�.pdata���)'P�.xdata��E�I�P�.pdata����I�P�.xdata�̀x���P�.pdata�dp��(Q�.xdata�̀x�'pQ�.pdata���'�Q�.xdata����%R�.pdata�OAG�SR�.xdata����M�R�.pdata��)M�R�.xdata����Q[S�.pdata��)Q�S�.xdata����O>T�.pdata��)O�T�.xdata����U�.pdata�2l��zU�.xdata���G/�U�.pdata�}-�!/�U�.xdata��Mߌ]#V�.pdata���X#]JV�.xdata����pV�.pdata�2l���V�.xdata����7W�.pdata�2l���W�.xdata�,�5�+�W�.pdata��Ÿk+$X�.xdata�̀x�
OX�.pdata�+O��
�X�.xdata�,�5�-�X�.pdata��Ÿk-Y�.xdata�lP�59Y�.pdata�����Y�.rdata��Y�.rdata��;�	Z�.rdata�0Z�.rdata�GZ�.rdata��)iZ�.data$r�$�U�T�Z�.xdata$x�$4���Z��Z.xdata$x�[�.xdata$x���)#[�.data$r�/�Z�F[�.xdata$x�$4��k[�.data$r�$�^=�[�.xdata$x�$�OE��[�.rdata�I��M\�.rdata$r�$'e%�?\�.rdata$r����W\�.rdata$r�m\�.rdata$r�$Gv�:�\�.rdata$r�$'e%��\�.rdata$r�����\�.rdata$r��\�.rdata$r�$H���]�.rdata$r�$`��1]�.rdata$r�}%BP]�.rdata$r�f]�.rdata$r�$'e%�|]�.rdata���9��]��]_fltused.debug$S�4.debug$S�4�.debug$S�4�.debug$S�@�.debug$T��.chks64��]?range_table@@3PAY02HA_Avx2WmemEnabledWeakValue??2@YAPEAX_K@Z??3@YAXPEAX_K@ZGetProfile_astc_fastGetProfile_astc_alpha_fastGetProfile_astc_alpha_slowCompressBlocksASTCastc_encode_ispcastc_rank_ispcget_programCount_invoke_watson??2@YAPEAX_KPEAX@Z?_Xlength_error@std@@YAXPEBD@Z?infinity@?$numeric_limits@M@std@@SAMXZ__std_exception_copy__std_exception_destroy??0exception@std@@QEAA@QEBDH@Z??0exception@std@@QEAA@AEBV01@@Z??1exception@std@@UEAA@XZ?what@exception@std@@UEBAPEBDXZ??_Gexception@std@@UEAAPEAXI@Z??_Eexception@std@@UEAAPEAXI@Z??0bad_alloc@std@@AEAA@QEBD@Z??1bad_alloc@std@@UEAA@XZ??0bad_alloc@std@@QEAA@AEBV01@@Z??_Gbad_alloc@std@@UEAAPEAXI@Z??_Ebad_alloc@std@@UEAAPEAXI@Z??0bad_array_new_length@std@@QEAA@XZ??1bad_array_new_length@std@@UEAA@XZ??0bad_array_new_length@std@@QEAA@AEBV01@@Z??_Gbad_array_new_length@std@@UEAAPEAXI@Z??_Ebad_array_new_length@std@@UEAAPEAXI@Z?_Throw_bad_array_new_length@std@@YAXXZ?_Allocate@_Default_allocate_traits@std@@SAPEAX_K@Z?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z?_Orphan_all@_Container_base0@std@@QEAAXXZ??0_Fake_proxy_ptr_impl@std@@QEAA@AEBU_Fake_allocator@1@AEBU_Container_base0@1@@Z?_Release@_Fake_proxy_ptr_impl@std@@QEAAXXZ?can_store@@YA_NHH@Z?pack_block_mode@@YAHPEAUastc_block@@@Z?get_levels@@YAHH@Z?sequence_bits@@YAHHH@Z?set_bits@@YAXQEAIPEAHHI@Z?get_field@@YAIIHH@Z?get_bit@@YAIIH@Z?pack_five_trits@@YAXQEAIQEAHPEAHH@Z?pack_three_quint@@YAXQEAIQEAHPEAHH@Z?pack_integer_sequence@@YAXQEAIQEAEHHH@Z??$min@H@std@@YAAEBHAEBH0@Z?reverse_bits_32@@YAII@Z?pack_block@@YAXQEAIPEAUastc_block@@@Z??$max@H@std@@YAAEBHAEBH0@Z?atsc_rank@@YAXPEBUrgba_surface@@HHPEAIPEAUastc_enc_settings@@@Zpack_block_c?setup_list_context@@YAXPEAUastc_enc_context@ispc@@I@Z?astc_encode@@YAXPEBUrgba_surface@@PEAMPEAEPEA_KPEAUastc_enc_settings@@@Z??0?$allocator@M@std@@QEAA@XZ?deallocate@?$allocator@M@std@@QEAAXQEAM_K@Z?allocate@?$allocator@M@std@@QEAAPEAM_K@Z?max_size@?$_Default_allocator_traits@V?$allocator@M@std@@@std@@SA_KAEBV?$allocator@M@2@@Z??0?$vector@MV?$allocator@M@std@@@std@@QEAA@_KAEBV?$allocator@M@1@@Z??1?$vector@MV?$allocator@M@std@@@std@@QEAA@XZ?data@?$vector@MV?$allocator@M@std@@@std@@QEAAPEAMXZ?max_size@?$vector@MV?$allocator@M@std@@@std@@QEBA_KXZ??A?$vector@MV?$allocator@M@std@@@std@@QEAAAEAM_K@Z?_Buy_raw@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z?_Buy_nonzero@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z?_Tidy@?$vector@MV?$allocator@M@std@@@std@@AEAAXXZ?_Xlength@?$vector@MV?$allocator@M@std@@@std@@CAXXZ?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEAAAEAV?$allocator@M@2@XZ?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEBAAEBV?$allocator@M@2@XZ??0?$_Vector_val@U?$_Simple_types@M@std@@@std@@QEAA@XZ?_Get_first@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEAAAEAV?$allocator@M@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEBAAEBV?$allocator@M@2@XZ??0?$allocator@_K@std@@QEAA@XZ?deallocate@?$allocator@_K@std@@QEAAXQEA_K_K@Z?allocate@?$allocator@_K@std@@QEAAPEA_K_K@Z?max_size@?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@SA_KAEBV?$allocator@_K@2@@Z??0?$vector@_KV?$allocator@_K@std@@@std@@QEAA@_KAEBV?$allocator@_K@1@@Z??1?$vector@_KV?$allocator@_K@std@@@std@@QEAA@XZ?max_size@?$vector@_KV?$allocator@_K@std@@@std@@QEBA_KXZ??A?$vector@_KV?$allocator@_K@std@@@std@@QEAAAEA_K_K@Z?_Buy_raw@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z?_Buy_nonzero@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z?_Tidy@?$vector@_KV?$allocator@_K@std@@@std@@AEAAXXZ?_Xlength@?$vector@_KV?$allocator@_K@std@@@std@@CAXXZ?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEAAAEAV?$allocator@_K@2@XZ?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEBAAEBV?$allocator@_K@2@XZ??0?$_Vector_val@U?$_Simple_types@_K@std@@@std@@QEAA@XZ?_Get_first@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEAAAEAV?$allocator@_K@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEBAAEBV?$allocator@_K@2@XZ??0?$allocator@I@std@@QEAA@XZ?deallocate@?$allocator@I@std@@QEAAXQEAI_K@Z?allocate@?$allocator@I@std@@QEAAPEAI_K@Z?max_size@?$_Default_allocator_traits@V?$allocator@I@std@@@std@@SA_KAEBV?$allocator@I@2@@Z??0?$vector@IV?$allocator@I@std@@@std@@QEAA@_KAEBV?$allocator@I@1@@Z??1?$vector@IV?$allocator@I@std@@@std@@QEAA@XZ?data@?$vector@IV?$allocator@I@std@@@std@@QEAAPEAIXZ?max_size@?$vector@IV?$allocator@I@std@@@std@@QEBA_KXZ??A?$vector@IV?$allocator@I@std@@@std@@QEAAAEAI_K@Z?_Buy_raw@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z?_Buy_nonzero@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z?_Tidy@?$vector@IV?$allocator@I@std@@@std@@AEAAXXZ?_Xlength@?$vector@IV?$allocator@I@std@@@std@@CAXXZ?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEAAAEAV?$allocator@I@2@XZ?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEBAAEBV?$allocator@I@2@XZ??0?$_Vector_val@U?$_Simple_types@I@std@@@std@@QEAA@XZ?_Get_first@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEAAAEAV?$allocator@I@2@XZ?_Get_first@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEBAAEBV?$allocator@I@2@XZ??$_Unfancy_maybe_null@I@std@@YAPEAIPEAI@Z??$?0AEBV?$allocator@I@std@@$$V@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@I@1@@Z??$_Construct_n@$$V@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z??$?0AEBV?$allocator@_K@std@@$$V@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@_K@1@@Z??$_Construct_n@$$V@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z??$_Unfancy_maybe_null@M@std@@YAPEAMPEAM@Z??$?0AEBV?$allocator@M@std@@$$V@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@M@1@@Z??$_Construct_n@$$V@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z??$forward@AEBV?$allocator@I@std@@@std@@YAAEBV?$allocator@I@0@AEBV10@@Z??1?$_Tidy_guard@V?$vector@IV?$allocator@I@std@@@std@@@std@@QEAA@XZ??$_Uninitialized_value_construct_n@V?$allocator@I@std@@@std@@YAPEAIPEAI_KAEAV?$allocator@I@0@@Z??$forward@AEBV?$allocator@_K@std@@@std@@YAAEBV?$allocator@_K@0@AEBV10@@Z??1?$_Tidy_guard@V?$vector@_KV?$allocator@_K@std@@@std@@@std@@QEAA@XZ??$_Uninitialized_value_construct_n@V?$allocator@_K@std@@@std@@YAPEA_KPEA_K_KAEAV?$allocator@_K@0@@Z??$forward@AEBV?$allocator@M@std@@@std@@YAAEBV?$allocator@M@0@AEBV10@@Z??1?$_Tidy_guard@V?$vector@MV?$allocator@M@std@@@std@@@std@@QEAA@XZ??$_Uninitialized_value_construct_n@V?$allocator@M@std@@@std@@YAPEAMPEAM_KAEAV?$allocator@M@0@@Z??$_Destroy_range@V?$allocator@I@std@@@std@@YAXPEAIQEAIAEAV?$allocator@I@0@@Z??$_Destroy_range@V?$allocator@_K@std@@@std@@YAXPEA_KQEA_KAEAV?$allocator@_K@0@@Z??$_Destroy_range@V?$allocator@M@std@@@std@@YAXPEAMQEAMAEAV?$allocator@M@0@@Z??$_Unfancy@I@std@@YAPEAIPEAI@Z??$_Zero_range@PEAI@std@@YAPEAIQEAI0@Z??0?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAA@PEAIAEAV?$allocator@I@1@@Z??1?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAA@XZ?_Release@?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAAPEAIXZ??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAAXXZ??$_Unfancy@_K@std@@YAPEA_KPEA_K@Z??$_Zero_range@PEA_K@std@@YAPEA_KQEA_K0@Z??0?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAA@PEA_KAEAV?$allocator@_K@1@@Z??1?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAA@XZ?_Release@?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAAPEA_KXZ??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAAXXZ??$_Unfancy@M@std@@YAPEAMPEAM@Z??$_Zero_range@PEAM@std@@YAPEAMQEAM0@Z??0?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAA@PEAMAEAV?$allocator@M@1@@Z??1?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAA@XZ?_Release@?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAAPEAMXZ??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAAXXZ??$_Deallocate@$0BA@@std@@YAXPEAX_K@Z??$_To_address@PEAI@std@@YA?A_PAEBQEAI@Z??$construct@I$$V@?$_Default_allocator_traits@V?$allocator@I@std@@@std@@SAXAEAV?$allocator@I@1@QEAI@Z??$_To_address@PEA_K@std@@YA?A_PAEBQEA_K@Z??$construct@_K$$V@?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@SAXAEAV?$allocator@_K@1@QEA_K@Z??$_To_address@PEAM@std@@YA?A_PAEBQEAM@Z??$construct@M$$V@?$_Default_allocator_traits@V?$allocator@M@std@@@std@@SAXAEAV?$allocator@M@1@QEAM@Z??$_Allocate_at_least_helper@V?$allocator@I@std@@@std@@YAPEAIAEAV?$allocator@I@0@AEA_K@Z??$_Max_limit@_J@std@@YA_JXZ??$min@_K@std@@YAAEB_KAEB_K0@Z??$_Allocate_at_least_helper@V?$allocator@_K@std@@@std@@YAPEA_KAEAV?$allocator@_K@0@AEA_K@Z??$_Allocate_at_least_helper@V?$allocator@M@std@@@std@@YAPEAMAEAV?$allocator@M@0@AEA_K@Z??$_Get_size_of_n@$03@std@@YA_K_K@Z??$_Allocate@$0BA@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z??$_Get_size_of_n@$07@std@@YA_K_K@Z??$_Allocate_manually_vector_aligned@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z_CxxThrowException__GSHandlerCheck__security_check_cookie$unwind$CompressBlocksASTC$pdata$CompressBlocksASTC$unwind$??0exception@std@@QEAA@QEBDH@Z$pdata$??0exception@std@@QEAA@QEBDH@Z$unwind$??0exception@std@@QEAA@AEBV01@@Z$pdata$??0exception@std@@QEAA@AEBV01@@Z$unwind$??1exception@std@@UEAA@XZ$pdata$??1exception@std@@UEAA@XZ$unwind$?what@exception@std@@UEBAPEBDXZ$pdata$?what@exception@std@@UEBAPEBDXZ$unwind$??_Gexception@std@@UEAAPEAXI@Z$pdata$??_Gexception@std@@UEAAPEAXI@Z$unwind$??0bad_alloc@std@@AEAA@QEBD@Z$pdata$??0bad_alloc@std@@AEAA@QEBD@Z$unwind$??1bad_alloc@std@@UEAA@XZ$pdata$??1bad_alloc@std@@UEAA@XZ$unwind$??0bad_alloc@std@@QEAA@AEBV01@@Z$pdata$??0bad_alloc@std@@QEAA@AEBV01@@Z$unwind$??_Gbad_alloc@std@@UEAAPEAXI@Z$pdata$??_Gbad_alloc@std@@UEAAPEAXI@Z$unwind$??0bad_array_new_length@std@@QEAA@XZ$pdata$??0bad_array_new_length@std@@QEAA@XZ$unwind$??1bad_array_new_length@std@@UEAA@XZ$pdata$??1bad_array_new_length@std@@UEAA@XZ$unwind$??0bad_array_new_length@std@@QEAA@AEBV01@@Z$pdata$??0bad_array_new_length@std@@QEAA@AEBV01@@Z$unwind$??_Gbad_array_new_length@std@@UEAAPEAXI@Z$pdata$??_Gbad_array_new_length@std@@UEAAPEAXI@Z$unwind$?_Throw_bad_array_new_length@std@@YAXXZ$pdata$?_Throw_bad_array_new_length@std@@YAXXZ$unwind$?_Allocate@_Default_allocate_traits@std@@SAPEAX_K@Z$pdata$?_Allocate@_Default_allocate_traits@std@@SAPEAX_K@Z$unwind$?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z$pdata$?_Adjust_manually_vector_aligned@std@@YAXAEAPEAXAEA_K@Z$unwind$?can_store@@YA_NHH@Z$pdata$?can_store@@YA_NHH@Z$unwind$?pack_block_mode@@YAHPEAUastc_block@@@Z$pdata$?pack_block_mode@@YAHPEAUastc_block@@@Z$unwind$?sequence_bits@@YAHHH@Z$pdata$?sequence_bits@@YAHHH@Z$unwind$?set_bits@@YAXQEAIPEAHHI@Z$pdata$?set_bits@@YAXQEAIPEAHHI@Z$unwind$?get_field@@YAIIHH@Z$pdata$?get_field@@YAIIHH@Z$unwind$?get_bit@@YAIIH@Z$pdata$?get_bit@@YAIIH@Z$unwind$?pack_five_trits@@YAXQEAIQEAHPEAHH@Z$pdata$?pack_five_trits@@YAXQEAIQEAHPEAHH@Z$unwind$?pack_three_quint@@YAXQEAIQEAHPEAHH@Z$pdata$?pack_three_quint@@YAXQEAIQEAHPEAHH@Z$unwind$?pack_integer_sequence@@YAXQEAIQEAEHHH@Z$pdata$?pack_integer_sequence@@YAXQEAIQEAEHHH@Z$unwind$??$min@H@std@@YAAEBHAEBH0@Z$pdata$??$min@H@std@@YAAEBHAEBH0@Z$unwind$?reverse_bits_32@@YAII@Z$pdata$?reverse_bits_32@@YAII@Z$unwind$?pack_block@@YAXQEAIPEAUastc_block@@@Z$pdata$?pack_block@@YAXQEAIPEAUastc_block@@@Z$unwind$??$max@H@std@@YAAEBHAEBH0@Z$pdata$??$max@H@std@@YAAEBHAEBH0@Z$unwind$?atsc_rank@@YAXPEBUrgba_surface@@HHPEAIPEAUastc_enc_settings@@@Z$pdata$?atsc_rank@@YAXPEBUrgba_surface@@HHPEAIPEAUastc_enc_settings@@@Z$unwind$pack_block_c$pdata$pack_block_c$unwind$?setup_list_context@@YAXPEAUastc_enc_context@ispc@@I@Z$pdata$?setup_list_context@@YAXPEAUastc_enc_context@ispc@@I@Z$unwind$?astc_encode@@YAXPEBUrgba_surface@@PEAMPEAEPEA_KPEAUastc_enc_settings@@@Z$pdata$?astc_encode@@YAXPEBUrgba_surface@@PEAMPEAEPEA_KPEAUastc_enc_settings@@@Z$unwind$?deallocate@?$allocator@M@std@@QEAAXQEAM_K@Z$pdata$?deallocate@?$allocator@M@std@@QEAAXQEAM_K@Z$unwind$?allocate@?$allocator@M@std@@QEAAPEAM_K@Z$pdata$?allocate@?$allocator@M@std@@QEAAPEAM_K@Z$unwind$??0?$vector@MV?$allocator@M@std@@@std@@QEAA@_KAEBV?$allocator@M@1@@Z$pdata$??0?$vector@MV?$allocator@M@std@@@std@@QEAA@_KAEBV?$allocator@M@1@@Z$unwind$??1?$vector@MV?$allocator@M@std@@@std@@QEAA@XZ$pdata$??1?$vector@MV?$allocator@M@std@@@std@@QEAA@XZ$unwind$?data@?$vector@MV?$allocator@M@std@@@std@@QEAAPEAMXZ$pdata$?data@?$vector@MV?$allocator@M@std@@@std@@QEAAPEAMXZ$unwind$?max_size@?$vector@MV?$allocator@M@std@@@std@@QEBA_KXZ$pdata$?max_size@?$vector@MV?$allocator@M@std@@@std@@QEBA_KXZ$unwind$??A?$vector@MV?$allocator@M@std@@@std@@QEAAAEAM_K@Z$pdata$??A?$vector@MV?$allocator@M@std@@@std@@QEAAAEAM_K@Z$unwind$?_Buy_raw@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z$pdata$?_Buy_raw@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z$unwind$?_Buy_nonzero@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z$pdata$?_Buy_nonzero@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z$unwind$?_Tidy@?$vector@MV?$allocator@M@std@@@std@@AEAAXXZ$pdata$?_Tidy@?$vector@MV?$allocator@M@std@@@std@@AEAAXXZ$unwind$?_Xlength@?$vector@MV?$allocator@M@std@@@std@@CAXXZ$pdata$?_Xlength@?$vector@MV?$allocator@M@std@@@std@@CAXXZ$unwind$?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEAAAEAV?$allocator@M@2@XZ$pdata$?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEAAAEAV?$allocator@M@2@XZ$unwind$?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEBAAEBV?$allocator@M@2@XZ$pdata$?_Getal@?$vector@MV?$allocator@M@std@@@std@@AEBAAEBV?$allocator@M@2@XZ$unwind$?deallocate@?$allocator@_K@std@@QEAAXQEA_K_K@Z$pdata$?deallocate@?$allocator@_K@std@@QEAAXQEA_K_K@Z$unwind$?allocate@?$allocator@_K@std@@QEAAPEA_K_K@Z$pdata$?allocate@?$allocator@_K@std@@QEAAPEA_K_K@Z$unwind$??0?$vector@_KV?$allocator@_K@std@@@std@@QEAA@_KAEBV?$allocator@_K@1@@Z$pdata$??0?$vector@_KV?$allocator@_K@std@@@std@@QEAA@_KAEBV?$allocator@_K@1@@Z$unwind$??1?$vector@_KV?$allocator@_K@std@@@std@@QEAA@XZ$pdata$??1?$vector@_KV?$allocator@_K@std@@@std@@QEAA@XZ$unwind$?max_size@?$vector@_KV?$allocator@_K@std@@@std@@QEBA_KXZ$pdata$?max_size@?$vector@_KV?$allocator@_K@std@@@std@@QEBA_KXZ$unwind$??A?$vector@_KV?$allocator@_K@std@@@std@@QEAAAEA_K_K@Z$pdata$??A?$vector@_KV?$allocator@_K@std@@@std@@QEAAAEA_K_K@Z$unwind$?_Buy_raw@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z$pdata$?_Buy_raw@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z$unwind$?_Buy_nonzero@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z$pdata$?_Buy_nonzero@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z$unwind$?_Tidy@?$vector@_KV?$allocator@_K@std@@@std@@AEAAXXZ$pdata$?_Tidy@?$vector@_KV?$allocator@_K@std@@@std@@AEAAXXZ$unwind$?_Xlength@?$vector@_KV?$allocator@_K@std@@@std@@CAXXZ$pdata$?_Xlength@?$vector@_KV?$allocator@_K@std@@@std@@CAXXZ$unwind$?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEAAAEAV?$allocator@_K@2@XZ$pdata$?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEAAAEAV?$allocator@_K@2@XZ$unwind$?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEBAAEBV?$allocator@_K@2@XZ$pdata$?_Getal@?$vector@_KV?$allocator@_K@std@@@std@@AEBAAEBV?$allocator@_K@2@XZ$unwind$?deallocate@?$allocator@I@std@@QEAAXQEAI_K@Z$pdata$?deallocate@?$allocator@I@std@@QEAAXQEAI_K@Z$unwind$?allocate@?$allocator@I@std@@QEAAPEAI_K@Z$pdata$?allocate@?$allocator@I@std@@QEAAPEAI_K@Z$unwind$??0?$vector@IV?$allocator@I@std@@@std@@QEAA@_KAEBV?$allocator@I@1@@Z$pdata$??0?$vector@IV?$allocator@I@std@@@std@@QEAA@_KAEBV?$allocator@I@1@@Z$unwind$??1?$vector@IV?$allocator@I@std@@@std@@QEAA@XZ$pdata$??1?$vector@IV?$allocator@I@std@@@std@@QEAA@XZ$unwind$?data@?$vector@IV?$allocator@I@std@@@std@@QEAAPEAIXZ$pdata$?data@?$vector@IV?$allocator@I@std@@@std@@QEAAPEAIXZ$unwind$?max_size@?$vector@IV?$allocator@I@std@@@std@@QEBA_KXZ$pdata$?max_size@?$vector@IV?$allocator@I@std@@@std@@QEBA_KXZ$unwind$??A?$vector@IV?$allocator@I@std@@@std@@QEAAAEAI_K@Z$pdata$??A?$vector@IV?$allocator@I@std@@@std@@QEAAAEAI_K@Z$unwind$?_Buy_raw@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z$pdata$?_Buy_raw@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z$unwind$?_Buy_nonzero@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z$pdata$?_Buy_nonzero@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z$unwind$?_Tidy@?$vector@IV?$allocator@I@std@@@std@@AEAAXXZ$pdata$?_Tidy@?$vector@IV?$allocator@I@std@@@std@@AEAAXXZ$unwind$?_Xlength@?$vector@IV?$allocator@I@std@@@std@@CAXXZ$pdata$?_Xlength@?$vector@IV?$allocator@I@std@@@std@@CAXXZ$unwind$?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEAAAEAV?$allocator@I@2@XZ$pdata$?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEAAAEAV?$allocator@I@2@XZ$unwind$?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEBAAEBV?$allocator@I@2@XZ$pdata$?_Getal@?$vector@IV?$allocator@I@std@@@std@@AEBAAEBV?$allocator@I@2@XZ$unwind$??$?0AEBV?$allocator@I@std@@$$V@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@I@1@@Z$pdata$??$?0AEBV?$allocator@I@std@@$$V@?$_Compressed_pair@V?$allocator@I@std@@V?$_Vector_val@U?$_Simple_types@I@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@I@1@@Z$unwind$??$_Construct_n@$$V@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z$pdata$??$_Construct_n@$$V@?$vector@IV?$allocator@I@std@@@std@@AEAAX_K@Z$unwind$??$?0AEBV?$allocator@_K@std@@$$V@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@_K@1@@Z$pdata$??$?0AEBV?$allocator@_K@std@@$$V@?$_Compressed_pair@V?$allocator@_K@std@@V?$_Vector_val@U?$_Simple_types@_K@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@_K@1@@Z$unwind$??$_Construct_n@$$V@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z$pdata$??$_Construct_n@$$V@?$vector@_KV?$allocator@_K@std@@@std@@AEAAX_K@Z$unwind$??$?0AEBV?$allocator@M@std@@$$V@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@M@1@@Z$pdata$??$?0AEBV?$allocator@M@std@@$$V@?$_Compressed_pair@V?$allocator@M@std@@V?$_Vector_val@U?$_Simple_types@M@std@@@2@$00@std@@QEAA@U_One_then_variadic_args_t@1@AEBV?$allocator@M@1@@Z$unwind$??$_Construct_n@$$V@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z$pdata$??$_Construct_n@$$V@?$vector@MV?$allocator@M@std@@@std@@AEAAX_K@Z$unwind$??1?$_Tidy_guard@V?$vector@IV?$allocator@I@std@@@std@@@std@@QEAA@XZ$pdata$??1?$_Tidy_guard@V?$vector@IV?$allocator@I@std@@@std@@@std@@QEAA@XZ$unwind$??$_Uninitialized_value_construct_n@V?$allocator@I@std@@@std@@YAPEAIPEAI_KAEAV?$allocator@I@0@@Z$pdata$??$_Uninitialized_value_construct_n@V?$allocator@I@std@@@std@@YAPEAIPEAI_KAEAV?$allocator@I@0@@Z$unwind$??1?$_Tidy_guard@V?$vector@_KV?$allocator@_K@std@@@std@@@std@@QEAA@XZ$pdata$??1?$_Tidy_guard@V?$vector@_KV?$allocator@_K@std@@@std@@@std@@QEAA@XZ$unwind$??$_Uninitialized_value_construct_n@V?$allocator@_K@std@@@std@@YAPEA_KPEA_K_KAEAV?$allocator@_K@0@@Z$pdata$??$_Uninitialized_value_construct_n@V?$allocator@_K@std@@@std@@YAPEA_KPEA_K_KAEAV?$allocator@_K@0@@Z$unwind$??1?$_Tidy_guard@V?$vector@MV?$allocator@M@std@@@std@@@std@@QEAA@XZ$pdata$??1?$_Tidy_guard@V?$vector@MV?$allocator@M@std@@@std@@@std@@QEAA@XZ$unwind$??$_Uninitialized_value_construct_n@V?$allocator@M@std@@@std@@YAPEAMPEAM_KAEAV?$allocator@M@0@@Z$pdata$??$_Uninitialized_value_construct_n@V?$allocator@M@std@@@std@@YAPEAMPEAM_KAEAV?$allocator@M@0@@Z$unwind$??$_Zero_range@PEAI@std@@YAPEAIQEAI0@Z$pdata$??$_Zero_range@PEAI@std@@YAPEAIQEAI0@Z$unwind$??1?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAA@XZ$pdata$??1?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAA@XZ$unwind$??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAAXXZ$pdata$??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@I@std@@@std@@QEAAXXZ$unwind$??$_Zero_range@PEA_K@std@@YAPEA_KQEA_K0@Z$pdata$??$_Zero_range@PEA_K@std@@YAPEA_KQEA_K0@Z$unwind$??1?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAA@XZ$pdata$??1?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAA@XZ$unwind$??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAAXXZ$pdata$??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@_K@std@@@std@@QEAAXXZ$unwind$??$_Zero_range@PEAM@std@@YAPEAMQEAM0@Z$pdata$??$_Zero_range@PEAM@std@@YAPEAMQEAM0@Z$unwind$??1?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAA@XZ$pdata$??1?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAA@XZ$unwind$??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAAXXZ$pdata$??$_Emplace_back@$$V@?$_Uninitialized_backout_al@V?$allocator@M@std@@@std@@QEAAXXZ$unwind$??$_Deallocate@$0BA@@std@@YAXPEAX_K@Z$pdata$??$_Deallocate@$0BA@@std@@YAXPEAX_K@Z$unwind$??$construct@I$$V@?$_Default_allocator_traits@V?$allocator@I@std@@@std@@SAXAEAV?$allocator@I@1@QEAI@Z$pdata$??$construct@I$$V@?$_Default_allocator_traits@V?$allocator@I@std@@@std@@SAXAEAV?$allocator@I@1@QEAI@Z$unwind$??$construct@_K$$V@?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@SAXAEAV?$allocator@_K@1@QEA_K@Z$pdata$??$construct@_K$$V@?$_Default_allocator_traits@V?$allocator@_K@std@@@std@@SAXAEAV?$allocator@_K@1@QEA_K@Z$unwind$??$construct@M$$V@?$_Default_allocator_traits@V?$allocator@M@std@@@std@@SAXAEAV?$allocator@M@1@QEAM@Z$pdata$??$construct@M$$V@?$_Default_allocator_traits@V?$allocator@M@std@@@std@@SAXAEAV?$allocator@M@1@QEAM@Z$unwind$??$_Allocate_at_least_helper@V?$allocator@I@std@@@std@@YAPEAIAEAV?$allocator@I@0@AEA_K@Z$pdata$??$_Allocate_at_least_helper@V?$allocator@I@std@@@std@@YAPEAIAEAV?$allocator@I@0@AEA_K@Z$unwind$??$_Max_limit@_J@std@@YA_JXZ$pdata$??$_Max_limit@_J@std@@YA_JXZ$unwind$??$min@_K@std@@YAAEB_KAEB_K0@Z$pdata$??$min@_K@std@@YAAEB_KAEB_K0@Z$unwind$??$_Allocate_at_least_helper@V?$allocator@_K@std@@@std@@YAPEA_KAEAV?$allocator@_K@0@AEA_K@Z$pdata$??$_Allocate_at_least_helper@V?$allocator@_K@std@@@std@@YAPEA_KAEAV?$allocator@_K@0@AEA_K@Z$unwind$??$_Allocate_at_least_helper@V?$allocator@M@std@@@std@@YAPEAMAEAV?$allocator@M@0@AEA_K@Z$pdata$??$_Allocate_at_least_helper@V?$allocator@M@std@@@std@@YAPEAMAEAV?$allocator@M@0@AEA_K@Z$unwind$??$_Get_size_of_n@$03@std@@YA_K_K@Z$pdata$??$_Get_size_of_n@$03@std@@YA_K_K@Z$unwind$??$_Allocate@$0BA@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z$pdata$??$_Allocate@$0BA@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z$unwind$??$_Get_size_of_n@$07@std@@YA_K_K@Z$pdata$??$_Get_size_of_n@$07@std@@YA_K_K@Z$unwind$??$_Allocate_manually_vector_aligned@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z$pdata$??$_Allocate_manually_vector_aligned@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z??_7exception@std@@6B@??_C@_0BC@EOODALEL@Unknown?5exception@??_7bad_alloc@std@@6B@??_7bad_array_new_length@std@@6B@??_C@_0BF@KINCDENJ@bad?5array?5new?5length@??_R0?AVexception@std@@@8_CT??_R0?AVexception@std@@@8??0exception@std@@QEAA@AEBV01@@Z24??_7type_info@@6B@_TI3?AVbad_array_new_length@std@@_CTA3?AVbad_array_new_length@std@@??_R0?AVbad_array_new_length@std@@@8_CT??_R0?AVbad_array_new_length@std@@@8??0bad_array_new_length@std@@QEAA@AEBV01@@Z24??_R0?AVbad_alloc@std@@@8_CT??_R0?AVbad_alloc@std@@@8??0bad_alloc@std@@QEAA@AEBV01@@Z24??_C@_0BA@FOIKENOD@vector?5too?5long@??_R4exception@std@@6B@??_R3exception@std@@8??_R2exception@std@@8??_R1A@?0A@EA@exception@std@@8??_R4bad_array_new_length@std@@6B@??_R3bad_array_new_length@std@@8??_R2bad_array_new_length@std@@8??_R1A@?0A@EA@bad_array_new_length@std@@8??_R1A@?0A@EA@bad_alloc@std@@8??_R3bad_alloc@std@@8??_R2bad_alloc@std@@8??_R4bad_alloc@std@@6B@__real@7f800000__security_cookie