-
Notifications
You must be signed in to change notification settings - Fork 0
/
symbols.txt
3649 lines (3640 loc) · 307 KB
/
symbols.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Microsoft (R) COFF/PE Dumper Version 14.00.24215.1
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file CPR_Framework_Debug.lib
File Type: LIBRARY
COFF SYMBOL TABLE
000 00CFECC2 ABS notype Static | @comp.id
001 80000191 ABS notype Static | @feat.00
002 00000000 SECT1 notype Static | .drectve
Section length 102, #relocs 0, #linenums 0, checksum 0
Relocation CRC 00000000
005 00000000 SECT2 notype Static | .debug$S
Section length A8BC, #relocs C, #linenums 0, checksum 0
Relocation CRC C8B4C27C
008 00000000 SECT3 notype Static | .debug$T
Section length 48, #relocs 0, #linenums 0, checksum 0
Relocation CRC 00000000
00B 00000000 SECT4 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
00E 00000000 SECT4 notype External | ?is_signed@?$numeric_limits@H@std@@2_NB (public: static bool const std::numeric_limits<int>::is_signed)
00F 00000000 SECT5 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 87A47C9, selection 2 (pick any)
Relocation CRC 00000000
012 00000000 SECT5 notype External | ?digits@?$numeric_limits@H@std@@2HB (public: static int const std::numeric_limits<int>::digits)
013 00000000 SECT6 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7D084F8A, selection 2 (pick any)
Relocation CRC 00000000
016 00000000 SECT6 notype External | ?digits10@?$numeric_limits@H@std@@2HB (public: static int const std::numeric_limits<int>::digits10)
017 00000000 SECT7 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
01A 00000000 SECT7 notype External | ?is_signed@?$numeric_limits@I@std@@2_NB (public: static bool const std::numeric_limits<unsigned int>::is_signed)
01B 00000000 SECT8 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A032AF3E, selection 2 (pick any)
Relocation CRC 00000000
01E 00000000 SECT8 notype External | ?digits@?$numeric_limits@I@std@@2HB (public: static int const std::numeric_limits<unsigned int>::digits)
01F 00000000 SECT9 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7D084F8A, selection 2 (pick any)
Relocation CRC 00000000
022 00000000 SECT9 notype External | ?digits10@?$numeric_limits@I@std@@2HB (public: static int const std::numeric_limits<unsigned int>::digits10)
023 00000000 SECTA notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
026 00000000 SECTA notype External | ?is_signed@?$numeric_limits@J@std@@2_NB (public: static bool const std::numeric_limits<long>::is_signed)
027 00000000 SECTB notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 87A47C9, selection 2 (pick any)
Relocation CRC 00000000
02A 00000000 SECTB notype External | ?digits@?$numeric_limits@J@std@@2HB (public: static int const std::numeric_limits<long>::digits)
02B 00000000 SECTC notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7D084F8A, selection 2 (pick any)
Relocation CRC 00000000
02E 00000000 SECTC notype External | ?digits10@?$numeric_limits@J@std@@2HB (public: static int const std::numeric_limits<long>::digits10)
02F 00000000 SECTD notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
032 00000000 SECTD notype External | ?is_signed@?$numeric_limits@K@std@@2_NB (public: static bool const std::numeric_limits<unsigned long>::is_signed)
033 00000000 SECTE notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A032AF3E, selection 2 (pick any)
Relocation CRC 00000000
036 00000000 SECTE notype External | ?digits@?$numeric_limits@K@std@@2HB (public: static int const std::numeric_limits<unsigned long>::digits)
037 00000000 SECTF notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
03A 00000000 SECTF notype External | ?value@?$integral_constant@I$0A@@std@@2IB (public: static unsigned int const std::integral_constant<unsigned int,0>::value)
03B 00000000 SECT10 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7D084F8A, selection 2 (pick any)
Relocation CRC 00000000
03E 00000000 SECT10 notype External | ?digits10@?$numeric_limits@K@std@@2HB (public: static int const std::numeric_limits<unsigned long>::digits10)
03F 00000000 SECT11 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
042 00000000 SECT11 notype External | ?is_signed@?$numeric_limits@_J@std@@2_NB (public: static bool const std::numeric_limits<__int64>::is_signed)
043 00000000 SECT12 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A848E8F7, selection 2 (pick any)
Relocation CRC 00000000
046 00000000 SECT12 notype External | ?digits@?$numeric_limits@_J@std@@2HB (public: static int const std::numeric_limits<__int64>::digits)
047 00000000 SECT13 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum FA109F14, selection 2 (pick any)
Relocation CRC 00000000
04A 00000000 SECT13 notype External | ?digits10@?$numeric_limits@_J@std@@2HB (public: static int const std::numeric_limits<__int64>::digits10)
04B 00000000 SECT14 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
04E 00000000 SECT14 notype External | ?is_signed@?$numeric_limits@_K@std@@2_NB (public: static bool const std::numeric_limits<unsigned __int64>::is_signed)
04F 00000000 SECT15 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 9B14583D, selection 2 (pick any)
Relocation CRC 00000000
052 00000000 SECT15 notype External | ?digits@?$numeric_limits@_K@std@@2HB (public: static int const std::numeric_limits<unsigned __int64>::digits)
053 00000000 SECT16 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 42ACF871, selection 2 (pick any)
Relocation CRC 00000000
056 00000000 SECT16 notype External | ?digits10@?$numeric_limits@_K@std@@2HB (public: static int const std::numeric_limits<unsigned __int64>::digits10)
057 00000000 SECT17 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 95AD7F70, selection 2 (pick any)
Relocation CRC 00000000
05A 00000000 SECT17 notype External | ?digits@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::digits)
05B 00000000 SECT18 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 256B5FDC, selection 2 (pick any)
Relocation CRC 00000000
05E 00000000 SECT18 notype External | ?digits10@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::digits10)
05F 00000000 SECT19 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7D084F8A, selection 2 (pick any)
Relocation CRC 00000000
062 00000000 SECT19 notype External | ?max_digits10@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::max_digits10)
063 00000000 SECT1A notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum ED59B63B, selection 2 (pick any)
Relocation CRC 00000000
066 00000000 SECT1A notype External | ?max_exponent@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::max_exponent)
067 00000000 SECT1B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8559F0E2, selection 2 (pick any)
Relocation CRC 00000000
06A 00000000 SECT1B notype External | ?max_exponent10@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::max_exponent10)
06B 00000000 SECT1C notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum FF523FC7, selection 2 (pick any)
Relocation CRC 00000000
06E 00000000 SECT1C notype External | ?min_exponent@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::min_exponent)
06F 00000000 SECT1D notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum F1EB188A, selection 2 (pick any)
Relocation CRC 00000000
072 00000000 SECT1D notype External | ?min_exponent10@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::min_exponent10)
073 00000000 SECT1E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum C7F50893, selection 2 (pick any)
Relocation CRC 00000000
076 00000000 SECT1E notype External | ?digits@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::digits)
077 00000000 SECT1F notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 58631056, selection 2 (pick any)
Relocation CRC 00000000
07A 00000000 SECT1F notype External | ?digits10@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::digits10)
07B 00000000 SECT20 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum E8A530FA, selection 2 (pick any)
Relocation CRC 00000000
07E 00000000 SECT20 notype External | ?max_digits10@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::max_digits10)
07F 00000000 SECT21 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 709A8DC, selection 2 (pick any)
Relocation CRC 00000000
082 00000000 SECT21 notype External | ?max_exponent@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::max_exponent)
083 00000000 SECT22 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7E8B05C1, selection 2 (pick any)
Relocation CRC 00000000
086 00000000 SECT22 notype External | ?max_exponent10@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::max_exponent10)
087 00000000 SECT23 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
08A 00000000 SECT23 notype External | ?value@?$integral_constant@_N$0A@@std@@2_NB (public: static bool const std::integral_constant<bool,0>::value)
08B 00000000 SECT24 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 104D37A5, selection 2 (pick any)
Relocation CRC 00000000
08E 00000000 SECT24 notype External | ?min_exponent@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::min_exponent)
08F 00000000 SECT25 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 855B7AFE, selection 2 (pick any)
Relocation CRC 00000000
092 00000000 SECT25 notype External | ?min_exponent10@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::min_exponent10)
093 00000000 SECT26 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
096 00000000 SECT26 notype External | ?value@?$integral_constant@_N$00@std@@2_NB (public: static bool const std::integral_constant<bool,1>::value)
097 00000000 SECT27 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum C7F50893, selection 2 (pick any)
Relocation CRC 00000000
09A 00000000 SECT27 notype External | ?digits@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::digits)
09B 00000000 SECT28 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 58631056, selection 2 (pick any)
Relocation CRC 00000000
09E 00000000 SECT28 notype External | ?digits10@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::digits10)
09F 00000000 SECT29 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum E8A530FA, selection 2 (pick any)
Relocation CRC 00000000
0A2 00000000 SECT29 notype External | ?max_digits10@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::max_digits10)
0A3 00000000 SECT2A notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 709A8DC, selection 2 (pick any)
Relocation CRC 00000000
0A6 00000000 SECT2A notype External | ?max_exponent@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::max_exponent)
0A7 00000000 SECT2B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7E8B05C1, selection 2 (pick any)
Relocation CRC 00000000
0AA 00000000 SECT2B notype External | ?max_exponent10@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::max_exponent10)
0AB 00000000 SECT2C notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 104D37A5, selection 2 (pick any)
Relocation CRC 00000000
0AE 00000000 SECT2C notype External | ?min_exponent@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::min_exponent)
0AF 00000000 SECT2D notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 855B7AFE, selection 2 (pick any)
Relocation CRC 00000000
0B2 00000000 SECT2D notype External | ?min_exponent10@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::min_exponent10)
0B3 00000000 SECT2E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0B6 00000000 SECT2E notype External | ?value@?$_Sizeof@U_Nil@std@@U12@U12@U12@U12@U12@U12@U12@@std@@2IB (public: static unsigned int const std::_Sizeof<struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil>::value)
0B7 00000000 SECT2F notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0BA 00000000 SECT2F notype External | ?has_denorm@_Num_base@std@@2W4float_denorm_style@2@B (public: static enum std::float_denorm_style const std::_Num_base::has_denorm)
0BB 00000000 SECT30 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0BE 00000000 SECT30 notype External | ?has_denorm_loss@_Num_base@std@@2_NB (public: static bool const std::_Num_base::has_denorm_loss)
0BF 00000000 SECT31 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0C2 00000000 SECT31 notype External | ?has_infinity@_Num_base@std@@2_NB (public: static bool const std::_Num_base::has_infinity)
0C3 00000000 SECT32 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0C6 00000000 SECT32 notype External | ?has_quiet_NaN@_Num_base@std@@2_NB (public: static bool const std::_Num_base::has_quiet_NaN)
0C7 00000000 SECT33 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0CA 00000000 SECT33 notype External | ?has_signaling_NaN@_Num_base@std@@2_NB (public: static bool const std::_Num_base::has_signaling_NaN)
0CB 00000000 SECT34 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0CE 00000000 SECT34 notype External | ?is_bounded@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_bounded)
0CF 00000000 SECT35 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0D2 00000000 SECT35 notype External | ?is_exact@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_exact)
0D3 00000000 SECT36 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0D6 00000000 SECT36 notype External | ?is_iec559@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_iec559)
0D7 00000000 SECT37 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0DA 00000000 SECT37 notype External | ?is_integer@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_integer)
0DB 00000000 SECT38 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0DE 00000000 SECT38 notype External | ?is_modulo@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_modulo)
0DF 00000000 SECT39 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0E2 00000000 SECT39 notype External | ?is_signed@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_signed)
0E3 00000000 SECT3A notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0E6 00000000 SECT3A notype External | ?is_specialized@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_specialized)
0E7 00000000 SECT3B notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0EA 00000000 SECT3B notype External | ?tinyness_before@_Num_base@std@@2_NB (public: static bool const std::_Num_base::tinyness_before)
0EB 00000000 SECT3C notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0EE 00000000 SECT3C notype External | ?traps@_Num_base@std@@2_NB (public: static bool const std::_Num_base::traps)
0EF 00000000 SECT3D notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0F2 00000000 SECT3D notype External | ?round_style@_Num_base@std@@2W4float_round_style@2@B (public: static enum std::float_round_style const std::_Num_base::round_style)
0F3 00000000 SECT3E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0F6 00000000 SECT3E notype External | ?digits@_Num_base@std@@2HB (public: static int const std::_Num_base::digits)
0F7 00000000 SECT3F notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0FA 00000000 SECT3F notype External | ?digits10@_Num_base@std@@2HB (public: static int const std::_Num_base::digits10)
0FB 00000000 SECT40 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0FE 00000000 SECT40 notype External | ?max_digits10@_Num_base@std@@2HB (public: static int const std::_Num_base::max_digits10)
0FF 00000000 SECT41 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
102 00000000 SECT41 notype External | ?max_exponent@_Num_base@std@@2HB (public: static int const std::_Num_base::max_exponent)
103 00000000 SECT42 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
106 00000000 SECT42 notype External | ?max_exponent10@_Num_base@std@@2HB (public: static int const std::_Num_base::max_exponent10)
107 00000000 SECT43 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
10A 00000000 SECT43 notype External | ?min_exponent@_Num_base@std@@2HB (public: static int const std::_Num_base::min_exponent)
10B 00000000 SECT44 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
10E 00000000 SECT44 notype External | ?min_exponent10@_Num_base@std@@2HB (public: static int const std::_Num_base::min_exponent10)
10F 00000000 SECT45 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
112 00000000 SECT45 notype External | ?radix@_Num_base@std@@2HB (public: static int const std::_Num_base::radix)
113 00000000 SECT46 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
116 00000000 SECT46 notype External | ?is_bounded@_Num_int_base@std@@2_NB (public: static bool const std::_Num_int_base::is_bounded)
117 00000000 SECT47 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
11A 00000000 SECT47 notype External | ?is_exact@_Num_int_base@std@@2_NB (public: static bool const std::_Num_int_base::is_exact)
11B 00000000 SECT48 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
11E 00000000 SECT48 notype External | ?is_integer@_Num_int_base@std@@2_NB (public: static bool const std::_Num_int_base::is_integer)
11F 00000000 SECT49 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
122 00000000 SECT49 notype External | ?is_modulo@_Num_int_base@std@@2_NB (public: static bool const std::_Num_int_base::is_modulo)
123 00000000 SECT4A notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
126 00000000 SECT4A notype External | ?is_specialized@_Num_int_base@std@@2_NB (public: static bool const std::_Num_int_base::is_specialized)
127 00000000 SECT4B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
12A 00000000 SECT4B notype External | ?radix@_Num_int_base@std@@2HB (public: static int const std::_Num_int_base::radix)
12B 00000000 SECT4C notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
12E 00000000 SECT4C notype External | ?has_denorm@_Num_float_base@std@@2W4float_denorm_style@2@B (public: static enum std::float_denorm_style const std::_Num_float_base::has_denorm)
12F 00000000 SECT4D notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
132 00000000 SECT4D notype External | ?has_denorm_loss@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::has_denorm_loss)
133 00000000 SECT4E notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
136 00000000 SECT4E notype External | ?has_infinity@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::has_infinity)
137 00000000 SECT4F notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
13A 00000000 SECT4F notype External | ?has_quiet_NaN@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::has_quiet_NaN)
13B 00000000 SECT50 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
13E 00000000 SECT50 notype External | ?has_signaling_NaN@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::has_signaling_NaN)
13F 00000000 SECT51 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
142 00000000 SECT51 notype External | ?is_bounded@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::is_bounded)
143 00000000 SECT52 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
146 00000000 SECT52 notype External | ?is_exact@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::is_exact)
147 00000000 SECT53 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
14A 00000000 SECT53 notype External | ?is_iec559@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::is_iec559)
14B 00000000 SECT54 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
14E 00000000 SECT54 notype External | ?is_integer@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::is_integer)
14F 00000000 SECT55 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
152 00000000 SECT55 notype External | ?is_modulo@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::is_modulo)
153 00000000 SECT56 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
156 00000000 SECT56 notype External | ?is_signed@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::is_signed)
157 00000000 SECT57 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
15A 00000000 SECT57 notype External | ?is_specialized@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::is_specialized)
15B 00000000 SECT58 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
15E 00000000 SECT58 notype External | ?tinyness_before@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::tinyness_before)
15F 00000000 SECT59 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
162 00000000 SECT59 notype External | ?traps@_Num_float_base@std@@2_NB (public: static bool const std::_Num_float_base::traps)
163 00000000 SECT5A notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
166 00000000 SECT5A notype External | ?round_style@_Num_float_base@std@@2W4float_round_style@2@B (public: static enum std::float_round_style const std::_Num_float_base::round_style)
167 00000000 SECT5B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
16A 00000000 SECT5B notype External | ?radix@_Num_float_base@std@@2HB (public: static int const std::_Num_float_base::radix)
16B 00000000 SECT5C notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
16E 00000000 SECT5C notype External | ?is_signed@?$numeric_limits@D@std@@2_NB (public: static bool const std::numeric_limits<char>::is_signed)
16F 00000000 SECT5D notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 9DD738B9, selection 2 (pick any)
Relocation CRC 00000000
172 00000000 SECT5D notype External | ?digits@?$numeric_limits@D@std@@2HB (public: static int const std::numeric_limits<char>::digits)
173 00000000 SECT5E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
176 00000000 SECT5E notype External | ?digits10@?$numeric_limits@D@std@@2HB (public: static int const std::numeric_limits<char>::digits10)
177 00000000 SECT5F notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
17A 00000000 SECT5F notype External | ?is_signed@?$numeric_limits@_W@std@@2_NB (public: static bool const std::numeric_limits<wchar_t>::is_signed)
17B 00000000 SECT60 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 5019579F, selection 2 (pick any)
Relocation CRC 00000000
17E 00000000 SECT60 notype External | ?digits@?$numeric_limits@_W@std@@2HB (public: static int const std::numeric_limits<wchar_t>::digits)
17F 00000000 SECT61 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8F629757, selection 2 (pick any)
Relocation CRC 00000000
182 00000000 SECT61 notype External | ?digits10@?$numeric_limits@_W@std@@2HB (public: static int const std::numeric_limits<wchar_t>::digits10)
183 00000000 SECT62 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
186 00000000 SECT62 notype External | ?is_modulo@?$numeric_limits@_N@std@@2_NB (public: static bool const std::numeric_limits<bool>::is_modulo)
187 00000000 SECT63 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
18A 00000000 SECT63 notype External | ?is_signed@?$numeric_limits@_N@std@@2_NB (public: static bool const std::numeric_limits<bool>::is_signed)
18B 00000000 SECT64 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
18E 00000000 SECT64 notype External | ?digits@?$numeric_limits@_N@std@@2HB (public: static int const std::numeric_limits<bool>::digits)
18F 00000000 SECT65 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
192 00000000 SECT65 notype External | ?digits10@?$numeric_limits@_N@std@@2HB (public: static int const std::numeric_limits<bool>::digits10)
193 00000000 SECT66 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
196 00000000 SECT66 notype External | ?value@?$_Sizeof@HU_Nil@std@@U12@U12@U12@U12@U12@U12@@std@@2IB (public: static unsigned int const std::_Sizeof<int,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil>::value)
197 00000000 SECT67 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
19A 00000000 SECT67 notype External | ?is_signed@?$numeric_limits@C@std@@2_NB (public: static bool const std::numeric_limits<signed char>::is_signed)
19B 00000000 SECT68 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 9DD738B9, selection 2 (pick any)
Relocation CRC 00000000
19E 00000000 SECT68 notype External | ?digits@?$numeric_limits@C@std@@2HB (public: static int const std::numeric_limits<signed char>::digits)
19F 00000000 SECT69 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
1A2 00000000 SECT69 notype External | ?digits10@?$numeric_limits@C@std@@2HB (public: static int const std::numeric_limits<signed char>::digits10)
1A3 00000000 SECT6A notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
1A6 00000000 SECT6A notype External | ?is_signed@?$numeric_limits@E@std@@2_NB (public: static bool const std::numeric_limits<unsigned char>::is_signed)
1A7 00000000 SECT6B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum C5B428EF, selection 2 (pick any)
Relocation CRC 00000000
1AA 00000000 SECT6B notype External | ?digits@?$numeric_limits@E@std@@2HB (public: static int const std::numeric_limits<unsigned char>::digits)
1AB 00000000 SECT6C notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
1AE 00000000 SECT6C notype External | ?digits10@?$numeric_limits@E@std@@2HB (public: static int const std::numeric_limits<unsigned char>::digits10)
1AF 00000000 SECT6D notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
1B2 00000000 SECT6D notype External | ?is_signed@?$numeric_limits@F@std@@2_NB (public: static bool const std::numeric_limits<short>::is_signed)
1B3 00000000 SECT6E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 58631056, selection 2 (pick any)
Relocation CRC 00000000
1B6 00000000 SECT6E notype External | ?digits@?$numeric_limits@F@std@@2HB (public: static int const std::numeric_limits<short>::digits)
1B7 00000000 SECT6F notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8F629757, selection 2 (pick any)
Relocation CRC 00000000
1BA 00000000 SECT6F notype External | ?digits10@?$numeric_limits@F@std@@2HB (public: static int const std::numeric_limits<short>::digits10)
1BB 00000000 SECT70 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
1BE 00000000 SECT70 notype External | ?is_signed@?$numeric_limits@G@std@@2_NB (public: static bool const std::numeric_limits<unsigned short>::is_signed)
1BF 00000000 SECT71 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 5019579F, selection 2 (pick any)
Relocation CRC 00000000
1C2 00000000 SECT71 notype External | ?digits@?$numeric_limits@G@std@@2HB (public: static int const std::numeric_limits<unsigned short>::digits)
1C3 00000000 SECT72 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8F629757, selection 2 (pick any)
Relocation CRC 00000000
1C6 00000000 SECT72 notype External | ?digits10@?$numeric_limits@G@std@@2HB (public: static int const std::numeric_limits<unsigned short>::digits10)
1C7 00000000 SECT73 notype Static | .text
Section length 2D, #relocs 0, #linenums 0, checksum A0E85A9F, selection 2 (pick any)
Relocation CRC 8BC1E9F6
1CA 00000000 SECT74 notype Static | .debug$S
Section length D4, #relocs 5, #linenums 0, checksum 0, selection 5 (pick associative Section 0x73)
Relocation CRC 2D906975
1CD 00000000 SECT75 notype Static | .text
Section length 36, #relocs 0, #linenums 0, checksum 1F033680, selection 1 (pick no duplicates)
Relocation CRC 124039D2
1D0 00000000 SECT76 notype Static | .debug$S
Section length D0, #relocs 5, #linenums 0, checksum 0, selection 5 (pick associative Section 0x75)
Relocation CRC F0921FBA
1D3 00000000 SECT77 notype Static | .text
Section length 63, #relocs 2, #linenums 0, checksum BDE769B1, selection 1 (pick no duplicates)
Relocation CRC D75A5CDC
1D6 00000000 SECT78 notype Static | .debug$S
Section length F8, #relocs 7, #linenums 0, checksum 0, selection 5 (pick associative Section 0x77)
Relocation CRC BED325D3
1D9 00000000 SECT79 notype Static | .text
Section length A1, #relocs 9, #linenums 0, checksum CC286928, selection 2 (pick any)
Relocation CRC FB4E47EF
1DC 00000000 SECT7A notype Static | .debug$S
Section length 14C, #relocs B, #linenums 0, checksum 0, selection 5 (pick associative Section 0x79)
Relocation CRC 30160BC8
1DF 00000000 SECT7B notype Static | .text$yc
Section length 2D, #relocs 0, #linenums 0, checksum 1F5A8B71, selection 2 (pick any)
Relocation CRC BE970FAC
1E2 00000000 SECT7C notype Static | .debug$S
Section length D8, #relocs 5, #linenums 0, checksum 0, selection 5 (pick associative Section 0x7B)
Relocation CRC 94C7D779
1E5 00000000 SECT7D notype Static | .text$yc
Section length 2D, #relocs 0, #linenums 0, checksum 1F5A8B71, selection 2 (pick any)
Relocation CRC 5FD68408
1E8 00000000 SECT7E notype Static | .debug$S
Section length E0, #relocs 5, #linenums 0, checksum 0, selection 5 (pick associative Section 0x7D)
Relocation CRC 9EA4D6AB
1EB 00000000 SECT7F notype Static | .text
Section length 11F, #relocs B, #linenums 0, checksum FB186EB5, selection 1 (pick no duplicates)
Relocation CRC C9B929F6
1EE 00000000 SECT80 notype Static | .debug$S
Section length 1E4, #relocs 11, #linenums 0, checksum 0, selection 5 (pick associative Section 0x7F)
Relocation CRC A9AB6733
1F1 00000000 SECT81 notype Static | .text$x
Section length 2C, #relocs 4, #linenums 0, checksum FEAD2A62, selection 5 (pick associative Section 0x7F)
Relocation CRC FEE0D4A4
1F4 00000000 SECT82 notype Static | .text
Section length 2A1, #relocs 22, #linenums 0, checksum 5699A832, selection 1 (pick no duplicates)
Relocation CRC 9C939A02
1F7 00000000 SECT83 notype Static | .debug$S
Section length 2B8, #relocs 1D, #linenums 0, checksum 0, selection 5 (pick associative Section 0x82)
Relocation CRC C5FE9FAD
1FA 00000000 UNDEF notype () External | ??2@YAPAXI@Z (void * __cdecl operator new(unsigned int))
1FB 00000000 UNDEF notype () External | ??3@YAXPAX@Z (void __cdecl operator delete(void *))
1FC 00000000 SECT73 notype () External | ??0D3DXMATRIX@@QAE@XZ (public: __thiscall D3DXMATRIX::D3DXMATRIX(void))
1FD 00000000 SECT79 notype () External | ??DD3DXMATRIX@@QBE?AU0@ABU0@@Z (public: struct D3DXMATRIX __thiscall D3DXMATRIX::operator*(struct D3DXMATRIX const &)const )
1FE 00000000 UNDEF notype () External | _D3DXMatrixMultiply@12
1FF 00000000 UNDEF notype () External | _D3DXMatrixScaling@16
200 00000000 UNDEF notype () External | _D3DXMatrixTranslation@16
201 00000000 UNDEF notype () External | _D3DXMatrixRotationYawPitchRoll@16
202 00000000 UNDEF notype () External | _D3DXLoadMeshFromXA@32
203 00000000 SECT7D notype () Static | ??__Epiecewise_construct@std@@YAXXZ (void __cdecl std::`dynamic initializer for 'piecewise_construct''(void))
204 00000000 SECT7B notype () Static | ??__Eallocator_arg@std@@YAXXZ (void __cdecl std::`dynamic initializer for 'allocator_arg''(void))
205 00000000 SECT75 notype () External | ??0Mesh@@IAE@XZ (protected: __thiscall Mesh::Mesh(void))
206 00000000 SECT77 notype () External | ??1Mesh@@QAE@XZ (public: __thiscall Mesh::~Mesh(void))
207 00000000 SECT7F notype () External | ?LoadFromFile@Mesh@@SAPAV1@QAD@Z (public: static class Mesh * __cdecl Mesh::LoadFromFile(char * const))
208 00000000 SECT82 notype () External | ?Render@Mesh@@QAEXABUD3DXVECTOR3@@00UD3DXVECTOR4@@@Z (public: void __thiscall Mesh::Render(struct D3DXVECTOR3 const &,struct D3DXVECTOR3 const &,struct D3DXVECTOR3 const &,struct D3DXVECTOR4))
209 00000000 UNDEF notype () External | @_RTC_CheckStackVars@8
20A 00000000 UNDEF notype () External | @__security_check_cookie@4
20B 00000000 UNDEF notype () External | __RTC_CheckEsp
20C 00000000 UNDEF notype () External | __RTC_InitBase
20D 00000000 UNDEF notype () External | __RTC_Shutdown
20E 00000000 UNDEF notype () External | ___CxxFrameHandler3
20F 00000088 SECT79 notype Static | $LN5
210 00000090 SECT79 notype Static | $LN4
211 0000009C SECT79 notype Static | $LN3
212 0000000E SECT81 notype () Static | __ehhandler$?LoadFromFile@Mesh@@SAPAV1@QAD@Z
213 00000000 SECT84 notype Static | .sxdata
Section length 4, #relocs 0, #linenums 0, checksum F9944B7A
Relocation CRC 00000000
216 00000100 SECT7F notype Static | $LN10
217 00000108 SECT7F notype Static | $LN9
218 00000114 SECT7F notype Static | $LN7
219 00000000 SECT81 notype () Static | __unwindfunclet$?LoadFromFile@Mesh@@SAPAV1@QAD@Z$0
21A 00000244 SECT82 notype Static | $LN11
21B 0000024C SECT82 notype Static | $LN10
21C 0000029A SECT82 notype Static | $LN6
21D 00000290 SECT82 notype Static | $LN7
21E 00000283 SECT82 notype Static | $LN8
21F 0000027C SECT82 notype Static | $LN9
220 00000000 SECT85 notype Static | .xdata$x
Section length 2C, #relocs 2, #linenums 0, checksum A7F7E1EC, selection 5 (pick associative Section 0x7F)
Relocation CRC 877C61A4
223 00000008 SECT85 notype Static | __ehfuncinfo$?LoadFromFile@Mesh@@SAPAV1@QAD@Z
224 00000000 SECT85 notype Static | __unwindtable$?LoadFromFile@Mesh@@SAPAV1@QAD@Z
225 00000000 SECT86 notype Static | .bss
Section length 2, #relocs 0, #linenums 0, checksum 0
Relocation CRC 00000000
228 00000001 SECT86 notype Static | _piecewise_construct
229 00000000 SECT86 notype Static | _allocator_arg
22A 00000000 UNDEF notype External | ?g_pDevice@@3PAUIDirect3DDevice9@@A (struct IDirect3DDevice9 * g_pDevice)
22B 00000000 UNDEF notype External | ?g_pEffect@@3PAUID3DXEffect@@A (struct ID3DXEffect * g_pEffect)
22C 00000000 SECT87 notype Static | .rdata
Section length 5, #relocs 0, #linenums 0, checksum 443A2885, selection 2 (pick any)
Relocation CRC 00000000
22F 00000000 SECT87 notype External | ??_C@_04HNOHCAGH@matW?$AA@ (`string')
230 00000000 SECT88 notype Static | .rdata
Section length 6, #relocs 0, #linenums 0, checksum BA7042BA, selection 2 (pick any)
Relocation CRC 00000000
233 00000000 SECT88 notype External | ??_C@_05PEENBMOG@color?$AA@ (`string')
234 00000000 SECT89 notype Static | .rtc$IMZ
Section length 4, #relocs 1, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 5D907A9E
237 00000000 SECT89 notype Static | __RTC_InitBase.rtc$IMZ
238 00000000 SECT8A notype Static | .rtc$TMZ
Section length 4, #relocs 1, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 4C2E11CC
23B 00000000 SECT8A notype Static | __RTC_Shutdown.rtc$TMZ
23C 00000000 UNDEF notype External | ___security_cookie
23D 00000000 UNDEF notype External | __fltused
23E 00000000 SECT8B notype Static | .CRT$XCU
Section length 8, #relocs 2, #linenums 0, checksum 0
Relocation CRC 905E06DC
241 00000000 SECT8B notype Static | _piecewise_construct$initializer$
242 00000004 SECT8B notype Static | _allocator_arg$initializer$
String Table Size = 0x14C0 bytes
COFF SYMBOL TABLE
000 00CFECC2 ABS notype Static | @comp.id
001 80000191 ABS notype Static | @feat.00
002 00000000 SECT1 notype Static | .drectve
Section length 1F2, #relocs 0, #linenums 0, checksum 0
Relocation CRC 00000000
005 00000000 SECT2 notype Static | .debug$S
Section length DB44, #relocs 22, #linenums 0, checksum 0
Relocation CRC 1DFEB689
008 00000000 SECT3 notype Static | .debug$T
Section length 48, #relocs 0, #linenums 0, checksum 0
Relocation CRC 00000000
00B 00000000 SECT4 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
00E 00000000 SECT4 notype External | ?is_signed@?$numeric_limits@K@std@@2_NB (public: static bool const std::numeric_limits<unsigned long>::is_signed)
00F 00000000 SECT5 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A032AF3E, selection 2 (pick any)
Relocation CRC 00000000
012 00000000 SECT5 notype External | ?digits@?$numeric_limits@K@std@@2HB (public: static int const std::numeric_limits<unsigned long>::digits)
013 00000000 SECT6 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7D084F8A, selection 2 (pick any)
Relocation CRC 00000000
016 00000000 SECT6 notype External | ?digits10@?$numeric_limits@K@std@@2HB (public: static int const std::numeric_limits<unsigned long>::digits10)
017 00000000 SECT7 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
01A 00000000 SECT7 notype External | ?is_signed@?$numeric_limits@_J@std@@2_NB (public: static bool const std::numeric_limits<__int64>::is_signed)
01B 00000000 SECT8 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A848E8F7, selection 2 (pick any)
Relocation CRC 00000000
01E 00000000 SECT8 notype External | ?digits@?$numeric_limits@_J@std@@2HB (public: static int const std::numeric_limits<__int64>::digits)
01F 00000000 SECT9 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum FA109F14, selection 2 (pick any)
Relocation CRC 00000000
022 00000000 SECT9 notype External | ?digits10@?$numeric_limits@_J@std@@2HB (public: static int const std::numeric_limits<__int64>::digits10)
023 00000000 SECTA notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
026 00000000 SECTA notype External | ?is_signed@?$numeric_limits@_K@std@@2_NB (public: static bool const std::numeric_limits<unsigned __int64>::is_signed)
027 00000000 SECTB notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 9B14583D, selection 2 (pick any)
Relocation CRC 00000000
02A 00000000 SECTB notype External | ?digits@?$numeric_limits@_K@std@@2HB (public: static int const std::numeric_limits<unsigned __int64>::digits)
02B 00000000 SECTC notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 42ACF871, selection 2 (pick any)
Relocation CRC 00000000
02E 00000000 SECTC notype External | ?digits10@?$numeric_limits@_K@std@@2HB (public: static int const std::numeric_limits<unsigned __int64>::digits10)
02F 00000000 SECTD notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 95AD7F70, selection 2 (pick any)
Relocation CRC 00000000
032 00000000 SECTD notype External | ?digits@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::digits)
033 00000000 SECTE notype Static | .bss
Section length EC, #relocs 0, #linenums 0, checksum 0
Relocation CRC 00000000
036 00000000 SECTE notype External | ?g_pDevice@@3PAUIDirect3DDevice9@@A (struct IDirect3DDevice9 * g_pDevice)
037 00000000 SECTF notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 256B5FDC, selection 2 (pick any)
Relocation CRC 00000000
03A 00000000 SECTF notype External | ?digits10@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::digits10)
03B 00000004 SECTE notype External | ?g_pSprite@@3PAUID3DXSprite@@A (struct ID3DXSprite * g_pSprite)
03C 00000008 SECTE notype External | ?g_pFont@@3PAUID3DXFont@@A (struct ID3DXFont * g_pFont)
03D 0000000C SECTE notype External | ?g_pEffect@@3PAUID3DXEffect@@A (struct ID3DXEffect * g_pEffect)
03E 00000000 SECT10 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7D084F8A, selection 2 (pick any)
Relocation CRC 00000000
041 00000000 SECT10 notype External | ?max_digits10@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::max_digits10)
042 00000000 SECT11 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum ED59B63B, selection 2 (pick any)
Relocation CRC 00000000
045 00000000 SECT11 notype External | ?max_exponent@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::max_exponent)
046 00000000 SECT12 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8559F0E2, selection 2 (pick any)
Relocation CRC 00000000
049 00000000 SECT12 notype External | ?max_exponent10@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::max_exponent10)
04A 00000000 SECT13 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum FF523FC7, selection 2 (pick any)
Relocation CRC 00000000
04D 00000000 SECT13 notype External | ?min_exponent@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::min_exponent)
04E 00000000 SECT14 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
051 00000000 SECT14 notype External | ?value@?$integral_constant@I$0A@@std@@2IB (public: static unsigned int const std::integral_constant<unsigned int,0>::value)
052 00000000 SECT15 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum F1EB188A, selection 2 (pick any)
Relocation CRC 00000000
055 00000000 SECT15 notype External | ?min_exponent10@?$numeric_limits@M@std@@2HB (public: static int const std::numeric_limits<float>::min_exponent10)
056 00000000 SECT16 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum C7F50893, selection 2 (pick any)
Relocation CRC 00000000
059 00000000 SECT16 notype External | ?digits@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::digits)
05A 00000000 SECT17 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 58631056, selection 2 (pick any)
Relocation CRC 00000000
05D 00000000 SECT17 notype External | ?digits10@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::digits10)
05E 00000000 SECT18 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum E8A530FA, selection 2 (pick any)
Relocation CRC 00000000
061 00000000 SECT18 notype External | ?max_digits10@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::max_digits10)
062 00000000 SECT19 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 709A8DC, selection 2 (pick any)
Relocation CRC 00000000
065 00000000 SECT19 notype External | ?max_exponent@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::max_exponent)
066 00000000 SECT1A notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7E8B05C1, selection 2 (pick any)
Relocation CRC 00000000
069 00000000 SECT1A notype External | ?max_exponent10@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::max_exponent10)
06A 00000000 SECT1B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 104D37A5, selection 2 (pick any)
Relocation CRC 00000000
06D 00000000 SECT1B notype External | ?min_exponent@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::min_exponent)
06E 00000000 SECT1C notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 855B7AFE, selection 2 (pick any)
Relocation CRC 00000000
071 00000000 SECT1C notype External | ?min_exponent10@?$numeric_limits@N@std@@2HB (public: static int const std::numeric_limits<double>::min_exponent10)
072 00000000 SECT1D notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
075 00000000 SECT1D notype External | ?skipws@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::skipws)
076 00000000 SECT1E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
079 00000000 SECT1E notype External | ?unitbuf@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::unitbuf)
07A 00000000 SECT1F notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8F629757, selection 2 (pick any)
Relocation CRC 00000000
07D 00000000 SECT1F notype External | ?uppercase@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::uppercase)
07E 00000000 SECT20 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum C5B428EF, selection 2 (pick any)
Relocation CRC 00000000
081 00000000 SECT20 notype External | ?showbase@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::showbase)
082 00000000 SECT21 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 5019579F, selection 2 (pick any)
Relocation CRC 00000000
085 00000000 SECT21 notype External | ?showpoint@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::showpoint)
086 00000000 SECT22 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A032AF3E, selection 2 (pick any)
Relocation CRC 00000000
089 00000000 SECT22 notype External | ?showpos@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::showpos)
08A 00000000 SECT23 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 9B14583D, selection 2 (pick any)
Relocation CRC 00000000
08D 00000000 SECT23 notype External | ?left@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::left)
08E 00000000 SECT24 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum C7F50893, selection 2 (pick any)
Relocation CRC 00000000
091 00000000 SECT24 notype External | ?digits@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::digits)
092 00000000 SECT25 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum ED59B63B, selection 2 (pick any)
Relocation CRC 00000000
095 00000000 SECT25 notype External | ?right@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::right)
096 00000000 SECT26 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 1C26A37, selection 2 (pick any)
Relocation CRC 00000000
099 00000000 SECT26 notype External | ?internal@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::internal)
09A 00000000 SECT27 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 58631056, selection 2 (pick any)
Relocation CRC 00000000
09D 00000000 SECT27 notype External | ?digits10@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::digits10)
09E 00000000 SECT28 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 384D46E, selection 2 (pick any)
Relocation CRC 00000000
0A1 00000000 SECT28 notype External | ?dec@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::dec)
0A2 00000000 SECT29 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum E8A530FA, selection 2 (pick any)
Relocation CRC 00000000
0A5 00000000 SECT29 notype External | ?max_digits10@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::max_digits10)
0A6 00000000 SECT2A notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 709A8DC, selection 2 (pick any)
Relocation CRC 00000000
0A9 00000000 SECT2A notype External | ?oct@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::oct)
0AA 00000000 SECT2B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 709A8DC, selection 2 (pick any)
Relocation CRC 00000000
0AD 00000000 SECT2B notype External | ?max_exponent@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::max_exponent)
0AE 00000000 SECT2C notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum E1351B8, selection 2 (pick any)
Relocation CRC 00000000
0B1 00000000 SECT2C notype External | ?hex@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::hex)
0B2 00000000 SECT2D notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 7E8B05C1, selection 2 (pick any)
Relocation CRC 00000000
0B5 00000000 SECT2D notype External | ?max_exponent10@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::max_exponent10)
0B6 00000000 SECT2E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 1C26A370, selection 2 (pick any)
Relocation CRC 00000000
0B9 00000000 SECT2E notype External | ?scientific@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::scientific)
0BA 00000000 SECT2F notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 384D46E0, selection 2 (pick any)
Relocation CRC 00000000
0BD 00000000 SECT2F notype External | ?fixed@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::fixed)
0BE 00000000 SECT30 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 104D37A5, selection 2 (pick any)
Relocation CRC 00000000
0C1 00000000 SECT30 notype External | ?min_exponent@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::min_exponent)
0C2 00000000 SECT31 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 246BE590, selection 2 (pick any)
Relocation CRC 00000000
0C5 00000000 SECT31 notype External | ?hexfloat@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::hexfloat)
0C6 00000000 SECT32 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 855B7AFE, selection 2 (pick any)
Relocation CRC 00000000
0C9 00000000 SECT32 notype External | ?min_exponent10@?$numeric_limits@O@std@@2HB (public: static int const std::numeric_limits<long double>::min_exponent10)
0CA 00000000 SECT33 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0CD 00000000 SECT33 notype External | ?value@?$integral_constant@_N$0A@@std@@2_NB (public: static bool const std::integral_constant<bool,0>::value)
0CE 00000000 SECT34 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 709A8DC0, selection 2 (pick any)
Relocation CRC 00000000
0D1 00000000 SECT34 notype External | ?boolalpha@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::boolalpha)
0D2 00000000 SECT35 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum E1351B80, selection 2 (pick any)
Relocation CRC 00000000
0D5 00000000 SECT35 notype External | ?_Stdio@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::_Stdio)
0D6 00000000 SECT36 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 778F8431, selection 2 (pick any)
Relocation CRC 00000000
0D9 00000000 SECT36 notype External | ?adjustfield@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::adjustfield)
0DA 00000000 SECT37 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A9E2D0A, selection 2 (pick any)
Relocation CRC 00000000
0DD 00000000 SECT37 notype External | ?basefield@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::basefield)
0DE 00000000 SECT38 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 246BE590, selection 2 (pick any)
Relocation CRC 00000000
0E1 00000000 SECT38 notype External | ?floatfield@?$_Iosb@H@std@@2W4_Fmtflags@12@B (public: static enum std::_Iosb<int>::_Fmtflags const std::_Iosb<int>::floatfield)
0E2 00000000 SECT39 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 77073096, selection 2 (pick any)
Relocation CRC 00000000
0E5 00000000 SECT39 notype External | ?value@?$integral_constant@_N$00@std@@2_NB (public: static bool const std::integral_constant<bool,1>::value)
0E6 00000000 SECT3A notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
0E9 00000000 SECT3A notype External | ?goodbit@?$_Iosb@H@std@@2W4_Iostate@12@B (public: static enum std::_Iosb<int>::_Iostate const std::_Iosb<int>::goodbit)
0EA 00000000 SECT3B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
0ED 00000000 SECT3B notype External | ?eofbit@?$_Iosb@H@std@@2W4_Iostate@12@B (public: static enum std::_Iosb<int>::_Iostate const std::_Iosb<int>::eofbit)
0EE 00000000 SECT3C notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
0F1 00000000 SECT3C notype External | ?failbit@?$_Iosb@H@std@@2W4_Iostate@12@B (public: static enum std::_Iosb<int>::_Iostate const std::_Iosb<int>::failbit)
0F2 00000000 SECT3D notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8F629757, selection 2 (pick any)
Relocation CRC 00000000
0F5 00000000 SECT3D notype External | ?badbit@?$_Iosb@H@std@@2W4_Iostate@12@B (public: static enum std::_Iosb<int>::_Iostate const std::_Iosb<int>::badbit)
0F6 00000000 SECT3E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 5019579F, selection 2 (pick any)
Relocation CRC 00000000
0F9 00000000 SECT3E notype External | ?_Hardfail@?$_Iosb@H@std@@2W4_Iostate@12@B (public: static enum std::_Iosb<int>::_Iostate const std::_Iosb<int>::_Hardfail)
0FA 00000000 SECT3F notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
0FD 00000000 SECT3F notype External | ?in@?$_Iosb@H@std@@2W4_Openmode@12@B (public: static enum std::_Iosb<int>::_Openmode const std::_Iosb<int>::in)
0FE 00000000 SECT40 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
101 00000000 SECT40 notype External | ?out@?$_Iosb@H@std@@2W4_Openmode@12@B (public: static enum std::_Iosb<int>::_Openmode const std::_Iosb<int>::out)
102 00000000 SECT41 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8F629757, selection 2 (pick any)
Relocation CRC 00000000
105 00000000 SECT41 notype External | ?ate@?$_Iosb@H@std@@2W4_Openmode@12@B (public: static enum std::_Iosb<int>::_Openmode const std::_Iosb<int>::ate)
106 00000000 SECT42 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum C5B428EF, selection 2 (pick any)
Relocation CRC 00000000
109 00000000 SECT42 notype External | ?app@?$_Iosb@H@std@@2W4_Openmode@12@B (public: static enum std::_Iosb<int>::_Openmode const std::_Iosb<int>::app)
10A 00000000 SECT43 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 5019579F, selection 2 (pick any)
Relocation CRC 00000000
10D 00000000 SECT43 notype External | ?trunc@?$_Iosb@H@std@@2W4_Openmode@12@B (public: static enum std::_Iosb<int>::_Openmode const std::_Iosb<int>::trunc)
10E 00000000 SECT44 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 9B14583D, selection 2 (pick any)
Relocation CRC 00000000
111 00000000 SECT44 notype External | ?_Nocreate@?$_Iosb@H@std@@2W4_Openmode@12@B (public: static enum std::_Iosb<int>::_Openmode const std::_Iosb<int>::_Nocreate)
112 00000000 SECT45 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum ED59B63B, selection 2 (pick any)
Relocation CRC 00000000
115 00000000 SECT45 notype External | ?_Noreplace@?$_Iosb@H@std@@2W4_Openmode@12@B (public: static enum std::_Iosb<int>::_Openmode const std::_Iosb<int>::_Noreplace)
116 00000000 SECT46 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A032AF3E, selection 2 (pick any)
Relocation CRC 00000000
119 00000000 SECT46 notype External | ?binary@?$_Iosb@H@std@@2W4_Openmode@12@B (public: static enum std::_Iosb<int>::_Openmode const std::_Iosb<int>::binary)
11A 00000000 SECT47 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
11D 00000000 SECT47 notype External | ?beg@?$_Iosb@H@std@@2W4_Seekdir@12@B (public: static enum std::_Iosb<int>::_Seekdir const std::_Iosb<int>::beg)
11E 00000000 SECT48 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
121 00000000 SECT48 notype External | ?cur@?$_Iosb@H@std@@2W4_Seekdir@12@B (public: static enum std::_Iosb<int>::_Seekdir const std::_Iosb<int>::cur)
122 00000000 SECT49 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
125 00000000 SECT49 notype External | ?end@?$_Iosb@H@std@@2W4_Seekdir@12@B (public: static enum std::_Iosb<int>::_Seekdir const std::_Iosb<int>::end)
126 00000000 SECT4A notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
129 00000000 SECT4A notype External | ?_Stream_err@failure@ios_base@std@@0W4io_errc@43@B (private: static enum std::io_errc::io_errc const std::ios_base::failure::_Stream_err)
12A 00000000 SECT4B notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum B8BC6765, selection 2 (pick any)
Relocation CRC 00000000
12D 00000000 SECT4B notype External | ?collate@?$_Locbase@H@std@@2HB (public: static int const std::_Locbase<int>::collate)
12E 00000000 SECT4C notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum AA09C88B, selection 2 (pick any)
Relocation CRC 00000000
131 00000000 SECT4C notype External | ?ctype@?$_Locbase@H@std@@2HB (public: static int const std::_Locbase<int>::ctype)
132 00000000 SECT4D notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 8F629757, selection 2 (pick any)
Relocation CRC 00000000
135 00000000 SECT4D notype External | ?monetary@?$_Locbase@H@std@@2HB (public: static int const std::_Locbase<int>::monetary)
136 00000000 SECT4E notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum C5B428EF, selection 2 (pick any)
Relocation CRC 00000000
139 00000000 SECT4E notype External | ?numeric@?$_Locbase@H@std@@2HB (public: static int const std::_Locbase<int>::numeric)
13A 00000000 SECT4F notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 5019579F, selection 2 (pick any)
Relocation CRC 00000000
13D 00000000 SECT4F notype External | ?time@?$_Locbase@H@std@@2HB (public: static int const std::_Locbase<int>::time)
13E 00000000 SECT50 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A032AF3E, selection 2 (pick any)
Relocation CRC 00000000
141 00000000 SECT50 notype External | ?messages@?$_Locbase@H@std@@2HB (public: static int const std::_Locbase<int>::messages)
142 00000000 SECT51 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum A848E8F7, selection 2 (pick any)
Relocation CRC 00000000
145 00000000 SECT51 notype External | ?all@?$_Locbase@H@std@@2HB (public: static int const std::_Locbase<int>::all)
146 00000000 SECT52 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
149 00000000 SECT52 notype External | ?value@?$_Sizeof@U_Nil@std@@U12@U12@U12@U12@U12@U12@U12@@std@@2IB (public: static unsigned int const std::_Sizeof<struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil,struct std::_Nil>::value)
14A 00000000 SECT53 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
14D 00000000 SECT53 notype External | ?none@?$_Locbase@H@std@@2HB (public: static int const std::_Locbase<int>::none)
14E 00000000 SECT54 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
151 00000000 SECT54 notype External | ?has_denorm@_Num_base@std@@2W4float_denorm_style@2@B (public: static enum std::float_denorm_style const std::_Num_base::has_denorm)
152 00000000 SECT55 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
155 00000000 SECT55 notype External | ?has_denorm_loss@_Num_base@std@@2_NB (public: static bool const std::_Num_base::has_denorm_loss)
156 00000000 SECT56 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
159 00000000 SECT56 notype External | ?has_infinity@_Num_base@std@@2_NB (public: static bool const std::_Num_base::has_infinity)
15A 00000000 SECT57 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
15D 00000000 SECT57 notype External | ?has_quiet_NaN@_Num_base@std@@2_NB (public: static bool const std::_Num_base::has_quiet_NaN)
15E 00000000 SECT58 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
161 00000000 SECT58 notype External | ?has_signaling_NaN@_Num_base@std@@2_NB (public: static bool const std::_Num_base::has_signaling_NaN)
162 00000000 SECT59 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
165 00000000 SECT59 notype External | ?is_bounded@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_bounded)
166 00000000 SECT5A notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
169 00000000 SECT5A notype External | ?is_exact@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_exact)
16A 00000000 SECT5B notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
16D 00000000 SECT5B notype External | ?is_iec559@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_iec559)
16E 00000000 SECT5C notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
171 00000000 SECT5C notype External | ?is_integer@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_integer)
172 00000000 SECT5D notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
175 00000000 SECT5D notype External | ?is_modulo@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_modulo)
176 00000000 SECT5E notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
179 00000000 SECT5E notype External | ?is_signed@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_signed)
17A 00000000 SECT5F notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
17D 00000000 SECT5F notype External | ?is_specialized@_Num_base@std@@2_NB (public: static bool const std::_Num_base::is_specialized)
17E 00000000 SECT60 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
181 00000000 SECT60 notype External | ?tinyness_before@_Num_base@std@@2_NB (public: static bool const std::_Num_base::tinyness_before)
182 00000000 SECT61 notype Static | .rdata
Section length 1, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
185 00000000 SECT61 notype External | ?traps@_Num_base@std@@2_NB (public: static bool const std::_Num_base::traps)
186 00000000 SECT62 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
189 00000000 SECT62 notype External | ?round_style@_Num_base@std@@2W4float_round_style@2@B (public: static enum std::float_round_style const std::_Num_base::round_style)
18A 00000000 SECT63 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
18D 00000000 SECT63 notype External | ?digits@_Num_base@std@@2HB (public: static int const std::_Num_base::digits)
18E 00000000 SECT64 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
191 00000000 SECT64 notype External | ?digits10@_Num_base@std@@2HB (public: static int const std::_Num_base::digits10)
192 00000000 SECT65 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)
Relocation CRC 00000000
195 00000000 SECT65 notype External | ?max_digits10@_Num_base@std@@2HB (public: static int const std::_Num_base::max_digits10)
196 00000000 SECT66 notype Static | .rdata
Section length 4, #relocs 0, #linenums 0, checksum 0, selection 2 (pick any)