Paste #50073: Untitled Paste

Date: 2018/09/27 21:23:25 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613


#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f039e94a5bb, pid=100, tid=0x00007f0364bee700
#
# JRE version: Java(TM) SE Runtime Environment (8.0_151-b12) (build 1.8.0_151-b12)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.151-b12 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  [libc.so.6+0x1575bb]
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x00007f039891c800):  JavaThread "Server thread" [_thread_in_native, id=136, stack(0x00007f0364aee000,0x00007f0364bef000)]

siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x00007f034141f000

Registers:
RAX=0x00007f02f00f0ec2, RBX=0x00007f034141ad6d, RCX=0x0000000000002000, RDX=0x0000000000006bf2
RSP=0x00007f0364bea998, RBP=0x00007f0364bea9f0, RSI=0x00007f034141effb, RDI=0x00007f02f00f5150
R8 =0x00007f02f00f0ec2, R9 =0x00007f039e94a5b0, R10=0x00007f02f0000078, R11=0x00007f039e9886d0
R12=0x00007f034141ad3f, R13=0x00007f02f11d6a50, R14=0x000000000000af00, R15=0x00007f02f073caa0
RIP=0x00007f039e94a5bb, EFLAGS=0x0000000000010202, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
  TRAPNO=0x000000000000000e

Top of Stack: (sp=0x00007f0364bea998)
0x00007f0364bea998:   00007f039c43d6f9 00000007c00007a8
0x00007f0364bea9a8:   4bb1000300000000 0000000000000000
0x00007f0364bea9b8:   00000000726d6564 00007f02f11d6a50
0x00007f0364bea9c8:   00007f02f074a520 00007f02f017c450
0x00007f0364bea9d8:   00007f02f073caa0 000000006a0412b2
0x00007f0364bea9e8:   0000000000000051 00007f0364beaa50
0x00007f0364bea9f8:   00007f039c43dc7f 00007f039891c800
0x00007f0364beaa08:   01007f0364beaab3 00007f0364beaa70
0x00007f0364beaa18:   00007f0364beaac2 00007f0364beaac0
0x00007f0364beaa28:   00007f0364beaa70 0000000000000051
0x00007f0364beaa38:   00007f039891c9f8 00007f0364beaec8
0x00007f0364beaa48:   0000000000000001 00007f0364beaeb0
0x00007f0364beaa58:   00007f039c42eec0 646675612f74656e
0x00007f0364beaa68:   00007f02f073caa0 646675612f74656e
0x00007f0364beaa78:   642f646e61726d65 6f636e657a696e65
0x00007f0364beaa88:   70697263732f6572 616d6d6f632f7374
0x00007f0364beaa98:   65726f632f73646e 68636165726f462f
0x00007f0364beaaa8:   24646e616d6d6f43 4468636165726f46
0x00007f0364beaab8:   73616c632e617461 0000000700000073
0x00007f0364beaac8:   00007f0300000059 0000000000000000
0x00007f0364beaad8:   01007f0300000059 00007f039e328d7b
0x00007f0364beaae8:   0000000100000000 00007f0364beab90
0x00007f0364beaaf8:   00007f039e86e6ce 00007f0364beb0b0
0x00007f0364beab08:   00007f0364beb0a0 00007f039e328d79
0x00007f0364beab18:   00007f0364beb240 0000000000000000
0x00007f0364beab28:   00007f039e84092d 0000000000000000
0x00007f0364beab38:   00007f039e840241 00007f039e3136bb
0x00007f0364beab48:   00007f0364beac18 00007f0364beac08
0x00007f0364beab58:   0000003000000000 00007f0300000000
0x00007f0364beab68:   00007f0364beac20 0000000700000000
0x00007f0364beab78:   00007f0364beac48 00007f0300000000
0x00007f0364beab88:   00007f0300000020 0000000700000000 

Instructions: (pc=0x00007f039e94a5bb)
0x00007f039e94a59b:   28 4e f5 72 07 4d 8d 89 f9 ff ff ff 48 8d 52 c0
0x00007f039e94a5ab:   41 ff e1 0f 0b 0f 18 86 c0 01 00 00 48 83 ea 40
0x00007f039e94a5bb:   0f 28 56 05 0f 28 5e 15 0f 28 66 25 0f 28 6e 35
0x00007f039e94a5cb:   66 0f 6f f5 66 0f 3a 0f ec 0b 48 8d 76 40 66 0f 

Register to memory mapping:

RAX=0x00007f02f00f0ec2 is an unknown value
RBX=0x00007f034141ad6d is an unknown value
RCX=0x0000000000002000 is an unknown value
RDX=0x0000000000006bf2 is an unknown value
RSP=0x00007f0364bea998 is pointing into the stack for thread: 0x00007f039891c800
RBP=0x00007f0364bea9f0 is pointing into the stack for thread: 0x00007f039891c800
RSI=0x00007f034141effb is an unknown value
RDI=0x00007f02f00f5150 is an unknown value
R8 =0x00007f02f00f0ec2 is an unknown value
R9 =0x00007f039e94a5b0: <offset 0x1575b0> in /lib/x86_64-linux-gnu/libc.so.6 at 0x00007f039e7f3000
R10=0x00007f02f0000078 is an unknown value
R11=0x00007f039e9886d0: <offset 0x1956d0> in /lib/x86_64-linux-gnu/libc.so.6 at 0x00007f039e7f3000
R12=0x00007f034141ad3f is an unknown value
R13=0x00007f02f11d6a50 is an unknown value
R14=0x000000000000af00 is an unknown value
R15=0x00007f02f073caa0 is an unknown value


Stack: [0x00007f0364aee000,0x00007f0364bef000],  sp=0x00007f0364bea998,  free space=1010k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [libc.so.6+0x1575bb]
C  [libzip.so+0x12c7f]  ZIP_GetEntry2+0xff
C  [libzip.so+0x3ec0]  Java_java_util_zip_ZipFile_getEntry+0xf0
J 223  java.util.zip.ZipFile.getEntry(J[BZ)J (0 bytes) @ 0x00007f038932a60e [0x00007f038932a540+0xce]
J 6144 C2 java.net.URLClassLoader$1.run()Ljava/lang/Object; (5 bytes) @ 0x00007f038a0f047c [0x00007f038a0ef880+0xbfc]
v  ~StubRoutines::call_stub
V  [libjvm.so+0x693e76]  JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*)+0x1056
V  [libjvm.so+0x72d14c]  JVM_DoPrivileged+0x27c
J 212  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;)Ljava/lang/Object; (0 bytes) @ 0x00007f03893229d5 [0x00007f0389322900+0xd5]
J 8203 C2 org.bukkit.plugin.java.JavaPluginLoader.getClassByName(Ljava/lang/String;)Ljava/lang/Class; (74 bytes) @ 0x00007f038aa0de6c [0x00007f038aa0cd20+0x114c]
J 8919 C2 org.bukkit.plugin.java.PluginClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class; (7 bytes) @ 0x00007f038ab3d8f4 [0x00007f038ab3d2e0+0x614]
J 7912 C2 java.lang.ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class; (122 bytes) @ 0x00007f038a229264 [0x00007f038a228ec0+0x3a4]
J 3161 C2 java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class; (7 bytes) @ 0x00007f038935e820 [0x00007f038935e7e0+0x40]
v  ~StubRoutines::call_stub
V  [libjvm.so+0x693e76]  JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*)+0x1056
V  [libjvm.so+0x694381]  JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*)+0x321
V  [libjvm.so+0x6947d6]  JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Handle, Thread*)+0x56
V  [libjvm.so+0xa40db0]  SystemDictionary::load_instance_class(Symbol*, Handle, Thread*)+0x3f0
V  [libjvm.so+0xa3fcfc]  SystemDictionary::resolve_instance_class_or_null(Symbol*, Handle, Handle, Thread*)+0x78c
V  [libjvm.so+0xa411d3]  SystemDictionary::resolve_or_fail(Symbol*, Handle, Handle, bool, Thread*)+0x33
V  [libjvm.so+0x4f6348]  ConstantPool::klass_at_impl(constantPoolHandle, int, Thread*)+0x158
V  [libjvm.so+0x6885d1]  InterpreterRuntime::_new(JavaThread*, ConstantPool*, int)+0x71
j  net.aufdemrand.denizencore.scripts.commands.core.ForeachCommand.execute(Lnet/aufdemrand/denizencore/scripts/ScriptEntry;)V+994
j  net.aufdemrand.denizencore.scripts.commands.CommandExecuter.execute(Lnet/aufdemrand/denizencore/scripts/ScriptEntry;)Z+1534
j  net.aufdemrand.denizencore.scripts.queues.ScriptEngine.revolve(Lnet/aufdemrand/denizencore/scripts/queues/ScriptQueue;)V+27
j  net.aufdemrand.denizencore.scripts.queues.ScriptQueue.revolve()V+29
j  net.aufdemrand.denizencore.scripts.queues.core.InstantQueue.onStart()V+4
j  net.aufdemrand.denizencore.scripts.queues.ScriptQueue$1.run()V+24
j  net.aufdemrand.denizencore.scripts.queues.ScriptQueue.start()V+331
J 14635 C1 net.aufdemrand.denizencore.events.OldEventManager.doEvents(Ljava/util/List;Lnet/aufdemrand/denizencore/scripts/ScriptEntryData;Ljava/util/Map;)Ljava/util/List; (418 bytes) @ 0x00007f038bb1447c [0x00007f038bb0eec0+0x55bc]
j  net.aufdemrand.denizen.Denizen.onDisable()V+39
j  org.bukkit.plugin.java.JavaPlugin.setEnabled(Z)V+28
j  org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(Lorg/bukkit/plugin/Plugin;)V+87
j  org.bukkit.plugin.SimplePluginManager.disablePlugin(Lorg/bukkit/plugin/Plugin;)V+16
j  org.bukkit.plugin.SimplePluginManager.disablePlugins()V+17
j  org.bukkit.craftbukkit.v1_12_R1.CraftServer.disablePlugins()V+4
j  net.minecraft.server.v1_12_R1.MinecraftServer.stop()V+52
j  org.spigotmc.RestartCommand.restart(Ljava/io/File;)V+180
j  org.spigotmc.RestartCommand.restart()V+10
j  org.spigotmc.RestartCommand$1.run()V+0
j  net.minecraft.server.v1_12_R1.MinecraftServer.D()V+112
J 14737 C1 net.minecraft.server.v1_12_R1.DedicatedServer.D()V (9 bytes) @ 0x00007f038bafedc4 [0x00007f038bafed40+0x84]
J 14735 C1 net.minecraft.server.v1_12_R1.MinecraftServer.C()V (452 bytes) @ 0x00007f038baf3c14 [0x00007f038baf3900+0x314]
J 15379% C2 net.minecraft.server.v1_12_R1.MinecraftServer.run()V (741 bytes) @ 0x00007f038b56e414 [0x00007f038b56e280+0x194]
j  java.lang.Thread.run()V+11
v  ~StubRoutines::call_stub
V  [libjvm.so+0x693e76]  JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*)+0x1056
V  [libjvm.so+0x694381]  JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*)+0x321
V  [libjvm.so+0x694827]  JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*)+0x47
V  [libjvm.so+0x72fbb0]  thread_entry(JavaThread*, Thread*)+0xa0
V  [libjvm.so+0xa79b53]  JavaThread::thread_main_inner()+0x103
V  [libjvm.so+0xa79c9c]  JavaThread::run()+0x11c
V  [libjvm.so+0x92a728]  java_start(Thread*)+0x108
C  [libpthread.so.0+0x76ba]  start_thread+0xca

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
J 223  java.util.zip.ZipFile.getEntry(J[BZ)J (0 bytes) @ 0x00007f038932a598 [0x00007f038932a540+0x58]
J 6144 C2 java.net.URLClassLoader$1.run()Ljava/lang/Object; (5 bytes) @ 0x00007f038a0f047c [0x00007f038a0ef880+0xbfc]
v  ~StubRoutines::call_stub
J 212  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;)Ljava/lang/Object; (0 bytes) @ 0x00007f0389322963 [0x00007f0389322900+0x63]
J 8203 C2 org.bukkit.plugin.java.JavaPluginLoader.getClassByName(Ljava/lang/String;)Ljava/lang/Class; (74 bytes) @ 0x00007f038aa0de6c [0x00007f038aa0cd20+0x114c]
J 8919 C2 org.bukkit.plugin.java.PluginClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class; (7 bytes) @ 0x00007f038ab3d8f4 [0x00007f038ab3d2e0+0x614]
J 7912 C2 java.lang.ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class; (122 bytes) @ 0x00007f038a229264 [0x00007f038a228ec0+0x3a4]
J 3161 C2 java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class; (7 bytes) @ 0x00007f038935e820 [0x00007f038935e7e0+0x40]
v  ~StubRoutines::call_stub
j  net.aufdemrand.denizencore.scripts.commands.core.ForeachCommand.execute(Lnet/aufdemrand/denizencore/scripts/ScriptEntry;)V+994
j  net.aufdemrand.denizencore.scripts.commands.CommandExecuter.execute(Lnet/aufdemrand/denizencore/scripts/ScriptEntry;)Z+1534
j  net.aufdemrand.denizencore.scripts.queues.ScriptEngine.revolve(Lnet/aufdemrand/denizencore/scripts/queues/ScriptQueue;)V+27
j  net.aufdemrand.denizencore.scripts.queues.ScriptQueue.revolve()V+29
j  net.aufdemrand.denizencore.scripts.queues.core.InstantQueue.onStart()V+4
j  net.aufdemrand.denizencore.scripts.queues.ScriptQueue$1.run()V+24
j  net.aufdemrand.denizencore.scripts.queues.ScriptQueue.start()V+331
J 14635 C1 net.aufdemrand.denizencore.events.OldEventManager.doEvents(Ljava/util/List;Lnet/aufdemrand/denizencore/scripts/ScriptEntryData;Ljava/util/Map;)Ljava/util/List; (418 bytes) @ 0x00007f038bb1447c [0x00007f038bb0eec0+0x55bc]
j  net.aufdemrand.denizen.Denizen.onDisable()V+39
j  org.bukkit.plugin.java.JavaPlugin.setEnabled(Z)V+28
j  org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(Lorg/bukkit/plugin/Plugin;)V+87
j  org.bukkit.plugin.SimplePluginManager.disablePlugin(Lorg/bukkit/plugin/Plugin;)V+16
j  org.bukkit.plugin.SimplePluginManager.disablePlugins()V+17
j  org.bukkit.craftbukkit.v1_12_R1.CraftServer.disablePlugins()V+4
j  net.minecraft.server.v1_12_R1.MinecraftServer.stop()V+52
j  org.spigotmc.RestartCommand.restart(Ljava/io/File;)V+180
j  org.spigotmc.RestartCommand.restart()V+10
j  org.spigotmc.RestartCommand$1.run()V+0
j  net.minecraft.server.v1_12_R1.MinecraftServer.D()V+112
J 14737 C1 net.minecraft.server.v1_12_R1.DedicatedServer.D()V (9 bytes) @ 0x00007f038bafedc4 [0x00007f038bafed40+0x84]
J 14735 C1 net.minecraft.server.v1_12_R1.MinecraftServer.C()V (452 bytes) @ 0x00007f038baf3c14 [0x00007f038baf3900+0x314]
J 15379% C2 net.minecraft.server.v1_12_R1.MinecraftServer.run()V (741 bytes) @ 0x00007f038b56e414 [0x00007f038b56e280+0x194]
j  java.lang.Thread.run()V+11
v  ~StubRoutines::call_stub

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x00007f02f0e39800 JavaThread "pool-14-thread-1" [_thread_blocked, id=225, stack(0x00007f020e7ee000,0x00007f020e8ef000)]
  0x00007f02f0e34000 JavaThread "Chunk I/O Executor Thread-1" daemon [_thread_blocked, id=224, stack(0x00007f020e8ef000,0x00007f020e9f0000)]
  0x00007f02f03eb800 JavaThread "File IO Thread" [_thread_blocked, id=217, stack(0x00007f020ebf0000,0x00007f020ecf1000)]
  0x00007f02f121c800 JavaThread "Thread-22" [_thread_blocked, id=216, stack(0x00007f020ecf1000,0x00007f020edf2000)]
  0x00007f02f0182000 JavaThread "Timer-4" daemon [_thread_blocked, id=215, stack(0x00007f020eff2000,0x00007f020f0f3000)]
  0x00007f02f27d6800 JavaThread "Timer-3" daemon [_thread_blocked, id=213, stack(0x00007f020f2f3000,0x00007f020f3f4000)]
  0x00007f02f003f000 JavaThread "Craft Scheduler Thread - 21" [_thread_blocked, id=209, stack(0x00007f020f6f7000,0x00007f020f7f8000)]
  0x00007f02f26a9800 JavaThread "Query Listener #1" [_thread_in_native, id=185, stack(0x00007f0291005000,0x00007f0291106000)]
  0x00007f02f11e8000 JavaThread "pool-50-thread-1" [_thread_blocked, id=183, stack(0x00007f0291a07000,0x00007f0291b08000)]
  0x00007f02f11e6800 JavaThread "pool-47-thread-1" [_thread_blocked, id=182, stack(0x00007f0291b08000,0x00007f0291c09000)]
  0x00007f02f11e4800 JavaThread "pool-44-thread-1" [_thread_blocked, id=181, stack(0x00007f0291c09000,0x00007f0291d0a000)]
  0x00007f02f11e3000 JavaThread "pool-41-thread-1" [_thread_blocked, id=180, stack(0x00007f0291d0a000,0x00007f0291e0b000)]
  0x00007f02f11b7800 JavaThread "Timer-2" [_thread_blocked, id=172, stack(0x00007f0292512000,0x00007f0292613000)]
  0x00007f02f10e0800 JavaThread "Timer-1" [_thread_blocked, id=171, stack(0x00007f0292afe000,0x00007f0292bff000)]
  0x00007f02f1035000 JavaThread "ProtocolLib-StructureCompiler 0" daemon [_thread_blocked, id=170, stack(0x00007f03187d3000,0x00007f03188d4000)]
  0x00007f02a4001800 JavaThread "pool-13-thread-3" [_thread_blocked, id=169, stack(0x00007f031afdb000,0x00007f031b0dc000)]
  0x00007f02f0175800 JavaThread "MCStats / Plugin Metrics" [_thread_in_native, id=168, stack(0x00007f03182d0000,0x00007f03183d1000)]
  0x00007f02983b2000 JavaThread "H2 Log Writer DATABASE" daemon [_thread_blocked, id=167, stack(0x00007f03183d1000,0x00007f03184d2000)]
  0x00007f0298025800 JavaThread "H2 File Lock Watchdog /mnt/plugins/Craftconomy3/database.lock.db" daemon [_thread_blocked, id=166, stack(0x00007f03186d2000,0x00007f03187d3000)]
  0x00007f02f0ece800 JavaThread "Hikari housekeeper (pool HikariPool-0)" daemon [_thread_blocked, id=163, stack(0x00007f03188d4000,0x00007f03189d5000)]
  0x00007f02f0ebf000 JavaThread "Abandoned connection cleanup thread" daemon [_thread_blocked, id=162, stack(0x00007f03189d5000,0x00007f0318ad6000)]
  0x00007f02ac00b000 JavaThread "threadDeathWatcher-2-1" daemon [_thread_blocked, id=159, stack(0x00007f031acd8000,0x00007f031add9000)]
  0x00007f02f286d000 JavaThread "pool-13-thread-2 Acceptor0 SelectChannelConnector@85.131.184.65:8123" [_thread_in_native, id=158, stack(0x00007f031add9000,0x00007f031aeda000)]
  0x00007f02f2858800 JavaThread "pool-13-thread-1 Selector0" [_thread_in_native, id=157, stack(0x00007f031aeda000,0x00007f031afdb000)]
  0x00007f02f2853000 JavaThread "HashSessionScavenger-0" daemon [_thread_blocked, id=156, stack(0x00007f0340331000,0x00007f0340432000)]
  0x00007f02d8007000 JavaThread "Netty Epoll Server IO #2" daemon [_thread_in_native, id=154, stack(0x00007f031b0dc000,0x00007f031b1dd000)]
  0x00007f02f2806800 JavaThread "Dynmap Render Thread" daemon [_thread_blocked, id=153, stack(0x00007f031b3dd000,0x00007f031b4de000)]
  0x00007f02f2805000 JavaThread "Dynmap Render Thread" daemon [_thread_blocked, id=152, stack(0x00007f031b4de000,0x00007f031b5df000)]
  0x00007f02f27f3000 JavaThread "Dynmap Render Thread" daemon [_thread_blocked, id=151, stack(0x00007f031b5df000,0x00007f031b6e0000)]
  0x00007f02f27d9000 JavaThread "Thread-9" [_thread_blocked, id=150, stack(0x00007f031b6e0000,0x00007f031b7e1000)]
  0x00007f02d8005800 JavaThread "Netty Epoll Server IO #1" daemon [_thread_in_native, id=147, stack(0x00007f031b8e2000,0x00007f031b9e3000)]
  0x00007f02f0a0b800 JavaThread "Timer-0" daemon [_thread_blocked, id=143, stack(0x00007f0340832000,0x00007f0340933000)]
  0x00007f02f04f9800 JavaThread "Netty Epoll Server IO #0" daemon [_thread_in_native, id=142, stack(0x00007f03417ea000,0x00007f03418eb000)]
  0x00007f02f0468000 JavaThread "Spigot Metrics Thread" daemon [_thread_blocked, id=141, stack(0x00007f0341cff000,0x00007f0341e00000)]
  0x00007f02f03dd000 JavaThread "Spigot Watchdog Thread" [_thread_blocked, id=140, stack(0x00007f0364009000,0x00007f036410a000)]
  0x00007f02f034f800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=139, stack(0x00007f036410a000,0x00007f036420b000)]
  0x00007f02f0023000 JavaThread "Server console handler" daemon [_thread_in_native, id=138, stack(0x00007f03648ec000,0x00007f03649ed000)]
  0x00007f02f001a000 JavaThread "Thread-3" [_thread_blocked, id=137, stack(0x00007f03649ed000,0x00007f0364aee000)]
  0x00007f0398009800 JavaThread "DestroyJavaVM" [_thread_blocked, id=101, stack(0x00007f039f327000,0x00007f039f428000)]
=>0x00007f039891c800 JavaThread "Server thread" [_thread_in_native, id=136, stack(0x00007f0364aee000,0x00007f0364bef000)]
  0x00007f039885b000 JavaThread "Server Infinisleeper" daemon [_thread_blocked, id=135, stack(0x00007f0364bef000,0x00007f0364cf0000)]
  0x00007f0398897000 JavaThread "Snooper Timer" daemon [_thread_blocked, id=134, stack(0x00007f0365bba000,0x00007f0365cbb000)]
  0x00007f03982d4000 JavaThread "Service Thread" daemon [_thread_blocked, id=131, stack(0x00007f0366ced000,0x00007f0366dee000)]
  0x00007f03982d1000 JavaThread "C1 CompilerThread11" daemon [_thread_blocked, id=130, stack(0x00007f0366dee000,0x00007f0366eef000)]
  0x00007f03982cf000 JavaThread "C1 CompilerThread10" daemon [_thread_blocked, id=129, stack(0x00007f0366eef000,0x00007f0366ff0000)]
  0x00007f03982cd000 JavaThread "C1 CompilerThread9" daemon [_thread_blocked, id=128, stack(0x00007f0366ff0000,0x00007f03670f1000)]
  0x00007f03982ca800 JavaThread "C1 CompilerThread8" daemon [_thread_blocked, id=127, stack(0x00007f03670f1000,0x00007f03671f2000)]
  0x00007f03982c8800 JavaThread "C2 CompilerThread7" daemon [_thread_blocked, id=126, stack(0x00007f03671f2000,0x00007f03672f3000)]
  0x00007f03982c6800 JavaThread "C2 CompilerThread6" daemon [_thread_blocked, id=125, stack(0x00007f03672f3000,0x00007f03673f4000)]
  0x00007f03982c4000 JavaThread "C2 CompilerThread5" daemon [_thread_blocked, id=124, stack(0x00007f03673f4000,0x00007f03674f5000)]
  0x00007f03982ba000 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=123, stack(0x00007f03674f5000,0x00007f03675f6000)]
  0x00007f03982b8000 JavaThread "C2 CompilerThread3" daemon [_thread_blocked, id=122, stack(0x00007f03675f6000,0x00007f03676f7000)]
  0x00007f03982b5800 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=121, stack(0x00007f03676f7000,0x00007f03677f8000)]
  0x00007f03982b4000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=120, stack(0x00007f03677f8000,0x00007f03678f9000)]
  0x00007f03982b1000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=119, stack(0x00007f03678f9000,0x00007f03679fa000)]
  0x00007f03982af800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=118, stack(0x00007f03679fa000,0x00007f0367afb000)]
  0x00007f039827d000 JavaThread "Finalizer" daemon [_thread_blocked, id=117, stack(0x00007f0367afb000,0x00007f0367bfc000)]
  0x00007f0398278800 JavaThread "Reference Handler" daemon [_thread_blocked, id=116, stack(0x00007f0367bfc000,0x00007f0367cfd000)]

Other Threads:
  0x00007f0398271000 VMThread [stack: 0x00007f0367cfd000,0x00007f0367dfe000] [id=115]
  0x00007f03982d9000 WatcherThread [stack: 0x00007f0366bec000,0x00007f0366ced000] [id=132]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap:
 PSYoungGen      total 863232K, used 709270K [0x0000000780000000, 0x00000007bff80000, 0x00000007c0000000)
  eden space 693760K, 97% used [0x0000000780000000,0x00000007a9301948,0x00000007aa580000)
  from space 169472K, 20% used [0x00000007aa580000,0x00000007ac7240a8,0x00000007b4b00000)
  to   space 163840K, 0% used [0x00000007b5f80000,0x00000007b5f80000,0x00000007bff80000)
 ParOldGen       total 670208K, used 494481K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 73% used [0x0000000700000000,0x000000071e2e4578,0x0000000728e80000)
 Metaspace       used 87992K, capacity 90322K, committed 90368K, reserved 1128448K
  class space    used 10632K, capacity 11254K, committed 11264K, reserved 1048576K

Card table byte_map: [0x00007f03889ff000,0x00007f0389000000] byte_map_base: 0x00007f03851ff000

Marking Bits: (ParMarkBitMap*) 0x00007f039e7c4f80
 Begin Bits: [0x00007f0342000000, 0x00007f0345000000)
 End Bits:   [0x00007f0345000000, 0x00007f0348000000)

Polling page: 0x00007f039f42c000

CodeCache: size=245760Kb used=51610Kb max_used=51624Kb free=194150Kb
 bounds [0x00007f0389000000, 0x00007f038c2c0000, 0x00007f0398000000]
 total_blobs=13598 nmethods=12702 adapters=801
 compilation: enabled

Compilation events (10 events):
Event: 314.958 Thread 0x00007f03982d1000 17207       3       org.yaml.snakeyaml.scanner.Constant::has (24 bytes)
Event: 314.958 Thread 0x00007f03982d1000 nmethod 17207 0x00007f038c2afbd0 code [0x00007f038c2afd60, 0x00007f038c2b00b8]
Event: 314.959 Thread 0x00007f03982b5800 17209       4       org.yaml.snakeyaml.scanner.Constant::has (24 bytes)
Event: 314.960 Thread 0x00007f03982cf000 nmethod 17208% 0x00007f038c2b0190 code [0x00007f038c2b04e0, 0x00007f038c2b2598]
Event: 314.960 Thread 0x00007f03982ca800 17210       3       org.yaml.snakeyaml.emitter.Emitter::writePlain (391 bytes)
Event: 314.962 Thread 0x00007f03982ca800 nmethod 17210 0x00007f038c2b3510 code [0x00007f038c2b3840, 0x00007f038c2b56f8]
Event: 314.964 Thread 0x00007f03982b5800 nmethod 17209 0x00007f038c2b9290 code [0x00007f038c2b9400, 0x00007f038c2b9688]
Event: 314.966 Thread 0x00007f03982c8800 17211 %     4       org.yaml.snakeyaml.emitter.Emitter::writePlain @ 68 (391 bytes)
Event: 314.978 Thread 0x00007f03982c8800 nmethod 17211% 0x00007f038c2b6b10 code [0x00007f038c2b6d00, 0x00007f038c2b7510]
Event: 314.978 Thread 0x00007f03982c6800 17212       4       org.yaml.snakeyaml.emitter.Emitter::writePlain (391 bytes)

GC Heap History (10 events):
Event: 53.136 GC heap before
{Heap before GC invocations=18 (full 5):
 PSYoungGen      total 877056K, used 717184K [0x0000000780000000, 0x00000007c0000000, 0x00000007c0000000)
  eden space 706560K, 100% used [0x0000000780000000,0x00000007ab200000,0x00000007ab200000)
  from space 170496K, 6% used [0x00000007b5980000,0x00000007b63e0068,0x00000007c0000000)
  to   space 171008K, 0% used [0x00000007ab200000,0x00000007ab200000,0x00000007b5900000)
 ParOldGen       total 670208K, used 427869K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 63% used [0x0000000700000000,0x000000071a1d77f8,0x0000000728e80000)
 Metaspace       used 80543K, capacity 82196K, committed 82304K, reserved 1120256K
  class space    used 10115K, capacity 10613K, committed 10624K, reserved 1048576K
Event: 53.217 GC heap after
Heap after GC invocations=18 (full 5):
 PSYoungGen      total 759808K, used 52867K [0x0000000780000000, 0x00000007bef80000, 0x00000007c0000000)
  eden space 706560K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007ab200000)
  from space 53248K, 99% used [0x00000007ab200000,0x00000007ae5a0f68,0x00000007ae600000)
  to   space 162304K, 0% used [0x00000007b5100000,0x00000007b5100000,0x00000007bef80000)
 ParOldGen       total 670208K, used 428472K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 63% used [0x0000000700000000,0x000000071a26e0e8,0x0000000728e80000)
 Metaspace       used 80543K, capacity 82196K, committed 82304K, reserved 1120256K
  class space    used 10115K, capacity 10613K, committed 10624K, reserved 1048576K
}
Event: 58.420 GC heap before
{Heap before GC invocations=19 (full 5):
 PSYoungGen      total 759808K, used 759427K [0x0000000780000000, 0x00000007bef80000, 0x00000007c0000000)
  eden space 706560K, 100% used [0x0000000780000000,0x00000007ab200000,0x00000007ab200000)
  from space 53248K, 99% used [0x00000007ab200000,0x00000007ae5a0f68,0x00000007ae600000)
  to   space 162304K, 0% used [0x00000007b5100000,0x00000007b5100000,0x00000007bef80000)
 ParOldGen       total 670208K, used 428478K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 63% used [0x0000000700000000,0x000000071a26fa48,0x0000000728e80000)
 Metaspace       used 84863K, capacity 87126K, committed 87424K, reserved 1126400K
  class space    used 10441K, capacity 11087K, committed 11136K, reserved 1048576K
Event: 58.656 GC heap after
Heap after GC invocations=19 (full 5):
 PSYoungGen      total 850432K, used 137853K [0x0000000780000000, 0x00000007c0000000, 0x00000007c0000000)
  eden space 688128K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007aa000000)
  from space 162304K, 84% used [0x00000007b5100000,0x00000007bd79f5b8,0x00000007bef80000)
  to   space 180224K, 0% used [0x00000007aa000000,0x00000007aa000000,0x00000007b5000000)
 ParOldGen       total 670208K, used 465046K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 69% used [0x0000000700000000,0x000000071c625b40,0x0000000728e80000)
 Metaspace       used 84863K, capacity 87126K, committed 87424K, reserved 1126400K
  class space    used 10441K, capacity 11087K, committed 11136K, reserved 1048576K
}
Event: 83.582 GC heap before
{Heap before GC invocations=20 (full 5):
 PSYoungGen      total 850432K, used 825981K [0x0000000780000000, 0x00000007c0000000, 0x00000007c0000000)
  eden space 688128K, 100% used [0x0000000780000000,0x00000007aa000000,0x00000007aa000000)
  from space 162304K, 84% used [0x00000007b5100000,0x00000007bd79f5b8,0x00000007bef80000)
  to   space 180224K, 0% used [0x00000007aa000000,0x00000007aa000000,0x00000007b5000000)
 ParOldGen       total 670208K, used 465062K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 69% used [0x0000000700000000,0x000000071c629828,0x0000000728e80000)
 Metaspace       used 86609K, capacity 88926K, committed 89088K, reserved 1126400K
  class space    used 10570K, capacity 11198K, committed 11264K, reserved 1048576K
Event: 83.637 GC heap after
Heap after GC invocations=20 (full 5):
 PSYoungGen      total 868352K, used 37629K [0x0000000780000000, 0x00000007c0000000, 0x00000007c0000000)
  eden space 688128K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007aa000000)
  from space 180224K, 20% used [0x00000007aa000000,0x00000007ac4bf660,0x00000007b5000000)
  to   space 174592K, 0% used [0x00000007b5580000,0x00000007b5580000,0x00000007c0000000)
 ParOldGen       total 670208K, used 494465K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 73% used [0x0000000700000000,0x000000071e2e0578,0x0000000728e80000)
 Metaspace       used 86609K, capacity 88926K, committed 89088K, reserved 1126400K
  class space    used 10570K, capacity 11198K, committed 11264K, reserved 1048576K
}
Event: 152.843 GC heap before
{Heap before GC invocations=21 (full 5):
 PSYoungGen      total 868352K, used 725757K [0x0000000780000000, 0x00000007c0000000, 0x00000007c0000000)
  eden space 688128K, 100% used [0x0000000780000000,0x00000007aa000000,0x00000007aa000000)
  from space 180224K, 20% used [0x00000007aa000000,0x00000007ac4bf660,0x00000007b5000000)
  to   space 174592K, 0% used [0x00000007b5580000,0x00000007b5580000,0x00000007c0000000)
 ParOldGen       total 670208K, used 494465K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 73% used [0x0000000700000000,0x000000071e2e0578,0x0000000728e80000)
 Metaspace       used 87045K, capacity 89356K, committed 89600K, reserved 1128448K
  class space    used 10586K, capacity 11243K, committed 11264K, reserved 1048576K
Event: 152.882 GC heap after
Heap after GC invocations=21 (full 5):
 PSYoungGen      total 852480K, used 35136K [0x0000000780000000, 0x00000007bf080000, 0x00000007c0000000)
  eden space 693760K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007aa580000)
  from space 158720K, 22% used [0x00000007b5580000,0x00000007b77d00b8,0x00000007bf080000)
  to   space 169472K, 0% used [0x00000007aa580000,0x00000007aa580000,0x00000007b4b00000)
 ParOldGen       total 670208K, used 494473K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 73% used [0x0000000700000000,0x000000071e2e2578,0x0000000728e80000)
 Metaspace       used 87045K, capacity 89356K, committed 89600K, reserved 1128448K
  class space    used 10586K, capacity 11243K, committed 11264K, reserved 1048576K
}
Event: 238.788 GC heap before
{Heap before GC invocations=22 (full 5):
 PSYoungGen      total 852480K, used 728896K [0x0000000780000000, 0x00000007bf080000, 0x00000007c0000000)
  eden space 693760K, 100% used [0x0000000780000000,0x00000007aa580000,0x00000007aa580000)
  from space 158720K, 22% used [0x00000007b5580000,0x00000007b77d00b8,0x00000007bf080000)
  to   space 169472K, 0% used [0x00000007aa580000,0x00000007aa580000,0x00000007b4b00000)
 ParOldGen       total 670208K, used 494473K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 73% used [0x0000000700000000,0x000000071e2e2578,0x0000000728e80000)
 Metaspace       used 87329K, capacity 89686K, committed 89856K, reserved 1128448K
  class space    used 10591K, capacity 11244K, committed 11264K, reserved 1048576K
Event: 238.813 GC heap after
Heap after GC invocations=22 (full 5):
 PSYoungGen      total 863232K, used 34448K [0x0000000780000000, 0x00000007bff80000, 0x00000007c0000000)
  eden space 693760K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007aa580000)
  from space 169472K, 20% used [0x00000007aa580000,0x00000007ac7240a8,0x00000007b4b00000)
  to   space 163840K, 0% used [0x00000007b5f80000,0x00000007b5f80000,0x00000007bff80000)
 ParOldGen       total 670208K, used 494481K [0x0000000700000000, 0x0000000728e80000, 0x0000000780000000)
  object space 670208K, 73% used [0x0000000700000000,0x000000071e2e4578,0x0000000728e80000)
 Metaspace       used 87329K, capacity 89686K, committed 89856K, reserved 1128448K
  class space    used 10591K, capacity 11244K, committed 11264K, reserved 1048576K
}

Deoptimization events (10 events):
Event: 314.895 Thread 0x00007f039891c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f038bb9a538 method=net.minecraft.server.v1_12_R1.MinecraftServer.D()V @ 126
Event: 314.895 Thread 0x00007f039891c800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00007f038a7f6910 method=org.bukkit.plugin.RegisteredListener.callEvent(Lorg/bukkit/event/Event;)V @ 36
Event: 314.897 Thread 0x00007f039891c800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00007f038a7f6910 method=org.bukkit.plugin.RegisteredListener.callEvent(Lorg/bukkit/event/Event;)V @ 36
Event: 314.904 Thread 0x00007f039891c800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00007f038a7f6910 method=org.bukkit.plugin.RegisteredListener.callEvent(Lorg/bukkit/event/Event;)V @ 36
Event: 314.904 Thread 0x00007f039891c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f038a3ef8f4 method=java.io.UnixFileSystem.normalize(Ljava/lang/String;)Ljava/lang/String; @ 34
Event: 314.938 Thread 0x00007f039891c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f038ab24160 method=java.io.UnixFileSystem.normalize(Ljava/lang/String;)Ljava/lang/String; @ 34
Event: 314.953 Thread 0x00007f039891c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f038ae5256c method=org.yaml.snakeyaml.emitter.Emitter.checkSimpleKey()Z @ 188
Event: 314.954 Thread 0x00007f039891c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f038ae380b4 method=org.yaml.snakeyaml.emitter.Emitter.checkSimpleKey()Z @ 188
Event: 314.956 Thread 0x00007f039891c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f038ae1d678 method=org.yaml.snakeyaml.emitter.Emitter.writePlain(Ljava/lang/String;Z)V @ 129
Event: 314.957 Thread 0x00007f039891c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f03895cbd40 method=org.yaml.snakeyaml.scanner.Constant.has(I)Z @ 4

Internal exceptions (10 events):
Event: 310.043 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x0000000797497998) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 310.544 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x0000000797497bf8) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 311.045 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x0000000797497e58) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 311.546 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x00000007974980b8) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 312.046 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x0000000797498318) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 312.547 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x0000000797498578) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 313.055 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x00000007974987d8) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 313.556 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x0000000797498a38) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 314.057 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x0000000797498c98) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]
Event: 314.560 Thread 0x00007f02f26a9800 Exception <a 'java/net/SocketTimeoutException': Receive timed out> (0x0000000797498ef8) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u151/9699/hotspot/src/share/vm/prims/jni.cpp, line 735]

Events (10 events):
Event: 314.991 Thread 0x00007f039891c800 DEOPT PACKING pc=0x00007f038c2b54f2 sp=0x00007f0364bec300
Event: 314.991 Thread 0x00007f039891c800 DEOPT UNPACKING pc=0x00007f0389047233 sp=0x00007f0364bec088 mode 0
Event: 314.992 Thread 0x00007f039891c800 DEOPT PACKING pc=0x00007f038c2b54f2 sp=0x00007f0364bec1c0
Event: 314.992 Thread 0x00007f039891c800 DEOPT UNPACKING pc=0x00007f0389047233 sp=0x00007f0364bebf48 mode 0
Event: 314.995 Thread 0x00007f039891c800 DEOPT PACKING pc=0x00007f038c2b54f2 sp=0x00007f0364bec350
Event: 314.995 Thread 0x00007f039891c800 DEOPT UNPACKING pc=0x00007f0389047233 sp=0x00007f0364bec0d8 mode 0
Event: 314.997 Thread 0x00007f039891c800 DEOPT PACKING pc=0x00007f038c2b54f2 sp=0x00007f0364bec2f0
Event: 314.997 Thread 0x00007f039891c800 DEOPT UNPACKING pc=0x00007f0389047233 sp=0x00007f0364bec078 mode 0
Event: 315.000 loading class net/aufdemrand/denizencore/scripts/commands/core/ForeachCommand$ForeachData
Event: 315.000 loading class net/aufdemrand/denizencore/scripts/commands/core/ForeachCommand$ForeachData done


Dynamic libraries:
00400000-00401000 r-xp 00000000 fd:2d 404957                             /usr/java/jdk1.8.0_151/bin/java
00600000-00601000 rw-p 00000000 fd:2d 404957                             /usr/java/jdk1.8.0_151/bin/java
021c6000-021e7000 rw-p 00000000 00:00 0                                  [heap]
700000000-728e80000 rw-p 00000000 00:00 0 
728e80000-780000000 ---p 00000000 00:00 0 
780000000-7bff80000 rw-p 00000000 00:00 0 
7bff80000-7c0000000 ---p 00000000 00:00 0 
7c0000000-7c0b00000 rw-p 00000000 00:00 0 
7c0b00000-800000000 ---p 00000000 00:00 0 
7f01b4000000-7f01b4021000 rw-p 00000000 00:00 0 
7f01b4021000-7f01b8000000 ---p 00000000 00:00 0 
7f01bc000000-7f01bc861000 rw-p 00000000 00:00 0 
7f01bc861000-7f01c0000000 ---p 00000000 00:00 0 
7f01c0000000-7f01c0021000 rw-p 00000000 00:00 0 
7f01c0021000-7f01c4000000 ---p 00000000 00:00 0 
7f01c4000000-7f01c428f000 rw-p 00000000 00:00 0 
7f01c428f000-7f01c8000000 ---p 00000000 00:00 0 
7f01c8000000-7f01c804a000 rw-p 00000000 00:00 0 
7f01c804a000-7f01cc000000 ---p 00000000 00:00 0 
7f01cc000000-7f01cc05d000 rw-p 00000000 00:00 0 
7f01cc05d000-7f01d0000000 ---p 00000000 00:00 0 
7f01d0000000-7f01d0021000 rw-p 00000000 00:00 0 
7f01d0021000-7f01d4000000 ---p 00000000 00:00 0 
7f01d4000000-7f01d4043000 rw-p 00000000 00:00 0 
7f01d4043000-7f01d8000000 ---p 00000000 00:00 0 
7f01d8000000-7f01d8043000 rw-p 00000000 00:00 0 
7f01d8043000-7f01dc000000 ---p 00000000 00:00 0 
7f01dc000000-7f01dc043000 rw-p 00000000 00:00 0 
7f01dc043000-7f01e0000000 ---p 00000000 00:00 0 
7f01e0000000-7f01e0043000 rw-p 00000000 00:00 0 
7f01e0043000-7f01e4000000 ---p 00000000 00:00 0 
7f01e4000000-7f01e4043000 rw-p 00000000 00:00 0 
7f01e4043000-7f01e8000000 ---p 00000000 00:00 0 
7f01e8000000-7f01e8021000 rw-p 00000000 00:00 0 
7f01e8021000-7f01ec000000 ---p 00000000 00:00 0 
7f01ec000000-7f01ec044000 rw-p 00000000 00:00 0 
7f01ec044000-7f01f0000000 ---p 00000000 00:00 0 
7f01f0000000-7f01f0021000 rw-p 00000000 00:00 0 
7f01f0021000-7f01f4000000 ---p 00000000 00:00 0 
7f01f4000000-7f01f4021000 rw-p 00000000 00:00 0 
7f01f4021000-7f01f8000000 ---p 00000000 00:00 0 
7f01f8000000-7f01f8021000 rw-p 00000000 00:00 0 
7f01f8021000-7f01fc000000 ---p 00000000 00:00 0 
7f01fc000000-7f01fc021000 rw-p 00000000 00:00 0 
7f01fc021000-7f0200000000 ---p 00000000 00:00 0 
7f0200000000-7f0200021000 rw-p 00000000 00:00 0 
7f0200021000-7f0204000000 ---p 00000000 00:00 0 
7f0204000000-7f0204021000 rw-p 00000000 00:00 0 
7f0204021000-7f0208000000 ---p 00000000 00:00 0 
7f0208000000-7f0208021000 rw-p 00000000 00:00 0 
7f0208021000-7f020c000000 ---p 00000000 00:00 0 
7f020e2ed000-7f020e42d000 rw-p 00000000 00:00 0 
7f020e42d000-7f020e4f0000 ---p 00000000 00:00 0 
7f020e4f0000-7f020e7ee000 rw-p 00000000 00:00 0 
7f020e7ee000-7f020e7f1000 ---p 00000000 00:00 0 
7f020e7f1000-7f020e8ef000 rw-p 00000000 00:00 0 
7f020e8ef000-7f020e8f2000 ---p 00000000 00:00 0 
7f020e8f2000-7f020ebf0000 rw-p 00000000 00:00 0 
7f020ebf0000-7f020ebf3000 ---p 00000000 00:00 0 
7f020ebf3000-7f020ecf1000 rw-p 00000000 00:00 0 
7f020ecf1000-7f020ecf4000 ---p 00000000 00:00 0 
7f020ecf4000-7f020eff2000 rw-p 00000000 00:00 0 
7f020eff2000-7f020eff5000 ---p 00000000 00:00 0 
7f020eff5000-7f020f2f3000 rw-p 00000000 00:00 0 
7f020f2f3000-7f020f2f6000 ---p 00000000 00:00 0 
7f020f2f6000-7f020f3f4000 rw-p 00000000 00:00 0 
7f020f3f4000-7f020f3f7000 ---p 00000000 00:00 0 
7f020f3f7000-7f020f4f5000 rw-p 00000000 00:00 0 
7f020f4f5000-7f020f4f8000 ---p 00000000 00:00 0 
7f020f4f8000-7f020f5f6000 rw-p 00000000 00:00 0 
7f020f5f6000-7f020f5f9000 ---p 00000000 00:00 0 
7f020f5f9000-7f020f6f7000 rw-p 00000000 00:00 0 
7f020f6f7000-7f020f6fa000 ---p 00000000 00:00 0 
7f020f6fa000-7f020f7f8000 rw-p 00000000 00:00 0 
7f020f7f8000-7f020f7fb000 ---p 00000000 00:00 0 
7f020f7fb000-7f020f8f9000 rw-p 00000000 00:00 0 
7f020f8f9000-7f020f8fc000 ---p 00000000 00:00 0 
7f020f8fc000-7f020f9fa000 rw-p 00000000 00:00 0 
7f020f9fa000-7f020f9fd000 ---p 00000000 00:00 0 
7f020f9fd000-7f020fafb000 rw-p 00000000 00:00 0 
7f020fafb000-7f020fafe000 ---p 00000000 00:00 0 
7f020fafe000-7f020fbfc000 rw-p 00000000 00:00 0 
7f020fbfc000-7f020fbff000 ---p 00000000 00:00 0 
7f020fbff000-7f020fcfd000 rw-p 00000000 00:00 0 
7f020fcfd000-7f020fd00000 ---p 00000000 00:00 0 
7f020fd00000-7f020fdfe000 rw-p 00000000 00:00 0 
7f020fdfe000-7f020fe01000 ---p 00000000 00:00 0 
7f020fe01000-7f020feff000 rw-p 00000000 00:00 0 
7f020feff000-7f020ff02000 ---p 00000000 00:00 0 
7f020ff02000-7f0210000000 rw-p 00000000 00:00 0 
7f0210000000-7f0210021000 rw-p 00000000 00:00 0 
7f0210021000-7f0214000000 ---p 00000000 00:00 0 
7f0214000000-7f0214021000 rw-p 00000000 00:00 0 
7f0214021000-7f0218000000 ---p 00000000 00:00 0 
7f0218000000-7f0218021000 rw-p 00000000 00:00 0 
7f0218021000-7f021c000000 ---p 00000000 00:00 0 
7f021c000000-7f021c021000 rw-p 00000000 00:00 0 
7f021c021000-7f0220000000 ---p 00000000 00:00 0 
7f0220000000-7f0220043000 rw-p 00000000 00:00 0 
7f0220043000-7f0224000000 ---p 00000000 00:00 0 
7f0224000000-7f0224021000 rw-p 00000000 00:00 0 
7f0224021000-7f0228000000 ---p 00000000 00:00 0 
7f0228000000-7f0228021000 rw-p 00000000 00:00 0 
7f0228021000-7f022c000000 ---p 00000000 00:00 0 
7f022c000000-7f022c021000 rw-p 00000000 00:00 0 
7f022c021000-7f0230000000 ---p 00000000 00:00 0 
7f0230000000-7f0230086000 rw-p 00000000 00:00 0 
7f0230086000-7f0234000000 ---p 00000000 00:00 0 
7f0234000000-7f0234021000 rw-p 00000000 00:00 0 
7f0234021000-7f0238000000 ---p 00000000 00:00 0 
7f0238000000-7f0238021000 rw-p 00000000 00:00 0 
7f0238021000-7f023c000000 ---p 00000000 00:00 0 
7f023c000000-7f023c046000 rw-p 00000000 00:00 0 
7f023c046000-7f0240000000 ---p 00000000 00:00 0 
7f0240000000-7f0240021000 rw-p 00000000 00:00 0 
7f0240021000-7f0244000000 ---p 00000000 00:00 0 
7f0244000000-7f0244044000 rw-p 00000000 00:00 0 
7f0244044000-7f0248000000 ---p 00000000 00:00 0 
7f0248000000-7f0248021000 rw-p 00000000 00:00 0 
7f0248021000-7f024c000000 ---p 00000000 00:00 0 
7f024c000000-7f024c021000 rw-p 00000000 00:00 0 
7f024c021000-7f0250000000 ---p 00000000 00:00 0 
7f0250000000-7f0250021000 rw-p 00000000 00:00 0 
7f0250021000-7f0254000000 ---p 00000000 00:00 0 
7f0254000000-7f0254021000 rw-p 00000000 00:00 0 
7f0254021000-7f0258000000 ---p 00000000 00:00 0 
7f0258000000-7f0258021000 rw-p 00000000 00:00 0 
7f0258021000-7f025c000000 ---p 00000000 00:00 0 
7f025c000000-7f025c021000 rw-p 00000000 00:00 0 
7f025c021000-7f0260000000 ---p 00000000 00:00 0 
7f0260000000-7f0260021000 rw-p 00000000 00:00 0 
7f0260021000-7f0264000000 ---p 00000000 00:00 0 
7f0264000000-7f0264021000 rw-p 00000000 00:00 0 
7f0264021000-7f0268000000 ---p 00000000 00:00 0 
7f0268000000-7f0268021000 rw-p 00000000 00:00 0 
7f0268021000-7f026c000000 ---p 00000000 00:00 0 
7f026c000000-7f026c021000 rw-p 00000000 00:00 0 
7f026c021000-7f0270000000 ---p 00000000 00:00 0 
7f0270000000-7f0270021000 rw-p 00000000 00:00 0 
7f0270021000-7f0274000000 ---p 00000000 00:00 0 
7f0274000000-7f0274021000 rw-p 00000000 00:00 0 
7f0274021000-7f0278000000 ---p 00000000 00:00 0 
7f0278000000-7f0278021000 rw-p 00000000 00:00 0 
7f0278021000-7f027c000000 ---p 00000000 00:00 0 
7f027c000000-7f027c021000 rw-p 00000000 00:00 0 
7f027c021000-7f0280000000 ---p 00000000 00:00 0 
7f0280000000-7f0280045000 rw-p 00000000 00:00 0 
7f0280045000-7f0284000000 ---p 00000000 00:00 0 
7f0284000000-7f0285e50000 rw-p 00000000 00:00 0 
7f0285e50000-7f0288000000 ---p 00000000 00:00 0 
7f0288000000-7f0288021000 rw-p 00000000 00:00 0 
7f0288021000-7f028c000000 ---p 00000000 00:00 0 
7f028c000000-7f028c021000 rw-p 00000000 00:00 0 
7f028c021000-7f0290000000 ---p 00000000 00:00 0 
7f02900f6000-7f02900f9000 ---p 00000000 00:00 0 
7f02900f9000-7f02901f7000 rw-p 00000000 00:00 0 
7f02901f7000-7f02901fa000 ---p 00000000 00:00 0 
7f02901fa000-7f02902f8000 rw-p 00000000 00:00 0 
7f02902f8000-7f02902fb000 ---p 00000000 00:00 0 
7f02902fb000-7f02903f9000 rw-p 00000000 00:00 0 
7f02903f9000-7f02903fc000 ---p 00000000 00:00 0 
7f02903fc000-7f02904fa000 rw-p 00000000 00:00 0 
7f02904fa000-7f02904fd000 ---p 00000000 00:00 0 
7f02904fd000-7f02905fb000 rw-p 00000000 00:00 0 
7f02905fb000-7f02905fe000 ---p 00000000 00:00 0 
7f02905fe000-7f02906fc000 rw-p 00000000 00:00 0 
7f02906fc000-7f02906ff000 ---p 00000000 00:00 0 
7f02906ff000-7f02907fd000 rw-p 00000000 00:00 0 
7f02907fd000-7f0290800000 ---p 00000000 00:00 0 
7f0290800000-7f02908fe000 rw-p 00000000 00:00 0 
7f02908fe000-7f0290901000 ---p 00000000 00:00 0 
7f0290901000-7f02909ff000 rw-p 00000000 00:00 0 
7f02909ff000-7f0290a02000 ---p 00000000 00:00 0 
7f0290a02000-7f0290b00000 rw-p 00000000 00:00 0 
7f0290b00000-7f0290b03000 ---p 00000000 00:00 0 
7f0290b03000-7f0290c01000 rw-p 00000000 00:00 0 
7f0290c01000-7f0290c04000 ---p 00000000 00:00 0 
7f0290c04000-7f0290d02000 rw-p 00000000 00:00 0 
7f0290d02000-7f0290d05000 ---p 00000000 00:00 0 
7f0290d05000-7f0290e03000 rw-p 00000000 00:00 0 
7f0290e03000-7f0290e06000 ---p 00000000 00:00 0 
7f0290e06000-7f0290f04000 rw-p 00000000 00:00 0 
7f0290f04000-7f0290f07000 ---p 00000000 00:00 0 
7f0290f07000-7f0291005000 rw-p 00000000 00:00 0 
7f0291005000-7f0291008000 ---p 00000000 00:00 0 
7f0291008000-7f0291306000 rw-p 00000000 00:00 0 
7f0291306000-7f0291506000 rw-p 00000000 00:00 0 
7f0291506000-7f0291706000 rw-p 00000000 00:00 0 
7f0291706000-7f0291906000 rw-p 00000000 00:00 0 
7f0291906000-7f0291909000 ---p 00000000 00:00 0 
7f0291909000-7f0291a07000 rw-p 00000000 00:00 0 
7f0291a07000-7f0291a0a000 ---p 00000000 00:00 0 
7f0291a0a000-7f0291b08000 rw-p 00000000 00:00 0 
7f0291b08000-7f0291b0b000 ---p 00000000 00:00 0 
7f0291b0b000-7f0291c09000 rw-p 00000000 00:00 0 
7f0291c09000-7f0291c0c000 ---p 00000000 00:00 0 
7f0291c0c000-7f0291d0a000 rw-p 00000000 00:00 0 
7f0291d0a000-7f0291d0d000 ---p 00000000 00:00 0 
7f0291d0d000-7f0291e0b000 rw-p 00000000 00:00 0 
7f0291e0b000-7f0291e0e000 ---p 00000000 00:00 0 
7f0291e0e000-7f0291f0c000 rw-p 00000000 00:00 0 
7f0291f0c000-7f0291f0f000 ---p 00000000 00:00 0 
7f0291f0f000-7f029200d000 rw-p 00000000 00:00 0 
7f029200d000-7f0292010000 ---p 00000000 00:00 0 
7f0292010000-7f029210e000 rw-p 00000000 00:00 0 
7f029210e000-7f0292111000 ---p 00000000 00:00 0 
7f0292111000-7f029220f000 rw-p 00000000 00:00 0 
7f029220f000-7f0292212000 ---p 00000000 00:00 0 
7f0292212000-7f0292310000 rw-p 00000000 00:00 0 
7f0292310000-7f0292313000 ---p 00000000 00:00 0 
7f0292313000-7f0292411000 rw-p 00000000 00:00 0 
7f0292411000-7f0292414000 ---p 00000000 00:00 0 
7f0292414000-7f0292512000 rw-p 00000000 00:00 0 
7f0292512000-7f0292515000 ---p 00000000 00:00 0 
7f0292515000-7f0292613000 rw-p 00000000 00:00 0 
7f0292613000-7f02926f8000 r-xp 00000000 fd:2d 408162                     /tmp/sqlite-3.20.1-8d0594b3-640d-4b7b-860d-5892b6fbe783-libsqlitejdbc.so
7f02926f8000-7f02928f7000 ---p 000e5000 fd:2d 408162                     /tmp/sqlite-3.20.1-8d0594b3-640d-4b7b-860d-5892b6fbe783-libsqlitejdbc.so
7f02928f7000-7f02928fc000 rw-p 000e4000 fd:2d 408162                     /tmp/sqlite-3.20.1-8d0594b3-640d-4b7b-860d-5892b6fbe783-libsqlitejdbc.so
7f02928fc000-7f02928fd000 rw-p 00000000 00:00 0 
7f02928fe000-7f0292afe000 rw-p 00000000 00:00 0 
7f0292afe000-7f0292b01000 ---p 00000000 00:00 0 
7f0292b01000-7f0292dff000 rw-p 00000000 00:00 0 
7f0292dff000-7f0292fff000 rw-p 00000000 00:00 0 
7f0292fff000-7f0294000000 rw-p 00000000 00:00 0 
7f0294000000-7f0294021000 rw-p 00000000 00:00 0 
7f0294021000-7f0298000000 ---p 00000000 00:00 0 
7f0298000000-7f02983c0000 rw-p 00000000 00:00 0 
7f02983c0000-7f029c000000 ---p 00000000 00:00 0 
7f029c000000-7f029c021000 rw-p 00000000 00:00 0 
7f029c021000-7f02a0000000 ---p 00000000 00:00 0 
7f02a0000000-7f02a0021000 rw-p 00000000 00:00 0 
7f02a0021000-7f02a4000000 ---p 00000000 00:00 0 
7f02a4000000-7f02a4021000 rw-p 00000000 00:00 0 
7f02a4021000-7f02a8000000 ---p 00000000 00:00 0 
7f02a8000000-7f02a8021000 rw-p 00000000 00:00 0 
7f02a8021000-7f02ac000000 ---p 00000000 00:00 0 
7f02ac000000-7f02ac066000 rw-p 00000000 00:00 0 
7f02ac066000-7f02b0000000 ---p 00000000 00:00 0 
7f02b0000000-7f02b0021000 rw-p 00000000 00:00 0 
7f02b0021000-7f02b4000000 ---p 00000000 00:00 0 
7f02b4000000-7f02b405c000 rw-p 00000000 00:00 0 
7f02b405c000-7f02b8000000 ---p 00000000 00:00 0 
7f02b8000000-7f02b8047000 rw-p 00000000 00:00 0 
7f02b8047000-7f02bc000000 ---p 00000000 00:00 0 
7f02bc000000-7f02bc021000 rw-p 00000000 00:00 0 
7f02bc021000-7f02c0000000 ---p 00000000 00:00 0 
7f02c0000000-7f02c005e000 rw-p 00000000 00:00 0 
7f02c005e000-7f02c4000000 ---p 00000000 00:00 0 
7f02c4000000-7f02c425a000 rw-p 00000000 00:00 0 
7f02c425a000-7f02c8000000 ---p 00000000 00:00 0 
7f02c8000000-7f02c8021000 rw-p 00000000 00:00 0 
7f02c8021000-7f02cc000000 ---p 00000000 00:00 0 
7f02cc000000-7f02cc021000 rw-p 00000000 00:00 0 
7f02cc021000-7f02d0000000 ---p 00000000 00:00 0 
7f02d0000000-7f02d017e000 rw-p 00000000 00:00 0 
7f02d017e000-7f02d4000000 ---p 00000000 00:00 0 
7f02d4000000-7f02d4026000 rw-p 00000000 00:00 0 
7f02d4026000-7f02d8000000 ---p 00000000 00:00 0 
7f02d8000000-7f02d8021000 rw-p 00000000 00:00 0 
7f02d8021000-7f02dc000000 ---p 00000000 00:00 0 
7f02dc000000-7f02dc021000 rw-p 00000000 00:00 0 
7f02dc021000-7f02e0000000 ---p 00000000 00:00 0 
7f02e0000000-7f02e0021000 rw-p 00000000 00:00 0 
7f02e0021000-7f02e4000000 ---p 00000000 00:00 0 
7f02e4000000-7f02e4021000 rw-p 00000000 00:00 0 
7f02e4021000-7f02e8000000 ---p 00000000 00:00 0 
7f02e8000000-7f02e8021000 rw-p 00000000 00:00 0 
7f02e8021000-7f02ec000000 ---p 00000000 00:00 0 
7f02ec000000-7f02ec021000 rw-p 00000000 00:00 0 
7f02ec021000-7f02f0000000 ---p 00000000 00:00 0 
7f02f0000000-7f02f3ffc000 rw-p 00000000 00:00 0 
7f02f3ffc000-7f02f4000000 ---p 00000000 00:00 0 
7f02f4000000-7f02f4021000 rw-p 00000000 00:00 0 
7f02f4021000-7f02f8000000 ---p 00000000 00:00 0 
7f02f8000000-7f02f8043000 rw-p 00000000 00:00 0 
7f02f8043000-7f02fc000000 ---p 00000000 00:00 0 
7f02fc000000-7f02fc661000 rw-p 00000000 00:00 0 
7f02fc661000-7f0300000000 ---p 00000000 00:00 0 
7f0300000000-7f0300021000 rw-p 00000000 00:00 0 
7f0300021000-7f0304000000 ---p 00000000 00:00 0 
7f0304000000-7f0304519000 rw-p 00000000 00:00 0 
7f0304519000-7f0308000000 ---p 00000000 00:00 0 
7f0308000000-7f030853e000 rw-p 00000000 00:00 0 
7f030853e000-7f030c000000 ---p 00000000 00:00 0 
7f030c000000-7f030d53e000 rw-p 00000000 00:00 0 
7f030d53e000-7f0310000000 ---p 00000000 00:00 0 
7f0310000000-7f03106a4000 rw-p 00000000 00:00 0 
7f03106a4000-7f0314000000 ---p 00000000 00:00 0 
7f0314000000-7f0315136000 rw-p 00000000 00:00 0 
7f0315136000-7f0318000000 ---p 00000000 00:00 0 
7f03180d0000-7f03182d0000 rw-p 00000000 00:00 0 
7f03182d0000-7f03182d3000 ---p 00000000 00:00 0 
7f03182d3000-7f03183d1000 rw-p 00000000 00:00 0 
7f03183d1000-7f03183d4000 ---p 00000000 00:00 0 
7f03183d4000-7f03186d2000 rw-p 00000000 00:00 0 
7f03186d2000-7f03186d5000 ---p 00000000 00:00 0 
7f03186d5000-7f03187d3000 rw-p 00000000 00:00 0 
7f03187d3000-7f03187d6000 ---p 00000000 00:00 0 
7f03187d6000-7f03188d4000 rw-p 00000000 00:00 0 
7f03188d4000-7f03188d7000 ---p 00000000 00:00 0 
7f03188d7000-7f03189d5000 rw-p 00000000 00:00 0 
7f03189d5000-7f03189d8000 ---p 00000000 00:00 0 
7f03189d8000-7f0318cd6000 rw-p 00000000 00:00 0 
7f0318cd6000-7f031acd8000 rw-p 00000000 00:00 0 
7f031acd8000-7f031acdb000 ---p 00000000 00:00 0 
7f031acdb000-7f031add9000 rw-p 00000000 00:00 0 
7f031add9000-7f031addc000 ---p 00000000 00:00 0 
7f031addc000-7f031aeda000 rw-p 00000000 00:00 0 
7f031aeda000-7f031aedd000 ---p 00000000 00:00 0 
7f031aedd000-7f031afdb000 rw-p 00000000 00:00 0 
7f031afdb000-7f031afde000 ---p 00000000 00:00 0 
7f031afde000-7f031b0dc000 rw-p 00000000 00:00 0 
7f031b0dc000-7f031b0df000 ---p 00000000 00:00 0 
7f031b0df000-7f031b3dd000 rw-p 00000000 00:00 0 
7f031b3dd000-7f031b3e0000 ---p 00000000 00:00 0 
7f031b3e0000-7f031b4de000 rw-p 00000000 00:00 0 
7f031b4de000-7f031b4e1000 ---p 00000000 00:00 0 
7f031b4e1000-7f031b5df000 rw-p 00000000 00:00 0 
7f031b5df000-7f031b5e2000 ---p 00000000 00:00 0 
7f031b5e2000-7f031b6e0000 rw-p 00000000 00:00 0 
7f031b6e0000-7f031b6e3000 ---p 00000000 00:00 0 
7f031b6e3000-7f031b7e1000 rw-p 00000000 00:00 0 
7f031b7e1000-7f031b7e4000 ---p 00000000 00:00 0 
7f031b7e4000-7f031b8e2000 rw-p 00000000 00:00 0 
7f031b8e2000-7f031b8e5000 ---p 00000000 00:00 0 
7f031b8e5000-7f031bbe3000 rw-p 00000000 00:00 0 
7f031bbe3000-7f031bde3000 rw-p 00000000 00:00 0 
7f031bde3000-7f031bdf9000 r-xp 00000000 fd:2d 394113                     /lib/x86_64-linux-gnu/libgcc_s.so.1
7f031bdf9000-7f031bff8000 ---p 00016000 fd:2d 394113                     /lib/x86_64-linux-gnu/libgcc_s.so.1
7f031bff8000-7f031bff9000 rw-p 00015000 fd:2d 394113                     /lib/x86_64-linux-gnu/libgcc_s.so.1
7f031c000000-7f031d78d000 rw-p 00000000 00:00 0 
7f031d78d000-7f0320000000 ---p 00000000 00:00 0 
7f0320000000-7f032161b000 rw-p 00000000 00:00 0 
7f032161b000-7f0324000000 ---p 00000000 00:00 0 
7f0324000000-7f0325455000 rw-p 00000000 00:00 0 
7f0325455000-7f0328000000 ---p 00000000 00:00 0 
7f0328000000-7f032985b000 rw-p 00000000 00:00 0 
7f032985b000-7f032c000000 ---p 00000000 00:00 0 
7f032c000000-7f032d396000 rw-p 00000000 00:00 0 
7f032d396000-7f0330000000 ---p 00000000 00:00 0 
7f0330000000-7f033155d000 rw-p 00000000 00:00 0 
7f033155d000-7f0334000000 ---p 00000000 00:00 0 
7f0334000000-7f0334021000 rw-p 00000000 00:00 0 
7f0334021000-7f0338000000 ---p 00000000 00:00 0 
7f0338000000-7f0338021000 rw-p 00000000 00:00 0 
7f0338021000-7f033c000000 ---p 00000000 00:00 0 
7f033c000000-7f033c021000 rw-p 00000000 00:00 0 
7f033c021000-7f0340000000 ---p 00000000 00:00 0 
7f03400e3000-7f0340115000 r-xp 00000000 fd:2d 405141                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libsunec.so
7f0340115000-7f0340314000 ---p 00032000 fd:2d 405141                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libsunec.so
7f0340314000-7f034031a000 rw-p 00031000 fd:2d 405141                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libsunec.so
7f034031a000-7f034032a000 rw-p 00000000 00:00 0 
7f0340331000-7f0340334000 ---p 00000000 00:00 0 
7f0340334000-7f0340632000 rw-p 00000000 00:00 0 
7f0340632000-7f0340832000 rw-p 00000000 00:00 0 
7f0340832000-7f0340835000 ---p 00000000 00:00 0 
7f0340835000-7f0340933000 rw-p 00000000 00:00 0 
7f0340933000-7f0340940000 r-xp 00000000 fd:2d 408155                     /tmp/liblz4-java3879816952446948348.so
7f0340940000-7f0340b3f000 ---p 0000d000 fd:2d 408155                     /tmp/liblz4-java3879816952446948348.so
7f0340b3f000-7f0340b40000 rw-p 0000c000 fd:2d 408155                     /tmp/liblz4-java3879816952446948348.so
7f0340b43000-7f0340bc1000 r-xp 00000000 fd:2d 408154                     /tmp/libzstd1478808737733562112.so
7f0340bc1000-7f0340dc1000 ---p 0007e000 fd:2d 408154                     /tmp/libzstd1478808737733562112.so
7f0340dc1000-7f0340dc2000 r--p 0007e000 fd:2d 408154                     /tmp/libzstd1478808737733562112.so
7f0340dc2000-7f0340dc3000 rw-p 0007f000 fd:2d 408154                     /tmp/libzstd1478808737733562112.so
7f0340dc3000-7f0340fc3000 rw-p 00000000 00:00 0 
7f0340fc3000-7f03411c3000 rw-p 00000000 00:00 0 
7f03411c3000-7f03413c3000 rw-p 00000000 00:00 0 
7f03413c3000-7f034141f000 r--s 004f0000 08:04 20054833                   /mnt/plugins/denizen-1.0.2-SNAPSHOT.jar
7f0341424000-7f0341427000 r--s 00011000 08:04 20054716                   /mnt/plugins/ChatEx.jar
7f034142a000-7f0341449000 r--s 001a7000 08:04 20054723                   /mnt/plugins/MythicMobs-4.2.0.jar
7f034144b000-7f034144c000 r--s 00008000 08:04 20054817                   /mnt/plugins/SchematicBrush-0.5.2.jar
7f034144e000-7f034144f000 r--s 00013000 08:04 20054888                   /mnt/plugins/sentinel-1.5.0.jar
7f0341455000-7f0341484000 r--s 0021a000 08:04 20055086                   /mnt/plugins/citizens-2.0.22-SNAPSHOT.jar
7f0341487000-7f03414a6000 r--s 00134000 08:04 20055076                   /mnt/plugins/worldguard-6.2.1.jar
7f03414aa000-7f03414cb000 r--s 00187000 08:04 20055087                   /mnt/plugins/worldedit-bukkit-6.1.7.3.jar
7f03414cc000-7f03414d1000 r--s 00049000 08:04 20055083                   /mnt/plugins/Vault.jar
7f03414d7000-7f03414e4000 r--s 000a4000 08:04 20054765                   /mnt/plugins/PermissionsEx-1.23.4.jar
7f03414e5000-7f034152a000 r--s 00332000 08:04 20059281                   /mnt/plugins/VoxelSniper-5.171.0-SNAPSHOT.jar
7f034152b000-7f034155b000 r--s 00548000 08:04 20055080                   /mnt/plugins/FastAsyncWorldEdit-bukkit-18.07.27-3ed2e57-1163-20.5.2.jar
7f0341562000-7f0341762000 rw-p 00000000 00:00 0 
7f0341762000-7f03417e5000 r--s 00427000 08:04 20055073                   /mnt/plugins/dynmap-2.5.jar
7f03417ea000-7f03417ed000 ---p 00000000 00:00 0 
7f03417ed000-7f0341aeb000 rw-p 00000000 00:00 0 
7f0341aeb000-7f0341af7000 r-xp 00000000 fd:2d 408153                     /tmp/libnetty_transport_native_epoll6102135643612549834.so (deleted)
7f0341af7000-7f0341cf6000 ---p 0000c000 fd:2d 408153                     /tmp/libnetty_transport_native_epoll6102135643612549834.so (deleted)
7f0341cf6000-7f0341cf8000 rw-p 0000b000 fd:2d 408153                     /tmp/libnetty_transport_native_epoll6102135643612549834.so (deleted)
7f0341cff000-7f0341d02000 ---p 00000000 00:00 0 
7f0341d02000-7f0342000000 rw-p 00000000 00:00 0 
7f0342000000-7f0348000000 rw-p 00000000 00:00 0 
7f0348000000-7f0348021000 rw-p 00000000 00:00 0 
7f0348021000-7f034c000000 ---p 00000000 00:00 0 
7f034c000000-7f034c021000 rw-p 00000000 00:00 0 
7f034c021000-7f0350000000 ---p 00000000 00:00 0 
7f0350000000-7f0350021000 rw-p 00000000 00:00 0 
7f0350021000-7f0354000000 ---p 00000000 00:00 0 
7f0354000000-7f0354021000 rw-p 00000000 00:00 0 
7f0354021000-7f0358000000 ---p 00000000 00:00 0 
7f0358000000-7f0358021000 rw-p 00000000 00:00 0 
7f0358021000-7f035c000000 ---p 00000000 00:00 0 
7f035c000000-7f035c021000 rw-p 00000000 00:00 0 
7f035c021000-7f0360000000 ---p 00000000 00:00 0 
7f0360000000-7f0360021000 rw-p 00000000 00:00 0 
7f0360021000-7f0364000000 ---p 00000000 00:00 0 
7f0364004000-7f0364005000 r--s 00001000 08:04 20055019                   /mnt/plugins/TimeLock.jar
7f0364009000-7f036400c000 ---p 00000000 00:00 0 
7f036400c000-7f036410a000 rw-p 00000000 00:00 0 
7f036410a000-7f036410d000 ---p 00000000 00:00 0 
7f036410d000-7f036420b000 rw-p 00000000 00:00 0 
7f036420b000-7f0364212000 r-xp 00000000 fd:2d 405092                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libawt_headless.so
7f0364212000-7f0364411000 ---p 00007000 fd:2d 405092                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libawt_headless.so
7f0364411000-7f0364412000 rw-p 00006000 fd:2d 405092                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libawt_headless.so
7f0364413000-7f03644b5000 r-xp 00000000 fd:2d 405091                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libawt.so
7f03644b5000-7f03646b5000 ---p 000a2000 fd:2d 405091                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libawt.so
7f03646b5000-7f03646c1000 rw-p 000a2000 fd:2d 405091                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libawt.so
7f03646c1000-7f03646e5000 rw-p 00000000 00:00 0 
7f03646ec000-7f03648ec000 rw-p 00000000 00:00 0 
7f03648ec000-7f03648ef000 ---p 00000000 00:00 0 
7f03648ef000-7f03649ed000 rw-p 00000000 00:00 0 
7f03649ed000-7f03649f0000 ---p 00000000 00:00 0 
7f03649f0000-7f0364aee000 rw-p 00000000 00:00 0 
7f0364aee000-7f0364af1000 ---p 00000000 00:00 0 
7f0364af1000-7f0364bef000 rw-p 00000000 00:00 0 
7f0364bef000-7f0364bf2000 ---p 00000000 00:00 0 
7f0364bf2000-7f0364ef0000 rw-p 00000000 00:00 0 
7f0364ef0000-7f03650f0000 rw-p 00000000 00:00 0 
7f0365170000-7f0365183000 r--s 00345000 fd:2d 405395                     /usr/java/jdk1.8.0_151/jre/lib/resources.jar
7f0365189000-7f036518e000 r--s 0003e000 fd:2d 405281                     /usr/java/jdk1.8.0_151/jre/lib/ext/sunjce_provider.jar
7f0365194000-7f0365196000 r--s 00009000 fd:2d 405280                     /usr/java/jdk1.8.0_151/jre/lib/ext/sunec.jar
7f036519d000-7f03651a0000 r--s 0003a000 fd:2d 405282                     /usr/java/jdk1.8.0_151/jre/lib/ext/sunpkcs11.jar
7f03651a7000-7f03651a8000 r--s 00004000 08:04 20055071                   /mnt/plugins/dircbot-0.3.jar
7f03651ae000-7f03651b8000 r--s 0005b000 08:04 20054590                   /mnt/plugins/depenizen-bukkit-1.0.0.jar
7f03651ba000-7f03653ba000 rw-p 00000000 00:00 0 
7f03653ba000-7f03655ba000 rw-p 00000000 00:00 0 
7f03655ba000-7f03657ba000 rw-p 00000000 00:00 0 
7f03657ba000-7f03659ba000 rw-p 00000000 00:00 0 
7f03659ba000-7f0365bba000 rw-p 00000000 00:00 0 
7f0365bba000-7f0365bbd000 ---p 00000000 00:00 0 
7f0365bbd000-7f0365cbb000 rw-p 00000000 00:00 0 
7f0365cbb000-7f0365ccc000 r-xp 00000000 fd:2d 405131                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libnio.so
7f0365ccc000-7f0365ecb000 ---p 00011000 fd:2d 405131                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libnio.so
7f0365ecb000-7f0365ecc000 rw-p 00010000 fd:2d 405131                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libnio.so
7f0365ed3000-7f0365eea000 r-xp 00000000 fd:2d 394164                     /lib/x86_64-linux-gnu/libresolv-2.23.so
7f0365eea000-7f03660ea000 ---p 00017000 fd:2d 394164                     /lib/x86_64-linux-gnu/libresolv-2.23.so
7f03660ea000-7f03660eb000 r--p 00017000 fd:2d 394164                     /lib/x86_64-linux-gnu/libresolv-2.23.so
7f03660eb000-7f03660ec000 rw-p 00018000 fd:2d 394164                     /lib/x86_64-linux-gnu/libresolv-2.23.so
7f03660ec000-7f03660ee000 rw-p 00000000 00:00 0 
7f03660f3000-7f03660f8000 r-xp 00000000 fd:2d 394139                     /lib/x86_64-linux-gnu/libnss_dns-2.23.so
7f03660f8000-7f03662f8000 ---p 00005000 fd:2d 394139                     /lib/x86_64-linux-gnu/libnss_dns-2.23.so
7f03662f8000-7f03662f9000 r--p 00005000 fd:2d 394139                     /lib/x86_64-linux-gnu/libnss_dns-2.23.so
7f03662f9000-7f03662fa000 rw-p 00006000 fd:2d 394139                     /lib/x86_64-linux-gnu/libnss_dns-2.23.so
7f03662fb000-7f0366312000 r-xp 00000000 fd:2d 405130                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libnet.so
7f0366312000-7f0366511000 ---p 00017000 fd:2d 405130                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libnet.so
7f0366511000-7f0366512000 rw-p 00016000 fd:2d 405130                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libnet.so
7f0366513000-7f0366713000 rw-p 00000000 00:00 0 
7f0366713000-7f036671c000 r-xp 00000000 fd:2d 405128                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libmanagement.so
7f036671c000-7f036691b000 ---p 00009000 fd:2d 405128                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libmanagement.so
7f036691b000-7f036691c000 rw-p 00008000 fd:2d 405128                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libmanagement.so
7f036691f000-7f0366be9000 r--s 0265c000 08:04 20054082                   /mnt/craftbukkit.jar
7f0366bec000-7f0366bed000 ---p 00000000 00:00 0 
7f0366bed000-7f0366ced000 rw-p 00000000 00:00 0 
7f0366ced000-7f0366cf0000 ---p 00000000 00:00 0 
7f0366cf0000-7f0366dee000 rw-p 00000000 00:00 0 
7f0366dee000-7f0366df1000 ---p 00000000 00:00 0 
7f0366df1000-7f0366eef000 rw-p 00000000 00:00 0 
7f0366eef000-7f0366ef2000 ---p 00000000 00:00 0 
7f0366ef2000-7f0366ff0000 rw-p 00000000 00:00 0 
7f0366ff0000-7f0366ff3000 ---p 00000000 00:00 0 
7f0366ff3000-7f03670f1000 rw-p 00000000 00:00 0 
7f03670f1000-7f03670f4000 ---p 00000000 00:00 0 
7f03670f4000-7f03671f2000 rw-p 00000000 00:00 0 
7f03671f2000-7f03671f5000 ---p 00000000 00:00 0 
7f03671f5000-7f03672f3000 rw-p 00000000 00:00 0 
7f03672f3000-7f03672f6000 ---p 00000000 00:00 0 
7f03672f6000-7f03673f4000 rw-p 00000000 00:00 0 
7f03673f4000-7f03673f7000 ---p 00000000 00:00 0 
7f03673f7000-7f03674f5000 rw-p 00000000 00:00 0 
7f03674f5000-7f03674f8000 ---p 00000000 00:00 0 
7f03674f8000-7f03675f6000 rw-p 00000000 00:00 0 
7f03675f6000-7f03675f9000 ---p 00000000 00:00 0 
7f03675f9000-7f03676f7000 rw-p 00000000 00:00 0 
7f03676f7000-7f03676fa000 ---p 00000000 00:00 0 
7f03676fa000-7f03677f8000 rw-p 00000000 00:00 0 
7f03677f8000-7f03677fb000 ---p 00000000 00:00 0 
7f03677fb000-7f03678f9000 rw-p 00000000 00:00 0 
7f03678f9000-7f03678fc000 ---p 00000000 00:00 0 
7f03678fc000-7f03679fa000 rw-p 00000000 00:00 0 
7f03679fa000-7f03679fd000 ---p 00000000 00:00 0 
7f03679fd000-7f0367afb000 rw-p 00000000 00:00 0 
7f0367afb000-7f0367afe000 ---p 00000000 00:00 0 
7f0367afe000-7f0367bfc000 rw-p 00000000 00:00 0 
7f0367bfc000-7f0367bff000 ---p 00000000 00:00 0 
7f0367bff000-7f0367cfd000 rw-p 00000000 00:00 0 
7f0367cfd000-7f0367cfe000 ---p 00000000 00:00 0 
7f0367cfe000-7f0368000000 rw-p 00000000 00:00 0 
7f0368000000-7f0368021000 rw-p 00000000 00:00 0 
7f0368021000-7f036c000000 ---p 00000000 00:00 0 
7f036c000000-7f036c021000 rw-p 00000000 00:00 0 
7f036c021000-7f0370000000 ---p 00000000 00:00 0 
7f0370000000-7f0370021000 rw-p 00000000 00:00 0 
7f0370021000-7f0374000000 ---p 00000000 00:00 0 
7f0374000000-7f0374021000 rw-p 00000000 00:00 0 
7f0374021000-7f0378000000 ---p 00000000 00:00 0 
7f0378000000-7f0378021000 rw-p 00000000 00:00 0 
7f0378021000-7f037c000000 ---p 00000000 00:00 0 
7f037c000000-7f037c021000 rw-p 00000000 00:00 0 
7f037c021000-7f0380000000 ---p 00000000 00:00 0 
7f0380000000-7f0380021000 rw-p 00000000 00:00 0 
7f0380021000-7f0384000000 ---p 00000000 00:00 0 
7f0384002000-7f0384007000 r--s 0002f000 08:04 20054895                   /mnt/plugins/EffectLib-5.9.jar
7f038400c000-7f038400e000 r--s 00001000 08:04 20054701                   /mnt/plugins/Brush.jar
7f0384014000-7f038401a000 r--s 00061000 08:04 20054776                   /mnt/plugins/LibsDisguises.jar
7f038401b000-7f0384031000 r--s 00190000 08:04 20054688                   /mnt/plugins/Multiverse-Core-2.5.jar
7f0384032000-7f038404b000 r--s 00147000 08:04 20054820                   /mnt/plugins/ProtocolLib.jar
7f0384051000-7f0384052000 r--s 00006000 08:04 20054774                   /mnt/plugins/Modifyworld.jar
7f0384057000-7f038406e000 r--s 001fc000 08:04 20055012                   /mnt/plugins/craftconomy3-3.3.1.jar
7f0384075000-7f038689d000 rw-p 00000000 00:00 0 
7f038689d000-7f0386a76000 r--s 03d5a000 fd:2d 405396                     /usr/java/jdk1.8.0_151/jre/lib/rt.jar
7f0386a7c000-7f03878f2000 rw-p 00000000 00:00 0 
7f03878f2000-7f03878f3000 ---p 00000000 00:00 0 
7f03878f3000-7f03879f3000 rw-p 00000000 00:00 0 
7f03879f3000-7f03879f4000 ---p 00000000 00:00 0 
7f03879f4000-7f0387af4000 rw-p 00000000 00:00 0 
7f0387af4000-7f0387af5000 ---p 00000000 00:00 0 
7f0387af5000-7f0387bf5000 rw-p 00000000 00:00 0 
7f0387bf5000-7f0387bf6000 ---p 00000000 00:00 0 
7f0387bf6000-7f0387cf6000 rw-p 00000000 00:00 0 
7f0387cf6000-7f0387cf7000 ---p 00000000 00:00 0 
7f0387cf7000-7f0387df7000 rw-p 00000000 00:00 0 
7f0387df7000-7f0387df8000 ---p 00000000 00:00 0 
7f0387df8000-7f0387ef8000 rw-p 00000000 00:00 0 
7f0387ef8000-7f0387ef9000 ---p 00000000 00:00 0 
7f0387ef9000-7f0387ff9000 rw-p 00000000 00:00 0 
7f0387ff9000-7f0387ffa000 ---p 00000000 00:00 0 
7f0387ffa000-7f03880fa000 rw-p 00000000 00:00 0 
7f03880fa000-7f03880fb000 ---p 00000000 00:00 0 
7f03880fb000-7f03881fb000 rw-p 00000000 00:00 0 
7f03881fb000-7f03881fc000 ---p 00000000 00:00 0 
7f03881fc000-7f03882fc000 rw-p 00000000 00:00 0 
7f03882fc000-7f03882fd000 ---p 00000000 00:00 0 
7f03882fd000-7f03883fd000 rw-p 00000000 00:00 0 
7f03883fd000-7f03883fe000 ---p 00000000 00:00 0 
7f03883fe000-7f03884fe000 rw-p 00000000 00:00 0 
7f03884fe000-7f03884ff000 ---p 00000000 00:00 0 
7f03884ff000-7f0388747000 rw-p 00000000 00:00 0 
7f0388747000-7f03889ff000 ---p 00000000 00:00 0 
7f03889ff000-7f0388b47000 rw-p 00000000 00:00 0 
7f0388b47000-7f0388dff000 ---p 00000000 00:00 0 
7f0388dff000-7f0388fff000 rw-p 00000000 00:00 0 
7f0388fff000-7f0389000000 rw-p 00000000 00:00 0 
7f0389000000-7f038c2c0000 rwxp 00000000 00:00 0 
7f038c2c0000-7f0398000000 ---p 00000000 00:00 0 
7f0398000000-7f0398973000 rw-p 00000000 00:00 0 
7f0398973000-7f039c000000 ---p 00000000 00:00 0 
7f039c006000-7f039c009000 r--s 0001b000 08:04 20055079                   /mnt/plugins/WorldBorder.jar
7f039c00b000-7f039c017000 r--s 000f0000 08:04 20054715                   /mnt/plugins/Essentials-2.x-SNAPSHOT.jar
7f039c019000-7f039c023000 r--s 00116000 fd:2d 405277                     /usr/java/jdk1.8.0_151/jre/lib/ext/localedata.jar
7f039c026000-7f039c042000 r--s 00393000 fd:2d 405273                     /usr/java/jdk1.8.0_151/jre/lib/ext/cldrdata.jar
7f039c045000-7f039c04a000 r--s 0009a000 fd:2d 405332                     /usr/java/jdk1.8.0_151/jre/lib/jsse.jar
7f039c04e000-7f039c069000 r--s 001d3000 fd:2d 405279                     /usr/java/jdk1.8.0_151/jre/lib/ext/nashorn.jar
7f039c06b000-7f039c136000 rw-p 00000000 00:00 0 
7f039c136000-7f039c42b000 ---p 00000000 00:00 0 
7f039c42b000-7f039c446000 r-xp 00000000 fd:2d 405145                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libzip.so
7f039c446000-7f039c646000 ---p 0001b000 fd:2d 405145                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libzip.so
7f039c646000-7f039c647000 rw-p 0001b000 fd:2d 405145                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libzip.so
7f039c64b000-7f039c656000 r-xp 00000000 fd:2d 394141                     /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f039c656000-7f039c855000 ---p 0000b000 fd:2d 394141                     /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f039c855000-7f039c856000 r--p 0000a000 fd:2d 394141                     /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f039c856000-7f039c857000 rw-p 0000b000 fd:2d 394141                     /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f039c857000-7f039c85d000 rw-p 00000000 00:00 0 
7f039c863000-7f039c86e000 r-xp 00000000 fd:2d 394145                     /lib/x86_64-linux-gnu/libnss_nis-2.23.so
7f039c86e000-7f039ca6d000 ---p 0000b000 fd:2d 394145                     /lib/x86_64-linux-gnu/libnss_nis-2.23.so
7f039ca6d000-7f039ca6e000 r--p 0000a000 fd:2d 394145                     /lib/x86_64-linux-gnu/libnss_nis-2.23.so
7f039ca6e000-7f039ca6f000 rw-p 0000b000 fd:2d 394145                     /lib/x86_64-linux-gnu/libnss_nis-2.23.so
7f039ca73000-7f039ca89000 r-xp 00000000 fd:2d 394135                     /lib/x86_64-linux-gnu/libnsl-2.23.so
7f039ca89000-7f039cc88000 ---p 00016000 fd:2d 394135                     /lib/x86_64-linux-gnu/libnsl-2.23.so
7f039cc88000-7f039cc89000 r--p 00015000 fd:2d 394135                     /lib/x86_64-linux-gnu/libnsl-2.23.so
7f039cc89000-7f039cc8a000 rw-p 00016000 fd:2d 394135                     /lib/x86_64-linux-gnu/libnsl-2.23.so
7f039cc8a000-7f039cc8c000 rw-p 00000000 00:00 0 
7f039cc93000-7f039cc9b000 r-xp 00000000 fd:2d 394137                     /lib/x86_64-linux-gnu/libnss_compat-2.23.so
7f039cc9b000-7f039ce9a000 ---p 00008000 fd:2d 394137                     /lib/x86_64-linux-gnu/libnss_compat-2.23.so
7f039ce9a000-7f039ce9b000 r--p 00007000 fd:2d 394137                     /lib/x86_64-linux-gnu/libnss_compat-2.23.so
7f039ce9b000-7f039ce9c000 rw-p 00008000 fd:2d 394137                     /lib/x86_64-linux-gnu/libnss_compat-2.23.so
7f039cea3000-7f039cece000 r-xp 00000000 fd:2d 405109                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libjava.so
7f039cece000-7f039d0cd000 ---p 0002b000 fd:2d 405109                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libjava.so
7f039d0cd000-7f039d0cf000 rw-p 0002a000 fd:2d 405109                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libjava.so
7f039d0d3000-7f039d0e0000 r-xp 00000000 fd:2d 405144                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libverify.so
7f039d0e0000-7f039d2e0000 ---p 0000d000 fd:2d 405144                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libverify.so
7f039d2e0000-7f039d2e2000 rw-p 0000d000 fd:2d 405144                     /usr/java/jdk1.8.0_151/jre/lib/amd64/libverify.so
7f039d2e3000-7f039d2ea000 r-xp 00000000 fd:2d 394166                     /lib/x86_64-linux-gnu/librt-2.23.so
7f039d2ea000-7f039d4e9000 ---p 00007000 fd:2d 394166                     /lib/x86_64-linux-gnu/librt-2.23.so
7f039d4e9000-7f039d4ea000 r--p 00006000 fd:2d 394166                     /lib/x86_64-linux-gnu/librt-2.23.so
7f039d4ea000-7f039d4eb000 rw-p 00007000 fd:2d 394166                     /lib/x86_64-linux-gnu/librt-2.23.so
7f039d4eb000-7f039d5f3000 r-xp 00000000 fd:2d 394124                     /lib/x86_64-linux-gnu/libm-2.23.so
7f039d5f3000-7f039d7f2000 ---p 00108000 fd:2d 394124                     /lib/x86_64-linux-gnu/libm-2.23.so
7f039d7f2000-7f039d7f3000 r--p 00107000 fd:2d 394124                     /lib/x86_64-linux-gnu/libm-2.23.so
7f039d7f3000-7f039d7f4000 rw-p 00108000 fd:2d 394124                     /lib/x86_64-linux-gnu/libm-2.23.so
7f039d7fb000-7f039e4ce000 r-xp 00000000 fd:2d 405149                     /usr/java/jdk1.8.0_151/jre/lib/amd64/server/libjvm.so
7f039e4ce000-7f039e6cd000 ---p 00cd3000 fd:2d 405149                     /usr/java/jdk1.8.0_151/jre/lib/amd64/server/libjvm.so
7f039e6cd000-7f039e7a7000 rw-p 00cd2000 fd:2d 405149                     /usr/java/jdk1.8.0_151/jre/lib/amd64/server/libjvm.so
7f039e7a7000-7f039e7f2000 rw-p 00000000 00:00 0 
7f039e7f3000-7f039e9b3000 r-xp 00000000 fd:2d 394092                     /lib/x86_64-linux-gnu/libc-2.23.so
7f039e9b3000-7f039ebb3000 ---p 001c0000 fd:2d 394092                     /lib/x86_64-linux-gnu/libc-2.23.so
7f039ebb3000-7f039ebb7000 r--p 001c0000 fd:2d 394092                     /lib/x86_64-linux-gnu/libc-2.23.so
7f039ebb7000-7f039ebb9000 rw-p 001c4000 fd:2d 394092                     /lib/x86_64-linux-gnu/libc-2.23.so
7f039ebb9000-7f039ebbd000 rw-p 00000000 00:00 0 
7f039ebc3000-7f039ebc6000 r-xp 00000000 fd:2d 394105                     /lib/x86_64-linux-gnu/libdl-2.23.so
7f039ebc6000-7f039edc5000 ---p 00003000 fd:2d 394105                     /lib/x86_64-linux-gnu/libdl-2.23.so
7f039edc5000-7f039edc6000 r--p 00002000 fd:2d 394105                     /lib/x86_64-linux-gnu/libdl-2.23.so
7f039edc6000-7f039edc7000 rw-p 00003000 fd:2d 394105                     /lib/x86_64-linux-gnu/libdl-2.23.so
7f039edcb000-7f039ede1000 r-xp 00000000 fd:2d 405421                     /usr/java/jdk1.8.0_151/lib/amd64/jli/libjli.so
7f039ede1000-7f039efe0000 ---p 00016000 fd:2d 405421                     /usr/java/jdk1.8.0_151/lib/amd64/jli/libjli.so
7f039efe0000-7f039efe1000 rw-p 00015000 fd:2d 405421                     /usr/java/jdk1.8.0_151/lib/amd64/jli/libjli.so
7f039efe3000-7f039effb000 r-xp 00000000 fd:2d 394160                     /lib/x86_64-linux-gnu/libpthread-2.23.so
7f039effb000-7f039f1fa000 ---p 00018000 fd:2d 394160                     /lib/x86_64-linux-gnu/libpthread-2.23.so
7f039f1fa000-7f039f1fb000 r--p 00017000 fd:2d 394160                     /lib/x86_64-linux-gnu/libpthread-2.23.so
7f039f1fb000-7f039f1fc000 rw-p 00018000 fd:2d 394160                     /lib/x86_64-linux-gnu/libpthread-2.23.so
7f039f1fc000-7f039f200000 rw-p 00000000 00:00 0 
7f039f203000-7f039f229000 r-xp 00000000 fd:2d 394072                     /lib/x86_64-linux-gnu/ld-2.23.so
7f039f22d000-7f039f230000 r--s 0001a000 fd:2d 405325                     /usr/java/jdk1.8.0_151/jre/lib/jce.jar
7f039f233000-7f039f234000 r--s 00010000 fd:2d 405283                     /usr/java/jdk1.8.0_151/jre/lib/ext/zipfs.jar
7f039f235000-7f039f31b000 rw-p 00000000 00:00 0 
7f039f31b000-7f039f323000 rw-s 00000000 fd:2d 393643                     /tmp/hsperfdata_ni118841_2/100
7f039f327000-7f039f32a000 ---p 00000000 00:00 0 
7f039f32a000-7f039f428000 rw-p 00000000 00:00 0 
7f039f428000-7f039f429000 r--p 00025000 fd:2d 394072                     /lib/x86_64-linux-gnu/ld-2.23.so
7f039f429000-7f039f42a000 rw-p 00026000 fd:2d 394072                     /lib/x86_64-linux-gnu/ld-2.23.so
7f039f42a000-7f039f42c000 rw-p 00000000 00:00 0 
7f039f42c000-7f039f42d000 r--p 00000000 00:00 0 
7f039f42d000-7f039f432000 rw-p 00000000 00:00 0 
7ffd97c4f000-7ffd97c70000 rw-p 00000000 00:00 0                          [stack]
7ffd97db3000-7ffd97db5000 r--p 00000000 00:00 0                          [vvar]
7ffd97db5000-7ffd97db7000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]

VM Arguments:
jvm_args: -Xms256M -Xmx3072M -Djava.awt.headless=true -Duser.timezone=Europe/Berlin -Dfile.encoding=UTF-8 
java_command: craftbukkit.jar --nojline nogui
java_class_path (initial): craftbukkit.jar
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
SHELL=/bin/bash

Signal Handlers:
SIGSEGV: [libjvm.so+0xacbe10], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGBUS: [libjvm.so+0xacbe10], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGFPE: [libjvm.so+0x924f90], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGPIPE: [libjvm.so+0x924f90], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGXFSZ: [libjvm.so+0x924f90], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGILL: [libjvm.so+0x924f90], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGUSR2: [libjvm.so+0x9267d0], sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO
SIGHUP: [libjvm.so+0x927bd0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGINT: [libjvm.so+0x927bd0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGTERM: [libjvm.so+0x927bd0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGQUIT: [libjvm.so+0x927bd0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO


---------------  S Y S T E M  ---------------

OS:DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.4 LTS"

uname:Linux 4.4.26-nitradoV3-MC-1000-nH-dP-d-a #1 SMP Fri Oct 21 09:41:24 CEST 2016 x86_64
libc:glibc 2.23 NPTL 2.23 
rlimit: STACK 8192k, CORE 0k, NPROC 515591, NOFILE 4096, AS infinity
load average:20.63 21.86 20.56

/proc/meminfo:
MemTotal:       132020232 kB
MemFree:         4919132 kB
MemAvailable:   46239592 kB
Buffers:         1257564 kB
Cached:         37966608 kB
SwapCached:        72412 kB
Active:         83465728 kB
Inactive:       39499244 kB
Active(anon):   64135856 kB
Inactive(anon): 19616044 kB
Active(file):   19329872 kB
Inactive(file): 19883200 kB
Unevictable:           4 kB
Mlocked:               8 kB
SwapTotal:      99564532 kB
SwapFree:       98409052 kB
Dirty:             20028 kB
Writeback:             0 kB
AnonPages:      83733948 kB
Mapped:          1509244 kB
Shmem:             12516 kB
Slab:            2780240 kB
SReclaimable:    2614196 kB
SUnreclaim:       166044 kB
KernelStack:       74480 kB
PageTables:       251184 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    165574648 kB
Committed_AS:   102936404 kB
VmallocTotal:   34359738367 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
HardwareCorrupted:     0 kB
AnonHugePages:   8665088 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:       12864 kB
DirectMap2M:     2066432 kB
DirectMap1G:    133169152 kB


CPU:total 16 (initial active 16) (8 cores per cpu, 1 threads per core) family 21 model 2 stepping 0, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, mmxext, 3dnowpref, lzcnt, sse4a, tsc, tscinvbit, tscinv, bmi1

/proc/cpuinfo:
processor    : 0
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 0
siblings    : 8
core id        : 0
cpu cores    : 4
apicid        : 32
initial apicid    : 0
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.96
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 1
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 0
siblings    : 8
core id        : 1
cpu cores    : 4
apicid        : 33
initial apicid    : 1
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.96
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 2
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 0
siblings    : 8
core id        : 2
cpu cores    : 4
apicid        : 34
initial apicid    : 2
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.96
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 3
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 0
siblings    : 8
core id        : 3
cpu cores    : 4
apicid        : 35
initial apicid    : 3
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.96
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 4
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 0
siblings    : 8
core id        : 0
cpu cores    : 4
apicid        : 36
initial apicid    : 4
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.96
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 5
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 0
siblings    : 8
core id        : 1
cpu cores    : 4
apicid        : 37
initial apicid    : 5
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.96
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 6
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 0
siblings    : 8
core id        : 2
cpu cores    : 4
apicid        : 38
initial apicid    : 6
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.96
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 7
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 0
siblings    : 8
core id        : 3
cpu cores    : 4
apicid        : 39
initial apicid    : 7
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.96
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 8
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 1
siblings    : 8
core id        : 0
cpu cores    : 4
apicid        : 64
initial apicid    : 32
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.06
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 9
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 1
siblings    : 8
core id        : 1
cpu cores    : 4
apicid        : 65
initial apicid    : 33
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.06
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 10
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 1
siblings    : 8
core id        : 2
cpu cores    : 4
apicid        : 66
initial apicid    : 34
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.06
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 11
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 1
siblings    : 8
core id        : 3
cpu cores    : 4
apicid        : 67
initial apicid    : 35
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.06
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 12
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 1
siblings    : 8
core id        : 0
cpu cores    : 4
apicid        : 68
initial apicid    : 36
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.06
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 13
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 1
siblings    : 8
core id        : 1
cpu cores    : 4
apicid        : 69
initial apicid    : 37
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.06
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 14
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 1
siblings    : 8
core id        : 2
cpu cores    : 4
apicid        : 70
initial apicid    : 38
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.06
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro

processor    : 15
vendor_id    : AuthenticAMD
cpu family    : 21
model        : 2
model name    : AMD Opteron(tm) Processor 6328
stepping    : 0
microcode    : 0x6000822
cpu MHz        : 3200.000
cache size    : 2048 KB
physical id    : 1
siblings    : 8
core id        : 3
cpu cores    : 4
apicid        : 71
initial apicid    : 39
fpu        : yes
fpu_exception    : yes
cpuid level    : 13
wp        : yes
flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core perfctr_nb arat cpb hw_pstate npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 6399.06
TLB size    : 1536 4K pages
clflush size    : 64
cache_alignment    : 64
address sizes    : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro



Memory: 4k page, physical 132020232k(4919132k free), swap 99564532k(98409052k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (25.151-b12) for linux-amd64 JRE (1.8.0_151-b12), built on Sep  5 2017 19:20:58 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8)

time: Sat Sep  1 06:39:08 2018
elapsed time: 315 seconds (0d 0h 5m 15s)