-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcrashinfo.txt
More file actions
11270 lines (5263 loc) · 350 KB
/
crashinfo.txt
File metadata and controls
11270 lines (5263 loc) · 350 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x636E12FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x636E12FC
+0020: 0x0019FD68 0x636AA33B 0x0077B348 0x00000020
+0030: 0x0019FDBC 0x636ACD1F 0x0077B348 0x00000020
+0040: 0x636DBF4C 0x636AB295 0x466D1A1F 0x006F8C30
+0050: 0x00000001 0xDED6C92C 0x0019FDC0 0x637175B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x006F8C30 0x006F91D8 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x636E12FC 0x0019FDE8 0x636B6084
+0090: 0x0019FDD4 0x636E12FC 0x006F96D0 0x636A2A9C
+00A0: 0x0077BCC0 0x00000001 0x00000016 0x6370315C
+00B0: 0x75459040 0x63740A95 0x00000001 0x63740E65
+00C0: 0x00469DFB 0x006F91D8 0x75459010 0x75463E40
+00D0: 0x00000000 0x006F91D8 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x002F6000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x00000248 0x00001498
+0110: 0x006F96F8 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x002F6000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WSOCK32.dll A: 0x63790000 - 0x63798000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
WINMMBASE.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x63730000 - 0x63784000 (F:\PySAMP\plugins\PySAMP.dll)
VCRUNTIME140.dll A: 0x63710000 - 0x63724000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
MSVCP140.dll A: 0x636A0000 - 0x6370D000 (C:\Windows\SYSTEM32\MSVCP140.dll)
python38.dll A: 0x632A0000 - 0x63699000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EC712FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EC712FC
+0020: 0x0019FD68 0x6EC3A33B 0x00647D60 0x00000020
+0030: 0x0019FDBC 0x6EC3CD1F 0x00647D60 0x00000020
+0040: 0x6EC6BF4C 0x6EC3B295 0x35283A2D 0x02518D68
+0050: 0x00000001 0x71B91D57 0x0019FDC0 0x6ECA75B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x02518D68 0x025191E0 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EC712FC 0x0019FDE8 0x6EC46084
+0090: 0x0019FDD4 0x6EC712FC 0x025196D8 0x6EC32A9C
+00A0: 0x00649D50 0x00000001 0x00000016 0x6EC9315C
+00B0: 0x75459040 0x6ECD0A95 0x00000001 0x6ECD0E65
+00C0: 0x00469DFB 0x025191E0 0x75459010 0x75463E40
+00D0: 0x00000000 0x025191E0 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x0024D000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x00000190 0x00001910
+0110: 0x02519700 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x0024D000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WSOCK32.dll A: 0x63790000 - 0x63798000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
WINMMBASE.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ECC0000 - 0x6ED14000 (F:\PySAMP\plugins\PySAMP.dll)
VCRUNTIME140.dll A: 0x6ECA0000 - 0x6ECB4000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
MSVCP140.dll A: 0x6EC30000 - 0x6EC9D000 (C:\Windows\SYSTEM32\MSVCP140.dll)
python38.dll A: 0x6E830000 - 0x6EC29000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EC912FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EC912FC
+0020: 0x0019FD68 0x6EC5A33B 0x007B7B78 0x00000020
+0030: 0x0019FDBC 0x6EC5CD1F 0x007B7B78 0x00000020
+0040: 0x6EC8BF4C 0x6EC5B295 0x1A8968BD 0x023C8BF8
+0050: 0x00000001 0xFF351904 0x0019FDC0 0x6EC375B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x023C8BF8 0x023C91E0 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EC912FC 0x0019FDE8 0x6EC66084
+0090: 0x0019FDD4 0x6EC912FC 0x023C96D8 0x6EC52A9C
+00A0: 0x007BC360 0x00000001 0x00000016 0x6ECB315C
+00B0: 0x75459040 0x6ECD0A95 0x00000001 0x6ECD0E65
+00C0: 0x00469DFB 0x023C91E0 0x75459010 0x75463E40
+00D0: 0x00000000 0x023C91E0 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x002BC000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x00000254 0x00001634
+0110: 0x023C9700 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x002BC000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WSOCK32.dll A: 0x63790000 - 0x63798000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
winmmbase.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\winmmbase.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ECC0000 - 0x6ED14000 (F:\PySAMP\plugins\PySAMP.dll)
VCRUNTIME140.dll A: 0x6EC30000 - 0x6EC44000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
MSVCP140.dll A: 0x6EC50000 - 0x6ECBD000 (C:\Windows\SYSTEM32\MSVCP140.dll)
python38.dll A: 0x6E830000 - 0x6EC29000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EC812FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EC812FC
+0020: 0x0019FD68 0x6EC4A33B 0x00768E78 0x00000020
+0030: 0x0019FDBC 0x6EC4CD1F 0x00768E78 0x00000020
+0040: 0x6EC7BF4C 0x6EC4B295 0xF61112B9 0x02488CB8
+0050: 0x00000001 0x621FD972 0x0019FDC0 0x6CFA75B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x02488CB8 0x024891E0 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EC812FC 0x0019FDE8 0x6EC56084
+0090: 0x0019FDD4 0x6EC812FC 0x024896D8 0x6EC42A9C
+00A0: 0x0076C2F8 0x00000001 0x00000016 0x6ECA315C
+00B0: 0x75459040 0x6ECC0A95 0x00000001 0x6ECC0E65
+00C0: 0x00469DFB 0x024891E0 0x75459010 0x75463E40
+00D0: 0x00000000 0x024891E0 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x003A6000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x0000024C 0x000020E0
+0110: 0x02489700 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x003A6000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WSOCK32.dll A: 0x6ED10000 - 0x6ED18000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
WINMMBASE.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ECB0000 - 0x6ED04000 (F:\PySAMP\plugins\PySAMP.dll)
python38.dll A: 0x6E840000 - 0x6EC39000 (F:\PySAMP\interpreter\python38.dll)
VCRUNTIME140.dll A: 0x6CFA0000 - 0x6CFB4000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
MSVCP140.dll A: 0x6EC40000 - 0x6ECAD000 (C:\Windows\SYSTEM32\MSVCP140.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EC812FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EC812FC
+0020: 0x0019FD68 0x6EC4A33B 0x0058A4A8 0x00000020
+0030: 0x0019FDBC 0x6EC4CD1F 0x0058A4A8 0x00000020
+0040: 0x6EC7BF4C 0x6EC4B295 0xBD28CB65 0x024D8DC8
+0050: 0x00000001 0x52BAD84C 0x0019FDC0 0x6EC275B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x024D8DC8 0x024D91E0 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EC812FC 0x0019FDE8 0x6EC56084
+0090: 0x0019FDD4 0x6EC812FC 0x024D96D8 0x6EC42A9C
+00A0: 0x0058D428 0x00000001 0x00000016 0x6ECA315C
+00B0: 0x75459040 0x6ECC0A95 0x00000001 0x6ECC0E65
+00C0: 0x00469DFB 0x024D91E0 0x75459010 0x75463E40
+00D0: 0x00000000 0x024D91E0 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x003B5000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x00000258 0x00001FC0
+0110: 0x024D9700 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x003B5000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WSOCK32.dll A: 0x6ED10000 - 0x6ED18000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
winmmbase.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\winmmbase.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ECB0000 - 0x6ED04000 (F:\PySAMP\plugins\PySAMP.dll)
MSVCP140.dll A: 0x6EC40000 - 0x6ECAD000 (C:\Windows\SYSTEM32\MSVCP140.dll)
VCRUNTIME140.dll A: 0x6EC20000 - 0x6EC34000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
python38.dll A: 0x6B980000 - 0x6BD79000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EC812FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EC812FC
+0020: 0x0019FD68 0x6EC4A33B 0x00578FE0 0x00000020
+0030: 0x0019FDBC 0x6EC4CD1F 0x00578FE0 0x00000020
+0040: 0x6EC7BF4C 0x6EC4B295 0x62779D69 0x00B08C28
+0050: 0x00000001 0x6C7A459A 0x0019FDC0 0x6EC275B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x00B08C28 0x00B091E0 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EC812FC 0x0019FDE8 0x6EC56084
+0090: 0x0019FDD4 0x6EC812FC 0x00B096D8 0x6EC42A9C
+00A0: 0x00579E78 0x00000001 0x00000016 0x6ECA315C
+00B0: 0x75459040 0x6ECC0A95 0x00000001 0x6ECC0E65
+00C0: 0x00469DFB 0x00B091E0 0x75459010 0x75463E40
+00D0: 0x00000000 0x00B091E0 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x002CB000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x00000254 0x00001F98
+0110: 0x00B09700 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x002CB000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WSOCK32.dll A: 0x6ED10000 - 0x6ED18000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
winmmbase.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\winmmbase.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ECB0000 - 0x6ED04000 (F:\PySAMP\plugins\PySAMP.dll)
VCRUNTIME140.dll A: 0x6EC20000 - 0x6EC34000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
MSVCP140.dll A: 0x6EC40000 - 0x6ECAD000 (C:\Windows\SYSTEM32\MSVCP140.dll)
python38.dll A: 0x6B980000 - 0x6BD79000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EC812FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EC812FC
+0020: 0x0019FD68 0x6EC4A33B 0x00598450 0x00000020
+0030: 0x0019FDBC 0x6EC4CD1F 0x00598450 0x00000020
+0040: 0x6EC7BF4C 0x6EC4B295 0x4266DDFD 0x02438BF8
+0050: 0x00000001 0xFE63C055 0x0019FDC0 0x6EC275B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x02438BF8 0x024391E0 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EC812FC 0x0019FDE8 0x6EC56084
+0090: 0x0019FDD4 0x6EC812FC 0x024396D8 0x6EC42A9C
+00A0: 0x00599F70 0x00000001 0x00000016 0x6ECA315C
+00B0: 0x75459040 0x6ECC0A95 0x00000001 0x6ECC0E65
+00C0: 0x00469DFB 0x024391E0 0x75459010 0x75463E40
+00D0: 0x00000000 0x024391E0 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x003CE000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x000000D8 0x00002750
+0110: 0x02439700 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x003CE000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WSOCK32.dll A: 0x6ED10000 - 0x6ED18000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
winmmbase.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\winmmbase.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ECB0000 - 0x6ED04000 (F:\PySAMP\plugins\PySAMP.dll)
MSVCP140.dll A: 0x6EC40000 - 0x6ECAD000 (C:\Windows\SYSTEM32\MSVCP140.dll)
VCRUNTIME140.dll A: 0x6EC20000 - 0x6EC34000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
python38.dll A: 0x6B980000 - 0x6BD79000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EC812FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EC812FC
+0020: 0x0019FD68 0x6EC4A33B 0x00829CF0 0x00000020
+0030: 0x0019FDBC 0x6EC4CD1F 0x00829CF0 0x00000020
+0040: 0x6EC7BF4C 0x6EC4B295 0x0750684B 0x024E8DC8
+0050: 0x00000001 0x70A8360A 0x0019FDC0 0x6EC275B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x024E8DC8 0x024E91E0 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EC812FC 0x0019FDE8 0x6EC56084
+0090: 0x0019FDD4 0x6EC812FC 0x024E96D8 0x6EC42A9C
+00A0: 0x0082D020 0x00000001 0x00000016 0x6ECA315C
+00B0: 0x75459040 0x6ECC0A95 0x00000001 0x6ECC0E65
+00C0: 0x00469DFB 0x024E91E0 0x75459010 0x75463E40
+00D0: 0x00000000 0x024E91E0 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x002A2000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x00000248 0x000007AC
+0110: 0x024E9700 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x002A2000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WSOCK32.dll A: 0x6ED10000 - 0x6ED18000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
WINMMBASE.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ECB0000 - 0x6ED04000 (F:\PySAMP\plugins\PySAMP.dll)
MSVCP140.dll A: 0x6EC40000 - 0x6ECAD000 (C:\Windows\SYSTEM32\MSVCP140.dll)
VCRUNTIME140.dll A: 0x6EC20000 - 0x6EC34000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
python38.dll A: 0x6B980000 - 0x6BD79000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EBD12FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EBD12FC
+0020: 0x0019FD68 0x6EB9A33B 0x007FA848 0x00000020
+0030: 0x0019FDBC 0x6EB9CD1F 0x007FA848 0x00000020
+0040: 0x6EBCBF4C 0x6EB9B295 0x6B83B8BD 0x02398DE8
+0050: 0x00000001 0x8F76585D 0x0019FDC0 0x6ECE75B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x02398DE8 0x02399250 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EBD12FC 0x0019FDE8 0x6EBA6084
+0090: 0x0019FDD4 0x6EBD12FC 0x02399748 0x6EB92A9C
+00A0: 0x007FB080 0x00000001 0x00000016 0x6EBF315C
+00B0: 0x75459040 0x6ED10A95 0x00000001 0x6ED10E65
+00C0: 0x00469DFB 0x02399250 0x75459010 0x75463E40
+00D0: 0x00000000 0x02399250 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x00306000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x000000CC 0x000019B8
+0110: 0x02399770 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x00306000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WSOCK32.dll A: 0x74410000 - 0x74418000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
winmmbase.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\winmmbase.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ED00000 - 0x6ED54000 (F:\PySAMP\plugins\PySAMP.dll)
VCRUNTIME140.dll A: 0x6ECE0000 - 0x6ECF4000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
MSVCP140.dll A: 0x6EB90000 - 0x6EBFD000 (C:\Windows\SYSTEM32\MSVCP140.dll)
python38.dll A: 0x6DDB0000 - 0x6E1A9000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EBD12FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EBD12FC
+0020: 0x0019FD68 0x6EB9A33B 0x00808620 0x00000020
+0030: 0x0019FDBC 0x6EB9CD1F 0x00808620 0x00000020
+0040: 0x6EBCBF4C 0x6EB9B295 0x56555838 0x02348D50
+0050: 0x00000001 0xB1EAEAE6 0x0019FDC0 0x6ECE75B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x02348D50 0x02349258 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EBD12FC 0x0019FDE8 0x6EBA6084
+0090: 0x0019FDD4 0x6EBD12FC 0x02349750 0x6EB92A9C
+00A0: 0x0080A010 0x00000001 0x00000016 0x6EBF315C
+00B0: 0x75459040 0x6ED10A95 0x00000001 0x6ED10E65
+00C0: 0x00469DFB 0x02349258 0x75459010 0x75463E40
+00D0: 0x00000000 0x02349258 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x002FC000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x000000D8 0x00002700
+0110: 0x02349778 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x002FC000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WSOCK32.dll A: 0x74410000 - 0x74418000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
WINMMBASE.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6ED00000 - 0x6ED54000 (F:\PySAMP\plugins\PySAMP.dll)
MSVCP140.dll A: 0x6EB90000 - 0x6EBFD000 (C:\Windows\SYSTEM32\MSVCP140.dll)
VCRUNTIME140.dll A: 0x6ECE0000 - 0x6ECF4000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
python38.dll A: 0x6DDB0000 - 0x6E1A9000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EB712FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EB712FC
+0020: 0x0019FD68 0x6EB3A33B 0x00649C48 0x00000020
+0030: 0x0019FDBC 0x6EB3CD1F 0x00649C48 0x00000020
+0040: 0x6EB6BF4C 0x6EB3B295 0x836CC4BF 0x00B28E28
+0050: 0x00000001 0x413D75F9 0x0019FDC0 0x6ECA75B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x00B28E28 0x00B29250 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EB712FC 0x0019FDE8 0x6EB46084
+0090: 0x0019FDD4 0x6EB712FC 0x00B29748 0x6EB32A9C
+00A0: 0x0063BE18 0x00000001 0x00000016 0x6EB9315C
+00B0: 0x75459040 0x6EBB0A95 0x00000001 0x6EBB0E65
+00C0: 0x00469DFB 0x00B29250 0x75459010 0x75463E40
+00D0: 0x00000000 0x00B29250 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x003EF000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x000000C8 0x00000C5C
+0110: 0x00B29770 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x003EF000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WSOCK32.dll A: 0x74410000 - 0x74418000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6EBA0000 - 0x6EBF4000 (F:\PySAMP\plugins\PySAMP.dll)
VCRUNTIME140.dll A: 0x6ECA0000 - 0x6ECB4000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
MSVCP140.dll A: 0x6EB30000 - 0x6EB9D000 (C:\Windows\SYSTEM32\MSVCP140.dll)
python38.dll A: 0x6DDB0000 - 0x6E1A9000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)
DNSAPI.dll A: 0x74A70000 - 0x74B01000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76EF0000 - 0x76EF7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x74A30000 - 0x74A62000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x74400000 - 0x7440B000 (C:\Windows\System32\winrnr.dll)
NLAapi.dll A: 0x6BEE0000 - 0x6BEF6000 (C:\Windows\system32\NLAapi.dll)
wshbth.dll A: 0x73D10000 - 0x73D20000 (C:\Windows\system32\wshbth.dll)
bcrypt.dll A: 0x76120000 - 0x76139000 (C:\Windows\System32\bcrypt.dll)
rasadhlp.dll A: 0x74A20000 - 0x74A28000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x762735D2 Module: (KERNELBASE.dll)
Registers:
EAX: 0x0019FD38 EBX: 0x19930520 ECX: 0x00000003 EDX: 0x00000000
ESI: 0x00000001 EDI: 0x6EB712FC EBP: 0x0019FD90 ESP: 0x0019FD38
EFLAGS: 0x00000212
Stack:
+0000: 0xE06D7363 0x00000001 0x00000000 0x762735D2
+0010: 0x00000003 0x19930520 0x0019FDD4 0x6EB712FC
+0020: 0x0019FD68 0x6EB3A33B 0x0062A6E8 0x00000020
+0030: 0x0019FDBC 0x6EB3CD1F 0x0062A6E8 0x00000020
+0040: 0x6EB6BF4C 0x6EB3B295 0x178BCC97 0x023C8DA8
+0050: 0x00000001 0x0240FE26 0x0019FDC0 0x6ECA75B6
+0060: 0xE06D7363 0x00000001 0x00000003 0x0019FDB4
+0070: 0x023C8DA8 0x023C9250 0x0019FDD4 0x19930520
+0080: 0x0019FDD4 0x6EB712FC 0x0019FDE8 0x6EB46084
+0090: 0x0019FDD4 0x6EB712FC 0x023C9748 0x6EB32A9C
+00A0: 0x0062AEB8 0x00000001 0x00000016 0x6EB9315C
+00B0: 0x75459040 0x6EBB0A95 0x00000001 0x6EBB0E65
+00C0: 0x00469DFB 0x023C9250 0x75459010 0x75463E40
+00D0: 0x00000000 0x023C9250 0x0019FE8C 0x004AAC8E
+00E0: 0x00000000 0x0048D56F 0x00000000 0x000023F0
+00F0: 0x0019FF70 0x003E6000 0x00007E2C 0x00010101
+0100: 0x00000032 0x00001E61 0x00000244 0x000029CC
+0110: 0x023C9770 0x656D6167 0x65646F6D 0x00003531
+0120: 0x004C4020 0x004C401C 0x003E6000 0x004AB4A0
+0130: 0x0019FE58 0x0019FF60 0x0019FF60 0x0049D208
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (F:\PySAMP\samp-server.exe)
ntdll.dll A: 0x77480000 - 0x7761A000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75440000 - 0x75520000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76160000 - 0x7635C000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x767B0000 - 0x76D2A000 (C:\Windows\System32\SHELL32.dll)
ucrtbase.dll A: 0x74DF0000 - 0x74F0F000 (C:\Windows\System32\ucrtbase.dll)
cfgmgr32.dll A: 0x76720000 - 0x7675B000 (C:\Windows\System32\cfgmgr32.dll)
shcore.dll A: 0x77040000 - 0x770C4000 (C:\Windows\System32\shcore.dll)
msvcrt.dll A: 0x75E40000 - 0x75EFF000 (C:\Windows\System32\msvcrt.dll)
RPCRT4.dll A: 0x76060000 - 0x7611B000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74C50000 - 0x74C70000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74C40000 - 0x74C4A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76390000 - 0x763EF000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x770F0000 - 0x77166000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x763F0000 - 0x76666000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x75520000 - 0x75AE5000 (C:\Windows\System32\windows.storage.dll)
msvcp_win.dll A: 0x74C70000 - 0x74CEC000 (C:\Windows\System32\msvcp_win.dll)
advapi32.dll A: 0x75C50000 - 0x75CC9000 (C:\Windows\System32\advapi32.dll)
profapi.dll A: 0x76360000 - 0x76377000 (C:\Windows\System32\profapi.dll)
powrprof.dll A: 0x76760000 - 0x767A3000 (C:\Windows\System32\powrprof.dll)
UMPDC.dll A: 0x76DD0000 - 0x76DDD000 (C:\Windows\System32\UMPDC.dll)
shlwapi.dll A: 0x76010000 - 0x76054000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x773E0000 - 0x77401000 (C:\Windows\System32\GDI32.dll)
win32u.dll A: 0x76140000 - 0x76157000 (C:\Windows\System32\win32u.dll)
gdi32full.dll A: 0x75AF0000 - 0x75C4A000 (C:\Windows\System32\gdi32full.dll)
USER32.dll A: 0x77170000 - 0x77307000 (C:\Windows\System32\USER32.dll)
kernel.appcore.dll A: 0x76380000 - 0x7638F000 (C:\Windows\System32\kernel.appcore.dll)
cryptsp.dll A: 0x770D0000 - 0x770E3000 (C:\Windows\System32\cryptsp.dll)
WSOCK32.dll A: 0x74410000 - 0x74418000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76E00000 - 0x76E5E000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x73E60000 - 0x73E84000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x73E30000 - 0x73E53000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x77000000 - 0x77025000 (C:\Windows\System32\IMM32.DLL)
PySAMP.dll A: 0x6EBA0000 - 0x6EBF4000 (F:\PySAMP\plugins\PySAMP.dll)
MSVCP140.dll A: 0x6EB30000 - 0x6EB9D000 (C:\Windows\SYSTEM32\MSVCP140.dll)
VCRUNTIME140.dll A: 0x6ECA0000 - 0x6ECB4000 (C:\Windows\SYSTEM32\VCRUNTIME140.dll)
python38.dll A: 0x6DDB0000 - 0x6E1A9000 (F:\PySAMP\interpreter\python38.dll)
VERSION.dll A: 0x743F0000 - 0x743F8000 (C:\Windows\SYSTEM32\VERSION.dll)
mswsock.dll A: 0x74B10000 - 0x74B62000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6BFA0000 - 0x6BFB1000 (C:\Windows\system32\napinsp.dll)