-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjdump_x_bad.txt
5317 lines (5275 loc) · 624 KB
/
objdump_x_bad.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
.\bad.pyd: file format pei-x86-64
.\bad.pyd
architecture: i386:x86-64, flags 0x0000013b:
HAS_RELOC, EXEC_P, HAS_DEBUG, HAS_SYMS, HAS_LOCALS, D_PAGED
start address 0x00000002c9361350
Characteristics 0x2026
executable
line numbers stripped
large address aware
DLL
Time/Date Fri Jan 21 13:39:02 2022
Magic 020b (PE32+)
MajorLinkerVersion 2
MinorLinkerVersion 37
SizeOfCode 0000000000019000
SizeOfInitializedData 000000000001fe00
SizeOfUninitializedData 0000000000000200
AddressOfEntryPoint 0000000000001350
BaseOfCode 0000000000001000
ImageBase 00000002c9360000
SectionAlignment 00001000
FileAlignment 00000200
MajorOSystemVersion 4
MinorOSystemVersion 0
MajorImageVersion 0
MinorImageVersion 0
MajorSubsystemVersion 5
MinorSubsystemVersion 2
Win32Version 00000000
SizeOfImage 0007e000
SizeOfHeaders 000004d0
CheckSum 000911fd
Subsystem 00000003 (Windows CUI)
DllCharacteristics 00000160
HIGH_ENTROPY_VA
DYNAMIC_BASE
NX_COMPAT
SizeOfStackReserve 0000000000200000
SizeOfStackCommit 0000000000001000
SizeOfHeapReserve 0000000000100000
SizeOfHeapCommit 0000000000001000
LoaderFlags 00000000
NumberOfRvaAndSizes 00000010
The Data Directory
Entry 0 0000000000020000 000012ec Export Directory [.edata (or where ever we found it)]
Entry 1 0000000000022000 000014bc Import Directory [parts of .idata]
Entry 2 0000000000000000 00000000 Resource Directory [.rsrc]
Entry 3 000000000001d000 00000840 Exception Directory [.pdata]
Entry 4 0000000000000000 00000000 Security Directory
Entry 5 0000000000026000 000001c8 Base Relocation Directory [.reloc]
Entry 6 0000000000000000 00000000 Debug Directory
Entry 7 0000000000000000 00000000 Description Directory
Entry 8 0000000000000000 00000000 Special Directory
Entry 9 000000000001bbe0 00000028 Thread Storage Directory [.tls]
Entry a 0000000000000000 00000000 Load Configuration Directory
Entry b 0000000000000000 00000000 Bound Import Directory
Entry c 000000000002258c 000004b0 Import Address Table Directory
Entry d 0000000000000000 00000000 Delay Import Directory
Entry e 0000000000000000 00000000 CLR Runtime Header
Entry f 0000000000000000 00000000 Reserved
There is an import table in .idata at 0xc9382000
The Import Tables (interpreted .idata section contents)
vma: Hint Time Forward DLL First
Table Stamp Chain Name Thunk
00022000 000220dc 00000000 00000000 0002317c 0002258c
DLL Name: KERNEL32.dll
vma: Hint/Ord Member-Name Bound-To
22a3c 283 DeleteCriticalSection
22a54 319 EnterCriticalSection
22a6c 630 GetLastError
22a7c 892 InitializeCriticalSection
22a98 984 LeaveCriticalSection
22ab0 1410 Sleep
22ab8 1445 TlsGetValue
22ac6 1492 VirtualProtect
22ad8 1494 VirtualQuery
00022014 0002212c 00000000 00000000 00023194 000225dc
DLL Name: api-ms-win-crt-environment-l1-1-0.dll
vma: Hint/Ord Member-Name Bound-To
22ae8 1 __p__environ
22af8 2 __p__wenviron
00022028 00022144 00000000 00000000 000231c8 000225f4
DLL Name: api-ms-win-crt-heap-l1-1-0.dll
vma: Hint/Ord Member-Name Bound-To
22b08 24 _set_new_mode
22b18 25 calloc
22b22 26 free
0002203c 00022164 00000000 00000000 00023328 00022614
DLL Name: api-ms-win-crt-math-l1-1-0.dll
vma: Hint/Ord Member-Name Bound-To
22b2a 10 __setusermatherr
22b3e 18 _dclass
22b48 31 _fdclass
22b54 51 _hypot
22b5e 76 _nextafter
22b6c 87 acos
22b74 88 acosf
22b7c 89 acosh
22b84 90 acoshf
22b8e 91 acoshl
22b98 92 asin
22ba0 93 asinf
22ba8 94 asinh
22bb0 95 asinhf
22bba 96 asinhl
22bc4 97 atan
22bcc 98 atan2
22bd4 99 atan2f
22bde 100 atanf
22be6 101 atanh
22bee 102 atanhf
22bf8 103 atanhl
22c02 128 cbrt
22c0a 129 cbrtf
22c12 130 cbrtl
22c1a 137 ceil
22c22 138 ceilf
22c2a 154 copysign
22c36 155 copysignf
22c42 156 copysignl
22c4e 157 cos
22c54 158 cosf
22c5c 159 cosh
22c64 160 coshf
22c6c 191 exp
22c72 192 exp2
22c7a 193 exp2f
22c82 194 exp2l
22c8a 195 expf
22c92 196 expm1
22c9a 197 expm1f
22ca4 198 expm1l
22cae 203 floor
22cb6 204 floorf
22cc0 214 fmod
22cc8 215 fmodf
22cd0 216 frexp
22cd8 221 ldexp
22ce0 231 log
22ce6 232 log10
22cee 233 log10f
22cf8 234 log1p
22d00 235 log1pf
22d0a 236 log1pl
22d14 237 log2
22d1c 238 log2f
22d24 239 log2l
22d2c 243 logf
22d34 250 modf
22d3c 251 modff
22d44 259 nextafterf
22d52 260 nextafterl
22d60 267 pow
22d66 268 powf
22d6e 275 rint
22d76 276 rintf
22d7e 277 rintl
22d86 287 sin
22d8c 288 sinf
22d94 289 sinh
22d9c 290 sinhf
22da4 291 sqrt
22dac 292 sqrtf
22db4 293 tan
22dba 294 tanf
22dc2 295 tanh
22dca 296 tanhf
22dd2 300 trunc
22dda 301 truncf
22de4 302 truncl
00022050 000223ec 00000000 00000000 0002334c 0002289c
DLL Name: api-ms-win-crt-private-l1-1-0.dll
vma: Hint/Ord Member-Name Bound-To
22dee 1144 memcpy
00022064 000223fc 00000000 00000000 000233b4 000228ac
DLL Name: api-ms-win-crt-runtime-l1-1-0.dll
vma: Hint/Ord Member-Name Bound-To
22df8 5 __p___argc
22e06 6 __p___argv
22e14 7 __p___wargv
22e22 24 _clearfp
22e2e 25 _configure_narrow_argv
22e48 26 _configure_wide_argv
22e60 30 _crt_at_quick_exit
22e76 31 _crt_atexit
22e84 35 _errno
22e8e 36 _execute_onexit_table
22ea6 54 _initialize_narrow_environment
22ec8 55 _initialize_onexit_table
22ee4 56 _initialize_wide_environment
22f04 57 _initterm
22f10 63 _register_onexit_function
22f2c 80 _statusfp
22f38 88 abort
00022078 0002248c 00000000 00000000 000233e8 0002293c
DLL Name: api-ms-win-crt-stdio-l1-1-0.dll
vma: Hint/Ord Member-Name Bound-To
22f40 1 __acrt_iob_func
22f52 4 __stdio_common_vfprintf
22f6c 8 __stdio_common_vfwprintf
22f88 169 fwrite
0002208c 000224b4 00000000 00000000 00023410 00022964
DLL Name: api-ms-win-crt-string-l1-1-0.dll
vma: Hint/Ord Member-Name Bound-To
22f92 168 strlen
22f9c 171 strncmp
000220a0 000224cc 00000000 00000000 00023444 0002297c
DLL Name: api-ms-win-crt-time-l1-1-0.dll
vma: Hint/Ord Member-Name Bound-To
22fa6 9 __daylight
22fb4 11 __timezone
22fc2 12 __tzname
22fce 59 _tzset
000220b4 000224f4 00000000 00000000 000234ac 000229a4
DLL Name: python39.dll
vma: Hint/Ord Member-Name Bound-To
22fd8 10 PyArg_ParseTuple
22fec 11 PyArg_ParseTupleAndKeywords
2300c 65 PyCapsule_GetPointer
23024 73 PyCapsule_Type
23038 182 PyErr_Format
23048 188 PyErr_NoMemory
2305c 191 PyErr_Print
2306c 216 PyErr_SetString
23080 245 PyEval_RestoreThread
23098 246 PyEval_SaveThread
230ac 252 PyExc_AttributeError
230c4 273 PyExc_ImportError
230d8 295 PyExc_RuntimeError
230f0 395 PyImport_ImportModule
23108 507 PyModule_Create2
2311c 625 PyObject_GetAttrString
23138 1008 Py_BuildValue
23148 1524 _Py_Dealloc
000220c8 00000000 00000000 00000000 00000000 00000000
There is an export table in .edata at 0xc9380000
The Export Tables (interpreted .edata section contents)
Export Flags 0
Time/Date stamp 61eab776
Major/Minor 0/0
Name 000000000002082a _distance_wrap.cp39-win_amd64.pyd
Ordinal Base 1
Number in:
Export Address Table 000000cd
[Name Pointer/Ordinal] Table 000000cd
Table Addresses
Export Address Table 0000000000020028
Name Pointer Table 000000000002035c
Ordinal Table 0000000000020690
Export Address Table -- Ordinal Base 1
[ 0] +base[ 1] 14d90 Export RVA
[ 1] +base[ 2] 1bb90 Export RVA
[ 2] +base[ 3] 1bb98 Export RVA
[ 3] +base[ 4] 1bae0 Export RVA
[ 4] +base[ 5] 1bae4 Export RVA
[ 5] +base[ 6] 1bae8 Export RVA
[ 6] +base[ 7] 1baec Export RVA
[ 7] +base[ 8] 1baf0 Export RVA
[ 8] +base[ 9] 1baf8 Export RVA
[ 9] +base[ 10] 1bb00 Export RVA
[ 10] +base[ 11] 1bb08 Export RVA
[ 11] +base[ 12] 1bb10 Export RVA
[ 12] +base[ 13] 1bb18 Export RVA
[ 13] +base[ 14] 1bb20 Export RVA
[ 14] +base[ 15] 1bb28 Export RVA
[ 15] +base[ 16] 1bba0 Export RVA
[ 16] +base[ 17] 1bba8 Export RVA
[ 17] +base[ 18] 1bb2c Export RVA
[ 18] +base[ 19] 1bbb0 Export RVA
[ 19] +base[ 20] 1bb30 Export RVA
[ 20] +base[ 21] 1bbb8 Export RVA
[ 21] +base[ 22] 1bb38 Export RVA
[ 22] +base[ 23] 1bb40 Export RVA
[ 23] +base[ 24] 1bb50 Export RVA
[ 24] +base[ 25] 1bb60 Export RVA
[ 25] +base[ 26] 1bb70 Export RVA
[ 26] +base[ 27] 1bb80 Export RVA
[ 27] +base[ 28] 18340 Export RVA
[ 28] +base[ 29] 186c0 Export RVA
[ 29] +base[ 30] 184c0 Export RVA
[ 30] +base[ 31] 186f0 Export RVA
[ 31] +base[ 32] 189f0 Export RVA
[ 32] +base[ 33] 189c0 Export RVA
[ 33] +base[ 34] 18330 Export RVA
[ 34] +base[ 35] 186b0 Export RVA
[ 35] +base[ 36] 184d0 Export RVA
[ 36] +base[ 37] 186e0 Export RVA
[ 37] +base[ 38] 189e0 Export RVA
[ 38] +base[ 39] 189b0 Export RVA
[ 39] +base[ 40] 18350 Export RVA
[ 40] +base[ 41] 18530 Export RVA
[ 41] +base[ 42] 18740 Export RVA
[ 42] +base[ 43] 18a40 Export RVA
[ 43] +base[ 44] 186d0 Export RVA
[ 44] +base[ 45] 184e0 Export RVA
[ 45] +base[ 46] 18700 Export RVA
[ 46] +base[ 47] 18a00 Export RVA
[ 47] +base[ 48] 189d0 Export RVA
[ 48] +base[ 49] 183b0 Export RVA
[ 49] +base[ 50] 18660 Export RVA
[ 50] +base[ 51] 18960 Export RVA
[ 51] +base[ 52] 183d0 Export RVA
[ 52] +base[ 53] 18610 Export RVA
[ 53] +base[ 54] 18910 Export RVA
[ 54] +base[ 55] 19b40 Export RVA
[ 55] +base[ 56] 19ab0 Export RVA
[ 56] +base[ 57] 18580 Export RVA
[ 57] +base[ 58] 18880 Export RVA
[ 58] +base[ 59] 18b60 Export RVA
[ 59] +base[ 60] 182e0 Export RVA
[ 60] +base[ 61] 185a0 Export RVA
[ 61] +base[ 62] 18310 Export RVA
[ 62] +base[ 63] 185d0 Export RVA
[ 63] +base[ 64] 188d0 Export RVA
[ 64] +base[ 65] 188a0 Export RVA
[ 65] +base[ 66] 18b70 Export RVA
[ 66] +base[ 67] 18e70 Export RVA
[ 67] +base[ 68] 19160 Export RVA
[ 68] +base[ 69] 18ce0 Export RVA
[ 69] +base[ 70] 18fd0 Export RVA
[ 70] +base[ 71] 192d0 Export RVA
[ 71] +base[ 72] 18380 Export RVA
[ 72] +base[ 73] 18510 Export RVA
[ 73] +base[ 74] 19570 Export RVA
[ 74] +base[ 75] 19480 Export RVA
[ 75] +base[ 76] 19660 Export RVA
[ 76] +base[ 77] 18720 Export RVA
[ 77] +base[ 78] 18a20 Export RVA
[ 78] +base[ 79] 18690 Export RVA
[ 79] +base[ 80] 18990 Export RVA
[ 80] +base[ 81] 18490 Export RVA
[ 81] +base[ 82] 186a0 Export RVA
[ 82] +base[ 83] 189a0 Export RVA
[ 83] +base[ 84] 183c0 Export RVA
[ 84] +base[ 85] 185f0 Export RVA
[ 85] +base[ 86] 188f0 Export RVA
[ 86] +base[ 87] 18480 Export RVA
[ 87] +base[ 88] 195d0 Export RVA
[ 88] +base[ 89] 194e0 Export RVA
[ 89] +base[ 90] 196c0 Export RVA
[ 90] +base[ 91] 18600 Export RVA
[ 91] +base[ 92] 18900 Export RVA
[ 92] +base[ 93] 183e0 Export RVA
[ 93] +base[ 94] 18790 Export RVA
[ 94] +base[ 95] 18a70 Export RVA
[ 95] +base[ 96] 18560 Export RVA
[ 96] +base[ 97] 18840 Export RVA
[ 97] +base[ 98] 18b40 Export RVA
[ 98] +base[ 99] 17e40 Export RVA
[ 99] +base[ 100] 17ed0 Export RVA
[ 100] +base[ 101] 17f60 Export RVA
[ 101] +base[ 102] 17ce0 Export RVA
[ 102] +base[ 103] 17d50 Export RVA
[ 103] +base[ 104] 17dc0 Export RVA
[ 104] +base[ 105] 19b80 Export RVA
[ 105] +base[ 106] 19b00 Export RVA
[ 106] +base[ 107] 18e30 Export RVA
[ 107] +base[ 108] 19120 Export RVA
[ 108] +base[ 109] 19420 Export RVA
[ 109] +base[ 110] 184b0 Export RVA
[ 110] +base[ 111] 18750 Export RVA
[ 111] +base[ 112] 18a50 Export RVA
[ 112] +base[ 113] 17e80 Export RVA
[ 113] +base[ 114] 17f10 Export RVA
[ 114] +base[ 115] 17fa0 Export RVA
[ 115] +base[ 116] 17d10 Export RVA
[ 116] +base[ 117] 17d80 Export RVA
[ 117] +base[ 118] 17df0 Export RVA
[ 118] +base[ 119] 18570 Export RVA
[ 119] +base[ 120] 18860 Export RVA
[ 120] +base[ 121] 18b50 Export RVA
[ 121] +base[ 122] 18360 Export RVA
[ 122] +base[ 123] 18370 Export RVA
[ 123] +base[ 124] 18670 Export RVA
[ 124] +base[ 125] 18970 Export RVA
[ 125] +base[ 126] 184a0 Export RVA
[ 126] +base[ 127] 18710 Export RVA
[ 127] +base[ 128] 18a10 Export RVA
[ 128] +base[ 129] 18520 Export RVA
[ 129] +base[ 130] 19550 Export RVA
[ 130] +base[ 131] 19460 Export RVA
[ 131] +base[ 132] 19640 Export RVA
[ 132] +base[ 133] 18730 Export RVA
[ 133] +base[ 134] 18a30 Export RVA
[ 134] +base[ 135] 18b90 Export RVA
[ 135] +base[ 136] 18c30 Export RVA
[ 136] +base[ 137] 18f20 Export RVA
[ 137] +base[ 138] 19220 Export RVA
[ 138] +base[ 139] 18e90 Export RVA
[ 139] +base[ 140] 19180 Export RVA
[ 140] +base[ 141] 18680 Export RVA
[ 141] +base[ 142] 18980 Export RVA
[ 142] +base[ 143] 18210 Export RVA
[ 143] +base[ 144] 181c0 Export RVA
[ 144] +base[ 145] 18170 Export RVA
[ 145] +base[ 146] 18260 Export RVA
[ 146] +base[ 147] 182b0 Export RVA
[ 147] +base[ 148] 180b0 Export RVA
[ 148] +base[ 149] 18070 Export RVA
[ 149] +base[ 150] 18030 Export RVA
[ 150] +base[ 151] 180f0 Export RVA
[ 151] +base[ 152] 18130 Export RVA
[ 152] +base[ 153] 18550 Export RVA
[ 153] +base[ 154] 18830 Export RVA
[ 154] +base[ 155] 18b10 Export RVA
[ 155] +base[ 156] 19750 Export RVA
[ 156] +base[ 157] 19880 Export RVA
[ 157] +base[ 158] 19980 Export RVA
[ 158] +base[ 159] 18540 Export RVA
[ 159] +base[ 160] 18780 Export RVA
[ 160] +base[ 161] 18a60 Export RVA
[ 161] +base[ 162] 18b80 Export RVA
[ 162] +base[ 163] 18e80 Export RVA
[ 163] +base[ 164] 19170 Export RVA
[ 164] +base[ 165] 19590 Export RVA
[ 165] +base[ 166] 194a0 Export RVA
[ 166] +base[ 167] 19680 Export RVA
[ 167] +base[ 168] 184f0 Export RVA
[ 168] +base[ 169] 18620 Export RVA
[ 169] +base[ 170] 18920 Export RVA
[ 170] +base[ 171] 181e0 Export RVA
[ 171] +base[ 172] 18190 Export RVA
[ 172] +base[ 173] 18150 Export RVA
[ 173] +base[ 174] 18230 Export RVA
[ 174] +base[ 175] 18280 Export RVA
[ 175] +base[ 176] 18090 Export RVA
[ 176] +base[ 177] 18050 Export RVA
[ 177] +base[ 178] 18010 Export RVA
[ 178] +base[ 179] 180d0 Export RVA
[ 179] +base[ 180] 18110 Export RVA
[ 180] +base[ 181] 19bc0 Export RVA
[ 181] +base[ 182] 19c30 Export RVA
[ 182] +base[ 183] 19bf0 Export RVA
[ 183] +base[ 184] 19c10 Export RVA
[ 184] +base[ 185] 182d0 Export RVA
[ 185] +base[ 186] 18590 Export RVA
[ 186] +base[ 187] 18300 Export RVA
[ 187] +base[ 188] 185c0 Export RVA
[ 188] +base[ 189] 188c0 Export RVA
[ 189] +base[ 190] 18890 Export RVA
[ 190] +base[ 191] 19760 Export RVA
[ 191] +base[ 192] 19890 Export RVA
[ 192] +base[ 193] 19990 Export RVA
[ 193] +base[ 194] 18390 Export RVA
[ 194] +base[ 195] 18640 Export RVA
[ 195] +base[ 196] 18940 Export RVA
[ 196] +base[ 197] 182f0 Export RVA
[ 197] +base[ 198] 185b0 Export RVA
[ 198] +base[ 199] 18320 Export RVA
[ 199] +base[ 200] 185e0 Export RVA
[ 200] +base[ 201] 188e0 Export RVA
[ 201] +base[ 202] 188b0 Export RVA
[ 202] +base[ 203] 18500 Export RVA
[ 203] +base[ 204] 18630 Export RVA
[ 204] +base[ 205] 18930 Export RVA
[Ordinal/Name Pointer] Table
[ 0] PyInit__distance_wrap
[ 1] __real@00000001
[ 2] __real@01a56e1fc2f8f359
[ 3] __real@3c8efa35
[ 4] __real@3f000000
[ 5] __real@3f317218
[ 6] __real@3f800000
[ 7] __real@3f91df46a2529d39
[ 8] __real@3fb8aa3b
[ 9] __real@3fe0000000000000
[ 10] __real@3fe62e42fefa39ef
[ 11] __real@3ff0000000000000
[ 12] __real@3ff71547652b82fe
[ 13] __real@404ca5dc1a63c1f8
[ 14] __real@42652ee0
[ 15] __real@7e37e43c8800759c
[ 16] __real@7f800000
[ 17] __real@7fc00000
[ 18] __real@7ff0000000000000
[ 19] __real@7ff8000000000000
[ 20] __real@80000001
[ 21] __real@bf800000
[ 22] __real@bff0000000000000
[ 23] __xmm@7fffffff7fffffff7fffffff7fffffff
[ 24] __xmm@7fffffffffffffff7fffffffffffffff
[ 25] __xmm@80000000000000008000000000000000
[ 26] __xmm@80000000800000008000000080000000
[ 27] npy_acos
[ 28] npy_acosf
[ 29] npy_acosh
[ 30] npy_acoshf
[ 31] npy_acoshl
[ 32] npy_acosl
[ 33] npy_asin
[ 34] npy_asinf
[ 35] npy_asinh
[ 36] npy_asinhf
[ 37] npy_asinhl
[ 38] npy_asinl
[ 39] npy_atan
[ 40] npy_atan2
[ 41] npy_atan2f
[ 42] npy_atan2l
[ 43] npy_atanf
[ 44] npy_atanh
[ 45] npy_atanhf
[ 46] npy_atanhl
[ 47] npy_atanl
[ 48] npy_cbrt
[ 49] npy_cbrtf
[ 50] npy_cbrtl
[ 51] npy_ceil
[ 52] npy_ceilf
[ 53] npy_ceill
[ 54] npy_clear_floatstatus
[ 55] npy_clear_floatstatus_barrier
[ 56] npy_copysign
[ 57] npy_copysignf
[ 58] npy_copysignl
[ 59] npy_cos
[ 60] npy_cosf
[ 61] npy_cosh
[ 62] npy_coshf
[ 63] npy_coshl
[ 64] npy_cosl
[ 65] npy_deg2rad
[ 66] npy_deg2radf
[ 67] npy_deg2radl
[ 68] npy_divmod
[ 69] npy_divmodf
[ 70] npy_divmodl
[ 71] npy_exp
[ 72] npy_exp2
[ 73] npy_exp2_m1
[ 74] npy_exp2_m1f
[ 75] npy_exp2_m1l
[ 76] npy_exp2f
[ 77] npy_exp2l
[ 78] npy_expf
[ 79] npy_expl
[ 80] npy_expm1
[ 81] npy_expm1f
[ 82] npy_expm1l
[ 83] npy_fabs
[ 84] npy_fabsf
[ 85] npy_fabsl
[ 86] npy_floor
[ 87] npy_floor_divide
[ 88] npy_floor_dividef
[ 89] npy_floor_dividel
[ 90] npy_floorf
[ 91] npy_floorl
[ 92] npy_fmod
[ 93] npy_fmodf
[ 94] npy_fmodl
[ 95] npy_frexp
[ 96] npy_frexpf
[ 97] npy_frexpl
[ 98] npy_gcd
[ 99] npy_gcdl
[ 100] npy_gcdll
[ 101] npy_gcdu
[ 102] npy_gcdul
[ 103] npy_gcdull
[ 104] npy_get_floatstatus
[ 105] npy_get_floatstatus_barrier
[ 106] npy_heaviside
[ 107] npy_heavisidef
[ 108] npy_heavisidel
[ 109] npy_hypot
[ 110] npy_hypotf
[ 111] npy_hypotl
[ 112] npy_lcm
[ 113] npy_lcml
[ 114] npy_lcmll
[ 115] npy_lcmu
[ 116] npy_lcmul
[ 117] npy_lcmull
[ 118] npy_ldexp
[ 119] npy_ldexpf
[ 120] npy_ldexpl
[ 121] npy_log
[ 122] npy_log10
[ 123] npy_log10f
[ 124] npy_log10l
[ 125] npy_log1p
[ 126] npy_log1pf
[ 127] npy_log1pl
[ 128] npy_log2
[ 129] npy_log2_1p
[ 130] npy_log2_1pf
[ 131] npy_log2_1pl
[ 132] npy_log2f
[ 133] npy_log2l
[ 134] npy_logaddexp
[ 135] npy_logaddexp2
[ 136] npy_logaddexp2f
[ 137] npy_logaddexp2l
[ 138] npy_logaddexpf
[ 139] npy_logaddexpl
[ 140] npy_logf
[ 141] npy_logl
[ 142] npy_lshift
[ 143] npy_lshifth
[ 144] npy_lshifthh
[ 145] npy_lshiftl
[ 146] npy_lshiftll
[ 147] npy_lshiftu
[ 148] npy_lshiftuh
[ 149] npy_lshiftuhh
[ 150] npy_lshiftul
[ 151] npy_lshiftull
[ 152] npy_modf
[ 153] npy_modff
[ 154] npy_modfl
[ 155] npy_nextafter
[ 156] npy_nextafterf
[ 157] npy_nextafterl
[ 158] npy_pow
[ 159] npy_powf
[ 160] npy_powl
[ 161] npy_rad2deg
[ 162] npy_rad2degf
[ 163] npy_rad2degl
[ 164] npy_remainder
[ 165] npy_remainderf
[ 166] npy_remainderl
[ 167] npy_rint
[ 168] npy_rintf
[ 169] npy_rintl
[ 170] npy_rshift
[ 171] npy_rshifth
[ 172] npy_rshifthh
[ 173] npy_rshiftl
[ 174] npy_rshiftll
[ 175] npy_rshiftu
[ 176] npy_rshiftuh
[ 177] npy_rshiftuhh
[ 178] npy_rshiftul
[ 179] npy_rshiftull
[ 180] npy_set_floatstatus_divbyzero
[ 181] npy_set_floatstatus_invalid
[ 182] npy_set_floatstatus_overflow
[ 183] npy_set_floatstatus_underflow
[ 184] npy_sin
[ 185] npy_sinf
[ 186] npy_sinh
[ 187] npy_sinhf
[ 188] npy_sinhl
[ 189] npy_sinl
[ 190] npy_spacing
[ 191] npy_spacingf
[ 192] npy_spacingl
[ 193] npy_sqrt
[ 194] npy_sqrtf
[ 195] npy_sqrtl
[ 196] npy_tan
[ 197] npy_tanf
[ 198] npy_tanh
[ 199] npy_tanhf
[ 200] npy_tanhl
[ 201] npy_tanl
[ 202] npy_trunc
[ 203] npy_truncf
[ 204] npy_truncl
The Function Table (interpreted .pdata section contents)
vma: BeginAddress EndAddress UnwindData
00000002c937d000: 00000002c9361000 00000002c936100c 00000002c937e000
00000002c937d00c: 00000002c9361010 00000002c93611ff 00000002c937e004
00000002c937d018: 00000002c9361200 00000002c9361344 00000002c937e018
00000002c937d024: 00000002c9361350 00000002c9361362 00000002c937e028
00000002c937d030: 00000002c9361370 00000002c936137f 00000002c937e02c
00000002c937d03c: 00000002c9361380 00000002c936138c 00000002c937e030
00000002c937d048: 00000002c9361390 00000002c9361391 00000002c937e034
00000002c937d054: 00000002c93613a0 00000002c936162b 00000002c937e038
00000002c937d060: 00000002c9361630 00000002c9361ad9 00000002c937e04c
00000002c937d06c: 00000002c9361ae0 00000002c936239b 00000002c937e064
00000002c937d078: 00000002c93623a0 00000002c93628a5 00000002c937e080
00000002c937d084: 00000002c93628b0 00000002c9363193 00000002c937e09c
00000002c937d090: 00000002c93631a0 00000002c93636c8 00000002c937e0d8
00000002c937d09c: 00000002c93636d0 00000002c9363e77 00000002c937e0f8
00000002c937d0a8: 00000002c9363e80 00000002c9364225 00000002c937e130
00000002c937d0b4: 00000002c9364230 00000002c9364562 00000002c937e148
00000002c937d0c0: 00000002c9364570 00000002c9364609 00000002c937e160
00000002c937d0cc: 00000002c9364610 00000002c93648fe 00000002c937e16c
00000002c937d0d8: 00000002c9364900 00000002c9364999 00000002c937e184
00000002c937d0e4: 00000002c93649a0 00000002c936547f 00000002c937e190
00000002c937d0f0: 00000002c9365480 00000002c9365c1c 00000002c937e1d0
00000002c937d0fc: 00000002c9365c20 00000002c9366409 00000002c937e200
00000002c937d108: 00000002c9366410 00000002c9366415 00000002c937e230
00000002c937d114: 00000002c9366420 00000002c9366bb6 00000002c937e234
00000002c937d120: 00000002c9366bc0 00000002c93673cb 00000002c937e26c
00000002c937d12c: 00000002c93673d0 00000002c9367c34 00000002c937e2a8
00000002c937d138: 00000002c9367c40 00000002c936841e 00000002c937e2d8
00000002c937d144: 00000002c9368420 00000002c93687d9 00000002c937e310
00000002c937d150: 00000002c93687e0 00000002c9369057 00000002c937e328
00000002c937d15c: 00000002c9369060 00000002c93693c6 00000002c937e360
00000002c937d168: 00000002c93693d0 00000002c9369726 00000002c937e378
00000002c937d174: 00000002c9369730 00000002c93697f2 00000002c937e394
00000002c937d180: 00000002c9369800 00000002c9369b2e 00000002c937e3a0
00000002c937d18c: 00000002c9369b30 00000002c9369bf2 00000002c937e3b8
00000002c937d198: 00000002c9369c00 00000002c936a06e 00000002c937e3c4
00000002c937d1a4: 00000002c936a070 00000002c936a408 00000002c937e3ec
00000002c937d1b0: 00000002c936a410 00000002c936a683 00000002c937e40c
00000002c937d1bc: 00000002c936a690 00000002c936aac7 00000002c937e41c
00000002c937d1c8: 00000002c936aad0 00000002c936ab92 00000002c937e448
00000002c937d1d4: 00000002c936aba0 00000002c936af1d 00000002c937e454
00000002c937d1e0: 00000002c936af20 00000002c936afb9 00000002c937e470
00000002c937d1ec: 00000002c936afc0 00000002c936b8b3 00000002c937e47c
00000002c937d1f8: 00000002c936b8c0 00000002c936bdd8 00000002c937e4b8
00000002c937d204: 00000002c936bde0 00000002c936c58c 00000002c937e4d8
00000002c937d210: 00000002c936c590 00000002c936cd04 00000002c937e504
00000002c937d21c: 00000002c936cd10 00000002c936d0ac 00000002c937e534
00000002c937d228: 00000002c936d0b0 00000002c936d5a6 00000002c937e554
00000002c937d234: 00000002c936d5b0 00000002c936dd79 00000002c937e570
00000002c937d240: 00000002c936dd80 00000002c936dd85 00000002c937e5a0
00000002c937d24c: 00000002c936dd90 00000002c936e52f 00000002c937e5a4
00000002c937d258: 00000002c936e530 00000002c936e98e 00000002c937e5dc
00000002c937d264: 00000002c936e990 00000002c936f137 00000002c937e604
00000002c937d270: 00000002c936f140 00000002c936f91e 00000002c937e63c
00000002c937d27c: 00000002c936f920 00000002c9370154 00000002c937e674
00000002c937d288: 00000002c9370160 00000002c9370968 00000002c937e6a4
00000002c937d294: 00000002c9370970 00000002c9371144 00000002c937e6d0
00000002c937d2a0: 00000002c9371150 00000002c93715fa 00000002c937e70c
00000002c937d2ac: 00000002c9371600 00000002c9371899 00000002c937e738
00000002c937d2b8: 00000002c93718a0 00000002c9371c86 00000002c937e750
00000002c937d2c4: 00000002c9371c90 00000002c9372797 00000002c937e768
00000002c937d2d0: 00000002c93727a0 00000002c9372ba9 00000002c937e7a8
00000002c937d2dc: 00000002c9372bb0 00000002c93734a0 00000002c937e7c0
00000002c937d2e8: 00000002c93734a0 00000002c9373d52 00000002c937e7dc
00000002c937d2f4: 00000002c9373d60 00000002c9374426 00000002c937e81c
00000002c937d300: 00000002c9374430 00000002c9374d81 00000002c937e844
00000002c937d30c: 00000002c9374d90 00000002c9374fe6 00000002c937e86c
00000002c937d318: 00000002c9374ff0 00000002c9374ff3 00000002c937e878
00000002c937d324: 00000002c9375000 00000002c937506a 00000002c937e87c
00000002c937d330: 00000002c9375070 00000002c93750da 00000002c937e88c
00000002c937d33c: 00000002c93750e0 00000002c9375103 00000002c937e89c
00000002c937d348: 00000002c9375110 00000002c9375125 00000002c937e8a4
00000002c937d354: 00000002c9375130 00000002c9375158 00000002c937e8a8
00000002c937d360: 00000002c9375160 00000002c9375195 00000002c937e8b0
00000002c937d36c: 00000002c93751a0 00000002c93751d6 00000002c937e8b8
00000002c937d378: 00000002c93751e0 00000002c9375216 00000002c937e8c0
00000002c937d384: 00000002c9375300 00000002c9375332 00000002c937e8c8
00000002c937d390: 00000002c9375490 00000002c93754ca 00000002c937eb24
00000002c937d39c: 00000002c93754d0 00000002c937553a 00000002c937eb2c
00000002c937d3a8: 00000002c9375540 00000002c937555f 00000002c937eb38
00000002c937d3b4: 00000002c9375560 00000002c937558f 00000002c937eb3c
00000002c937d3c0: 00000002c9375590 00000002c9375611 00000002c937eb44
00000002c937d3cc: 00000002c9375620 00000002c9375623 00000002c937eb50
00000002c937d3d8: 00000002c9375630 00000002c937569a 00000002c937eb54
00000002c937d3e4: 00000002c93756a0 00000002c9375802 00000002c937eb60
00000002c937d3f0: 00000002c9375810 00000002c9375b45 00000002c937eb6c
00000002c937d3fc: 00000002c9375b50 00000002c9375bc1 00000002c937eb84
00000002c937d408: 00000002c9375bd0 00000002c9375c51 00000002c937eb94
00000002c937d414: 00000002c9375c60 00000002c9375ce9 00000002c937eba4
00000002c937d420: 00000002c9375cf0 00000002c9375dd2 00000002c937ebb0
00000002c937d42c: 00000002c9375de0 00000002c9375e0c 00000002c937ebb8
00000002c937d438: 00000002c9375e10 00000002c9375e58 00000002c937ebbc
00000002c937d444: 00000002c9375e60 00000002c9375eff 00000002c937ebc0
00000002c937d450: 00000002c9375f00 00000002c9375f78 00000002c937ebcc
00000002c937d45c: 00000002c9375f80 00000002c9375fb9 00000002c937ebd0
00000002c937d468: 00000002c9375fc0 00000002c937602b 00000002c937ebd4
00000002c937d474: 00000002c9376030 00000002c9376066 00000002c937ebd8
00000002c937d480: 00000002c9376070 00000002c93760f9 00000002c937ebdc
00000002c937d48c: 00000002c9376100 00000002c93761be 00000002c937ebe0
00000002c937d498: 00000002c93761c0 00000002c93761c3 00000002c937ebe4
00000002c937d4a4: 00000002c9376210 00000002c9376216 00000002c937ebe8
00000002c937d4b0: 00000002c9376220 00000002c9376226 00000002c937ebec
00000002c937d4bc: 00000002c9376230 00000002c9376246 00000002c937ebf0
00000002c937d4c8: 00000002c9376250 00000002c9376266 00000002c937ebf8
00000002c937d4d4: 00000002c9376270 00000002c9376286 00000002c937ec00
00000002c937d4e0: 00000002c9376290 00000002c93762a6 00000002c937ec08
00000002c937d4ec: 00000002c93762b0 00000002c93762ca 00000002c937ec10
00000002c937d4f8: 00000002c93762d0 00000002c93762e6 00000002c937ec18
00000002c937d504: 00000002c93762f0 00000002c9376423 00000002c937ec20
00000002c937d510: 00000002c9376430 00000002c9376556 00000002c937ec2c
00000002c937d51c: 00000002c9376560 00000002c937658b 00000002c937ec38
00000002c937d528: 00000002c9376590 00000002c93765b9 00000002c937ec40
00000002c937d534: 00000002c93765c0 00000002c93765eb 00000002c937ec48
00000002c937d540: 00000002c93765f0 00000002c937661b 00000002c937ec50
00000002c937d54c: 00000002c9376620 00000002c9376641 00000002c937ec58
00000002c937d558: 00000002c9376650 00000002c9376727 00000002c937ec60
00000002c937d564: 00000002c9376730 00000002c93767f3 00000002c937ec64
00000002c937d570: 00000002c9376800 00000002c9376902 00000002c937ec6c
00000002c937d57c: 00000002c9376910 00000002c9376926 00000002c937ec78
00000002c937d588: 00000002c9376960 00000002c9376b8d 00000002c937ec80
00000002c937d594: 00000002c9376b90 00000002c9376d38 00000002c937ec8c
00000002c937d5a0: 00000002c9376d40 00000002c9376d5c 00000002c937ec94
00000002c937d5ac: 00000002c9376d60 00000002c9376d8d 00000002c937ec9c
00000002c937d5b8: 00000002c9376d90 00000002c9376dc1 00000002c937eca4
00000002c937d5c4: 00000002c9376dd0 00000002c9376eec 00000002c937ecac
00000002c937d5d0: 00000002c9376ef0 00000002c9376f81 00000002c937ecb8
00000002c937d5dc: 00000002c9376f90 00000002c9377572 00000002c937ecc0
00000002c937d5e8: 00000002c9377580 00000002c9377682 00000002c937ecdc
00000002c937d5f4: 00000002c9377690 00000002c93776a6 00000002c937ece8
00000002c937d600: 00000002c93776f0 00000002c9377706 00000002c937ecf0
00000002c937d60c: 00000002c9377710 00000002c93779a4 00000002c937ecf8
00000002c937d618: 00000002c9377a80 00000002c9377b5b 00000002c937ed04
00000002c937d624: 00000002c9377bd0 00000002c9377bee 00000002c937ed0c
00000002c937d630: 00000002c9377c60 00000002c9377ca1 00000002c937ed14
00000002c937d63c: 00000002c9377cb0 00000002c9377cbc 00000002c937ed1c
00000002c937d648: 00000002c93783e0 00000002c9378473 00000002c937e8d0
00000002c937d654: 00000002c9378750 00000002c937876b 00000002c937e8e4
00000002c937d660: 00000002c9378790 00000002c9378820 00000002c937e8ec
00000002c937d66c: 00000002c9378840 00000002c9378857 00000002c937e900
00000002c937d678: 00000002c9378860 00000002c9378877 00000002c937e908
00000002c937d684: 00000002c9378a70 00000002c9378b03 00000002c937e910
00000002c937d690: 00000002c9378b10 00000002c9378b34 00000002c937e924
00000002c937d69c: 00000002c9378b90 00000002c9378c1c 00000002c937e92c
00000002c937d6a8: 00000002c9378c30 00000002c9378cce 00000002c937e93c
00000002c937d6b4: 00000002c9378ce0 00000002c9378e27 00000002c937e94c
00000002c937d6c0: 00000002c9378e90 00000002c9378f19 00000002c937e96c
00000002c937d6cc: 00000002c9378f20 00000002c9378fbb 00000002c937e97c
00000002c937d6d8: 00000002c9378fd0 00000002c9379110 00000002c937e98c
00000002c937d6e4: 00000002c9379180 00000002c937920c 00000002c937e9ac
00000002c937d6f0: 00000002c9379220 00000002c93792be 00000002c937e9bc
00000002c937d6fc: 00000002c93792d0 00000002c9379417 00000002c937e9cc
00000002c937d708: 00000002c9379460 00000002c9379477 00000002c937e9ec
00000002c937d714: 00000002c93794a0 00000002c93794cc 00000002c937e9f4
00000002c937d720: 00000002c93794e0 00000002c93794f1 00000002c937e9fc
00000002c937d72c: 00000002c93794f1 00000002c937951d 00000002c937ea04
00000002c937d738: 00000002c937951d 00000002c937952f 00000002c937ea18
00000002c937d744: 00000002c937952f 00000002c937953e 00000002c937ea2c
00000002c937d750: 00000002c9379550 00000002c9379567 00000002c937ea3c
00000002c937d75c: 00000002c9379590 00000002c93795bd 00000002c937ea44
00000002c937d768: 00000002c93795d0 00000002c93795e3 00000002c937ea4c
00000002c937d774: 00000002c93795e3 00000002c9379610 00000002c937ea54
00000002c937d780: 00000002c9379610 00000002c9379622 00000002c937ea68
00000002c937d78c: 00000002c9379622 00000002c9379631 00000002c937ea7c
00000002c937d798: 00000002c9379640 00000002c9379657 00000002c937ea8c
00000002c937d7a4: 00000002c9379680 00000002c93796ad 00000002c937ea94
00000002c937d7b0: 00000002c93796c0 00000002c93796d3 00000002c937ea9c
00000002c937d7bc: 00000002c93796d3 00000002c9379700 00000002c937eaa4
00000002c937d7c8: 00000002c9379700 00000002c9379712 00000002c937eab8
00000002c937d7d4: 00000002c9379712 00000002c9379721 00000002c937eacc
00000002c937d7e0: 00000002c9379760 00000002c937986b 00000002c937eadc
00000002c937d7ec: 00000002c9379890 00000002c9379973 00000002c937eae8
00000002c937d7f8: 00000002c9379990 00000002c9379a9c 00000002c937eaf4
00000002c937d804: 00000002c9379ab0 00000002c9379afa 00000002c937eb00
00000002c937d810: 00000002c9379b00 00000002c9379b39 00000002c937eb0c
00000002c937d81c: 00000002c9379b40 00000002c9379b77 00000002c937eb14
00000002c937d828: 00000002c9379b80 00000002c9379bac 00000002c937eb1c
00000002c937d834: 00000002c9379f60 00000002c9379f65 00000002c937ed20
Dump of .xdata
00000002c937e000 (rva: 0001e000): 00000002c9361000 - 00000002c936100c
warning: xdata section corrupt
00000002c937e004 (rva: 0001e004): 00000002c9361010 - 00000002c93611ff
warning: xdata section corrupt
00000002c937e018 (rva: 0001e018): 00000002c9361200 - 00000002c9361344
warning: xdata section corrupt
00000002c937e028 (rva: 0001e028): 00000002c9361350 - 00000002c9361362
warning: xdata section corrupt
00000002c937e02c (rva: 0001e02c): 00000002c9361370 - 00000002c936137f
warning: xdata section corrupt
00000002c937e030 (rva: 0001e030): 00000002c9361380 - 00000002c936138c
warning: xdata section corrupt
00000002c937e034 (rva: 0001e034): 00000002c9361390 - 00000002c9361391
warning: xdata section corrupt
00000002c937e038 (rva: 0001e038): 00000002c93613a0 - 00000002c936162b
warning: xdata section corrupt
00000002c937e04c (rva: 0001e04c): 00000002c9361630 - 00000002c9361ad9
warning: xdata section corrupt
00000002c937e064 (rva: 0001e064): 00000002c9361ae0 - 00000002c936239b
warning: xdata section corrupt
00000002c937e080 (rva: 0001e080): 00000002c93623a0 - 00000002c93628a5
warning: xdata section corrupt
00000002c937e09c (rva: 0001e09c): 00000002c93628b0 - 00000002c9363193
warning: xdata section corrupt
00000002c937e0d8 (rva: 0001e0d8): 00000002c93631a0 - 00000002c93636c8
warning: xdata section corrupt
00000002c937e0f8 (rva: 0001e0f8): 00000002c93636d0 - 00000002c9363e77
warning: xdata section corrupt
00000002c937e130 (rva: 0001e130): 00000002c9363e80 - 00000002c9364225
warning: xdata section corrupt
00000002c937e148 (rva: 0001e148): 00000002c9364230 - 00000002c9364562
warning: xdata section corrupt
00000002c937e160 (rva: 0001e160): 00000002c9364570 - 00000002c9364609
warning: xdata section corrupt
00000002c937e16c (rva: 0001e16c): 00000002c9364610 - 00000002c93648fe
warning: xdata section corrupt
00000002c937e184 (rva: 0001e184): 00000002c9364900 - 00000002c9364999
warning: xdata section corrupt
00000002c937e190 (rva: 0001e190): 00000002c93649a0 - 00000002c936547f
warning: xdata section corrupt
00000002c937e1d0 (rva: 0001e1d0): 00000002c9365480 - 00000002c9365c1c
warning: xdata section corrupt
00000002c937e200 (rva: 0001e200): 00000002c9365c20 - 00000002c9366409
warning: xdata section corrupt
00000002c937e230 (rva: 0001e230): 00000002c9366410 - 00000002c9366415
warning: xdata section corrupt
00000002c937e234 (rva: 0001e234): 00000002c9366420 - 00000002c9366bb6
warning: xdata section corrupt
00000002c937e26c (rva: 0001e26c): 00000002c9366bc0 - 00000002c93673cb
warning: xdata section corrupt
00000002c937e2a8 (rva: 0001e2a8): 00000002c93673d0 - 00000002c9367c34
warning: xdata section corrupt
00000002c937e2d8 (rva: 0001e2d8): 00000002c9367c40 - 00000002c936841e
warning: xdata section corrupt
00000002c937e310 (rva: 0001e310): 00000002c9368420 - 00000002c93687d9
warning: xdata section corrupt
00000002c937e328 (rva: 0001e328): 00000002c93687e0 - 00000002c9369057
warning: xdata section corrupt
00000002c937e360 (rva: 0001e360): 00000002c9369060 - 00000002c93693c6
warning: xdata section corrupt
00000002c937e378 (rva: 0001e378): 00000002c93693d0 - 00000002c9369726
warning: xdata section corrupt
00000002c937e394 (rva: 0001e394): 00000002c9369730 - 00000002c93697f2
warning: xdata section corrupt
00000002c937e3a0 (rva: 0001e3a0): 00000002c9369800 - 00000002c9369b2e
warning: xdata section corrupt
00000002c937e3b8 (rva: 0001e3b8): 00000002c9369b30 - 00000002c9369bf2
warning: xdata section corrupt
00000002c937e3c4 (rva: 0001e3c4): 00000002c9369c00 - 00000002c936a06e
warning: xdata section corrupt
00000002c937e3ec (rva: 0001e3ec): 00000002c936a070 - 00000002c936a408
warning: xdata section corrupt
00000002c937e40c (rva: 0001e40c): 00000002c936a410 - 00000002c936a683
warning: xdata section corrupt
00000002c937e41c (rva: 0001e41c): 00000002c936a690 - 00000002c936aac7
warning: xdata section corrupt
00000002c937e448 (rva: 0001e448): 00000002c936aad0 - 00000002c936ab92
warning: xdata section corrupt
00000002c937e454 (rva: 0001e454): 00000002c936aba0 - 00000002c936af1d
warning: xdata section corrupt
00000002c937e470 (rva: 0001e470): 00000002c936af20 - 00000002c936afb9
warning: xdata section corrupt
00000002c937e47c (rva: 0001e47c): 00000002c936afc0 - 00000002c936b8b3
warning: xdata section corrupt
00000002c937e4b8 (rva: 0001e4b8): 00000002c936b8c0 - 00000002c936bdd8
warning: xdata section corrupt
00000002c937e4d8 (rva: 0001e4d8): 00000002c936bde0 - 00000002c936c58c
warning: xdata section corrupt
00000002c937e504 (rva: 0001e504): 00000002c936c590 - 00000002c936cd04
warning: xdata section corrupt
00000002c937e534 (rva: 0001e534): 00000002c936cd10 - 00000002c936d0ac
warning: xdata section corrupt
00000002c937e554 (rva: 0001e554): 00000002c936d0b0 - 00000002c936d5a6
warning: xdata section corrupt
00000002c937e570 (rva: 0001e570): 00000002c936d5b0 - 00000002c936dd79
warning: xdata section corrupt
00000002c937e5a0 (rva: 0001e5a0): 00000002c936dd80 - 00000002c936dd85
warning: xdata section corrupt
00000002c937e5a4 (rva: 0001e5a4): 00000002c936dd90 - 00000002c936e52f
warning: xdata section corrupt
00000002c937e5dc (rva: 0001e5dc): 00000002c936e530 - 00000002c936e98e
warning: xdata section corrupt
00000002c937e604 (rva: 0001e604): 00000002c936e990 - 00000002c936f137
warning: xdata section corrupt
00000002c937e63c (rva: 0001e63c): 00000002c936f140 - 00000002c936f91e
warning: xdata section corrupt
00000002c937e674 (rva: 0001e674): 00000002c936f920 - 00000002c9370154
warning: xdata section corrupt
00000002c937e6a4 (rva: 0001e6a4): 00000002c9370160 - 00000002c9370968
warning: xdata section corrupt
00000002c937e6d0 (rva: 0001e6d0): 00000002c9370970 - 00000002c9371144
warning: xdata section corrupt
00000002c937e70c (rva: 0001e70c): 00000002c9371150 - 00000002c93715fa
warning: xdata section corrupt
00000002c937e738 (rva: 0001e738): 00000002c9371600 - 00000002c9371899
warning: xdata section corrupt
00000002c937e750 (rva: 0001e750): 00000002c93718a0 - 00000002c9371c86
warning: xdata section corrupt
00000002c937e768 (rva: 0001e768): 00000002c9371c90 - 00000002c9372797
warning: xdata section corrupt
00000002c937e7a8 (rva: 0001e7a8): 00000002c93727a0 - 00000002c9372ba9
warning: xdata section corrupt
00000002c937e7c0 (rva: 0001e7c0): 00000002c9372bb0 - 00000002c93734a0
warning: xdata section corrupt
00000002c937e7dc (rva: 0001e7dc): 00000002c93734a0 - 00000002c9373d52
warning: xdata section corrupt
00000002c937e81c (rva: 0001e81c): 00000002c9373d60 - 00000002c9374426