Paste #79484: Untitled Paste

Date: 2021/01/06 13:09:10 UTC-08:00
Type: Plain Text

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
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650


[22:03:39] [main/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[22:03:40] [main/INFO]: Reloading ResourceManager: Default, bukkit
[22:03:41] [Worker-Main-14/INFO]: Loaded 7 recipes
[22:03:45] [Server thread/INFO]: Starting minecraft server version 1.16.4
[22:03:45] [Server thread/INFO]: Loading properties
[22:03:45] [Server thread/INFO]: This server is running CraftBukkit version git-Spigot-ff439d1-ff2b944 (MC: 1.16.4) (Implementing API version 1.16.4-R0.1-SNAPSHOT)
[22:03:46] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:03:46] [Server thread/INFO]: Using 4 threads for Netty based IO
[22:03:46] [Server thread/INFO]: Debug logging is disabled
[22:03:46] [Server thread/INFO]: Default game type: SURVIVAL
[22:03:46] [Server thread/INFO]: Generating keypair
[22:03:47] [Server thread/INFO]: Starting Minecraft server on 176.31.203.57:25565
[22:03:47] [Server thread/INFO]: Using epoll channel type
[22:03:48] [Server thread/ERROR]: Could not load 'plugins/guilds.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:160) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:144) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:383) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:185) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:809) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$0(MinecraftServer.java:164) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_271]
Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
    ... 7 more
[22:03:50] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[22:03:58] [Server thread/WARN]: Legacy plugin ColoredSigns v4.1.0 does not specify an api-version.
[22:03:59] [Server thread/WARN]: Legacy plugin ResourcePackDownloader v7.4 does not specify an api-version.
[22:03:59] [Server thread/WARN]: Legacy plugin PermissionsEx v1.23.4 does not specify an api-version.
[22:03:59] [Server thread/WARN]: Legacy plugin dynmap v3.1-beta5-431 does not specify an api-version.
[22:03:59] [Server thread/WARN]: Legacy plugin HeadDatabase v4.12.6 does not specify an api-version.
[22:04:00] [Server thread/WARN]: Legacy plugin ChatEx v2.6.1 does not specify an api-version.
[22:04:01] [Server thread/INFO]: [Colored Signs] Loading ColoredSigns v4.1.0
[22:04:01] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.9
[22:04:01] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.0
[22:04:01] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.7
[22:04:01] [Server thread/INFO]: [ResourcePackDownloader] Loading ResourcePackDownloader v7.4
[22:04:01] [Server thread/INFO]: [Core] Loading Core v0.3.2
[22:04:02] [Server thread/INFO]: [Core] Checking update for Core v0.3.2
[22:04:03] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.23.4
[22:04:03] [Server thread/WARN]: [PermissionsEx] This server is in offline mode. Unless this server is configured to integrate with a supported proxy (see http://dft.ba/-8ous), UUIDs *may not be stable*!
[22:04:03] [Server thread/INFO]: [CustomTime] Loading CustomTime v2.0
[22:04:03] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v3.2.0
[22:04:03] [Server thread/INFO]: [ViaVersion] ViaVersion 3.2.0 is now loaded, injecting!
[22:04:03] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[22:04:04] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[22:04:04] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[22:04:04] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[22:04:04] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[22:04:04] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[22:04:04] [Server thread/INFO]: [dynmap] Loading dynmap v3.1-beta5-431
[22:04:04] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[22:04:04] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[22:04:04] [Server thread/INFO]: [dynmap] version=git-Spigot-ff439d1-ff2b944 (MC: 1.16.4)
[22:04:04] [Server thread/INFO]: [dynmap] Mod Support API available
[22:04:04] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.0+a51fa43
[22:04:07] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4df1836f]
[22:04:07] [Server thread/INFO]: [Essentials] Loading Essentials v2.18.2.0
[22:04:07] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.12.6
[22:04:07] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.5.1
[22:04:07] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.16.4) has not yet been tested! Proceed with caution.
[22:04:08] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v2.1.12
[22:04:08] [Server thread/INFO]: [ChatEx] Loading ChatEx v2.6.1
[22:04:08] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.18.2.0
[22:04:08] [Server thread/INFO]: [SimpleRename] Loading SimpleRename v13.8
[22:04:08] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.5
[22:04:08] [Server thread/INFO]: [HolographicExtension] Loading HolographicExtension v1.10.9
[22:04:08] [Server thread/INFO]: [TouchscreenHolograms] Loading TouchscreenHolograms v1.4.2
[22:04:08] [Server thread/INFO]: [Bank] Loading Bank v4.2.4-RELEASE
[22:04:08] [Server thread/INFO]: [Core] Saving upgrade.yml
[22:04:08] [Server thread/INFO]: [Core] Checking update for Bank v4.2.4-RELEASE
[22:04:08] [Server thread/INFO]: [Core] Unable to check update for Bank v4.2.4-RELEASE
[22:04:08] [Server thread/INFO]: [Core] Saving config.yml
[22:04:08] [Server thread/INFO]: [Core] Saving language.yml
[22:04:09] [Server thread/INFO]: [Core] [Core] Attempting to load default ItemUtils
[22:04:09] [Server thread/INFO]: [Core] [Core] Loaded default, enjoy :)
[22:04:09] [Server thread/INFO]: [Core] Saving items.yml
[22:04:09] [Server thread/INFO]: [Core] Saving inventories.yml
[22:04:09] [Server thread/INFO]: [Core] Saving permissions.yml
[22:04:09] [Server thread/INFO]: [Core] Saving itemblacklist.yml
[22:04:09] [Server thread/INFO]: [Core] Saving sounds.yml
[22:04:10] [Server thread/INFO]: [Bank] Blocks enabled
[22:04:10] [Server thread/INFO]: [Bank] Signs enabled
[22:04:10] [Server thread/INFO]: [Bank] Bank Loaded
[22:04:10] [Server thread/INFO]: [Denizen] Loading Denizen v1.1.8-SNAPSHOT (build 1721-REL)
[22:04:10] [Server thread/INFO]: [Guilds] Loading Guilds v3.5.5.5
[22:04:10] [Server thread/INFO]: [UltimateStacker] Loading UltimateStacker v2.1
[22:04:10] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.4+f7ff984
[22:04:10] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.27-SNAPSHOT (build 2218)
[22:04:10] [Server thread/INFO]: [EditableSign] Loading EditableSign v7.0.4
[22:04:10] [Server thread/INFO]: [BigDoors] Loading BigDoors vAlpha 0.1.8.28
[22:04:10] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v5.13.8-Premium
[22:04:10] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.2.2-b812
[22:04:10] [Server thread/INFO]: [Sentinel] Loading Sentinel v2.2.0-SNAPSHOT (build 373)
[22:04:10] [Server thread/INFO]: [Multiverse-Portals] Loading Multiverse-Portals v4.2.1-b834
[22:04:10] [Server thread/INFO]: [CrateReloaded] Loading CrateReloaded v2.0.23
[22:04:10] [Server thread/INFO]: [CasinoPlugin] Loading CasinoPlugin v4.0.1
[22:04:10] [Server thread/INFO]: [Multiverse-NetherPortals] Loading Multiverse-NetherPortals v4.2.1-b786
[22:04:10] [Server thread/INFO]: [Core] Enabling Core v0.3.2
[22:04:10] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[22:04:10] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.18.2.0 which is not a depend, softdepend or loadbefore of this plugin.
[22:04:10] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[22:04:10] [Server thread/WARN]: [Vault] Loaded class ru.tehkode.permissions.bukkit.PermissionsEx from PermissionsEx v1.23.4 which is not a depend, softdepend or loadbefore of this plugin.
[22:04:10] [Server thread/INFO]: [Vault] [Permission] PermissionsEx found: Waiting
[22:04:11] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[22:04:11] [Server thread/INFO]: [Vault] [Chat] PermissionsEx found: Waiting
[22:04:11] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[22:04:11] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.0+a51fa43
[22:04:11] [Server thread/WARN]: [WorldEdit] Loaded class ru.tehkode.permissions.PermissionManager from PermissionsEx v1.23.4 which is not a depend, softdepend or loadbefore of this plugin.
[22:04:11] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[22:04:11] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_16_R3 as the Bukkit adapter
[22:04:13] [Server thread/WARN]: [WorldEdit] ====================================================
[22:04:13] [Server thread/WARN]: [WorldEdit]  WorldEdit works better if you use Paper 
[22:04:13] [Server thread/WARN]: [WorldEdit]  as your server software. 
[22:04:13] [Server thread/WARN]: [WorldEdit]   
[22:04:13] [Server thread/WARN]: [WorldEdit]  Paper offers significant performance improvements,
[22:04:13] [Server thread/WARN]: [WorldEdit]  bug fixes, security enhancements and optional
[22:04:13] [Server thread/WARN]: [WorldEdit]  features for server owners to enhance their server.
[22:04:13] [Server thread/WARN]: [WorldEdit]   
[22:04:13] [Server thread/WARN]: [WorldEdit]  Paper includes Timings v2, which is significantly
[22:04:13] [Server thread/WARN]: [WorldEdit]  better at diagnosing lag problems over v1.
[22:04:13] [Server thread/WARN]: [WorldEdit]   
[22:04:13] [Server thread/WARN]: [WorldEdit]  All of your plugins should still work, and the
[22:04:13] [Server thread/WARN]: [WorldEdit]  Paper community will gladly help you fix any issues.
[22:04:13] [Server thread/WARN]: [WorldEdit]   
[22:04:13] [Server thread/WARN]: [WorldEdit]  Join the Paper Community @ https://papermc.io
[22:04:13] [Server thread/WARN]: [WorldEdit] ====================================================
[22:04:13] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.5.1
[22:04:13] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[22:04:13] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v5.13.8-Premium
[22:04:13] [Server thread/INFO]: Version is PlotSquared-5.13.8-Premium
[22:04:14] [Server thread/INFO]: [P2] PlotSquared hooked into WorldEdit.
[22:04:15] [Server thread/INFO]: PlotSquared scripting engine started
[22:04:15] [Server thread/INFO]: [P2] PlotSquared is now enabled
[22:04:15] [Server thread/INFO]: [P2] PlotSquared version licensed to Spigot user 268937
[22:04:15] [Server thread/INFO]: [P2] https://www.spigotmc.org/resources/77506
[22:04:15] [Server thread/INFO]: [P2] Download ID: 1201776585
[22:04:15] [Server thread/INFO]: [P2] Thanks for supporting us :)
[22:04:15] [Server thread/INFO]: [P2] (UUID) Using EssentialsX as a complementary UUID service
[22:04:15] [Server thread/INFO]: [P2] (UUID) 1 UUIDs will be cached.
[22:04:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plotsquared
[22:04:15] [Server thread/INFO]: [P2] PlotSquared hooked into PlaceholderAPI
[22:04:15] [Server thread/INFO]: [P2] Using platform world manager: bukkit-multiverse
[22:04:15] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[22:04:15] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[22:04:15] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[22:04:15] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[22:04:15] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[22:04:15] [Server thread/INFO]: Preparing level "EpicRealms"
[22:04:15] [Server thread/INFO]: -------- World Settings For [EpicRealms] --------
[22:04:15] [Server thread/INFO]: Mob Spawn Range: 4
[22:04:15] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:04:15] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:04:15] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:04:15] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:04:15] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:04:15] [Server thread/INFO]: Max TNT Explosions: 100
[22:04:15] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:04:15] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:04:15] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:04:15] [Server thread/INFO]: Item Merge Radius: 2.5
[22:04:15] [Server thread/INFO]: Item Despawn Rate: 6000
[22:04:15] [Server thread/INFO]: View Distance: 7
[22:04:15] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:04:15] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:04:15] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:04:15] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[22:04:16] [Server thread/INFO]: -------- World Settings For [EpicRealms_nether] --------
[22:04:16] [Server thread/INFO]: Mob Spawn Range: 4
[22:04:16] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:04:16] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:04:16] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:04:16] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:04:16] [Server thread/INFO]: Max TNT Explosions: 100
[22:04:16] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:04:16] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:04:16] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:04:16] [Server thread/INFO]: Item Merge Radius: 2.5
[22:04:16] [Server thread/INFO]: Item Despawn Rate: 6000
[22:04:16] [Server thread/INFO]: View Distance: 7
[22:04:16] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:04:16] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:04:16] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:04:16] [Server thread/INFO]: -------- World Settings For [EpicRealms_the_end] --------
[22:04:16] [Server thread/INFO]: Mob Spawn Range: 4
[22:04:16] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:04:16] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:04:16] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:04:16] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:04:16] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:04:16] [Server thread/INFO]: Max TNT Explosions: 100
[22:04:16] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:04:16] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:04:16] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:04:16] [Server thread/INFO]: Item Merge Radius: 2.5
[22:04:16] [Server thread/INFO]: Item Despawn Rate: 6000
[22:04:16] [Server thread/INFO]: View Distance: 7
[22:04:16] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:04:16] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:04:16] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:04:16] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[22:04:17] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:17] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:17] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:17] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:18] [Server thread/INFO]: Preparing spawn area: 40%
[22:04:21] [Worker-Main-16/INFO]: Preparing spawn area: 83%
[22:04:21] [Worker-Main-16/INFO]: Preparing spawn area: 83%
[22:04:21] [Worker-Main-15/INFO]: Preparing spawn area: 83%
[22:04:21] [Worker-Main-11/INFO]: Preparing spawn area: 83%
[22:04:21] [Worker-Main-11/INFO]: Preparing spawn area: 83%
[22:04:21] [Worker-Main-10/INFO]: Preparing spawn area: 83%
[22:04:21] [Worker-Main-19/INFO]: Preparing spawn area: 90%
[22:04:22] [Worker-Main-18/INFO]: Preparing spawn area: 90%
[22:04:22] [Worker-Main-10/INFO]: Preparing spawn area: 90%
[22:04:23] [Worker-Main-11/INFO]: Preparing spawn area: 90%
[22:04:23] [Worker-Main-18/INFO]: Preparing spawn area: 94%
[22:04:24] [Server thread/INFO]: Time elapsed: 7994 ms
[22:04:24] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[22:04:25] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:25] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:25] [Worker-Main-18/INFO]: Preparing spawn area: 83%
[22:04:25] [pool-15-thread-1/INFO]: [P2] (UUID) PlotSquared will fetch UUIDs in groups of 200
[22:04:25] [pool-15-thread-1/INFO]: [P2] (UUID) PlotSquared has cached 100.0% of UUIDs
[22:04:25] [pool-15-thread-1/INFO]: [P2] (UUID) PlotSquared has cached all UUIDs
[22:04:25] [Worker-Main-16/INFO]: Preparing spawn area: 83%
[22:04:26] [Worker-Main-15/INFO]: Preparing spawn area: 83%
[22:04:26] [Worker-Main-18/INFO]: Preparing spawn area: 83%
[22:04:27] [Worker-Main-11/INFO]: Preparing spawn area: 84%
[22:04:27] [Worker-Main-18/INFO]: Preparing spawn area: 89%
[22:04:28] [Worker-Main-17/INFO]: Preparing spawn area: 91%
[22:04:28] [Worker-Main-10/INFO]: Preparing spawn area: 98%
[22:04:28] [Server thread/INFO]: Time elapsed: 4633 ms
[22:04:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[22:04:29] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:29] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[22:04:29] [Worker-Main-19/INFO]: Preparing spawn area: 83%
[22:04:30] [Server thread/INFO]: Time elapsed: 1242 ms
[22:04:30] [Server thread/INFO]: [Colored Signs] Enabling ColoredSigns v4.1.0
[22:04:30] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.9
[22:04:30] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:04:30] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.0
[22:04:30] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[22:04:30] [Server thread/INFO]: [ClearLag] Loading modules...
[22:04:30] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[22:04:30] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[22:04:30] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[22:04:30] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[22:04:30] [Thread-13/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.16]...
[22:04:30] [Server thread/INFO]: [ResourcePackDownloader] Enabling ResourcePackDownloader v7.4
[22:04:30] [Server thread/INFO]: ------------------------------
[22:04:30] [Server thread/INFO]: Resource Pack Downloader
[22:04:30] [Server thread/INFO]:  
[22:04:30] [Server thread/INFO]: Running version: 7.4
[22:04:30] [Server thread/INFO]: Author: Joshb_
[22:04:30] [Server thread/INFO]:  
[22:04:30] [Server thread/INFO]: ------------------------------
[22:04:30] [Server thread/INFO]: [PermissionsEx] Enabling PermissionsEx v1.23.4
[22:04:30] [Server thread/INFO]: [PermissionsEx] Initializing file backend
[22:04:30] [Server thread/INFO]: [PermissionsEx] Permissions file successfully reloaded
[22:04:30] [Server thread/INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
[22:04:30] [Server thread/INFO]: [Vault][Permission] PermissionsEx hooked.
[22:04:30] [Server thread/INFO]: [Vault] [Vault][Chat] PermissionsEx_Chat hooked.
[22:04:30] [Server thread/INFO]: [CustomTime] Enabling CustomTime v2.0
[22:04:30] [Server thread/ERROR]: [CustomTime] Could not find world 'Elemental_Realm' or it's nether/end. It will not be used in CustomTime.
[22:04:30] [Server thread/INFO]: [CustomTime] Worlds in effect of custom time scales:
[22:04:30] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v3.2.0
[22:04:30] [Server thread/INFO]: [dynmap] Enabling dynmap v3.1-beta5-431
[22:04:31] [Thread-13/WARN]: [ClearLag] Clearlag failed to check for updates - bukkit may be down
[22:04:31] [Thread-14/WARN]: [PermissionsEx] The updater could not find any files for the project id 31279
[22:04:31] [Server thread/INFO]: [dynmap] Added 4 custom biome mappings
[22:04:31] [Server thread/WARN]: [dynmap] Loaded class ru.tehkode.permissions.bukkit.PermissionsEx from PermissionsEx v1.23.4 which is not a depend, softdepend or loadbefore of this plugin.
[22:04:31] [Server thread/INFO]: [dynmap] Using PermissionsEx 1.23.4 for access control
[22:04:31] [Server thread/WARN]: [dynmap] cwebp or dwebp not found, or cwebpPath or dwebpPath is invalid: webp format disabled
[22:04:31] [Server thread/INFO]: [dynmap] Mod Support processing completed
[22:04:32] [Server thread/INFO]: [dynmap] Loaded 25 shaders.
[22:04:32] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[22:04:32] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[22:04:32] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[22:04:32] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[22:04:32] [Server thread/INFO]: [dynmap] Web server started on address 176.31.203.57:8123
[22:04:32] [Server thread/INFO]: [dynmap] version 3.1-beta5-431 is enabled - core version 3.1-beta5-431
[22:04:32] [Server thread/INFO]: [dynmap] For support, visit https://reddit.com/r/Dynmap or our Discord at https://discord.gg/s3rd5qn
[22:04:32] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[22:04:32] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[22:04:32] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'EpicRealms'.
[22:04:32] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'EpicRealms_nether'.
[22:04:32] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'EpicRealms_the_end'.
[22:04:32] [Server thread/INFO]: [dynmap] Enabled
[22:04:32] [Server thread/INFO]: [Essentials] Enabling Essentials v2.18.2.0
[22:04:32] [Server thread/INFO]: [Essentials] You are running a server with limited API functionality. EssentialsX will still work, but certain features may be disabled.
[22:04:33] [Server thread/INFO]: Loaded 25599 items from items.json.
[22:04:33] [Server thread/INFO]: Using locale en_US
[22:04:33] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[22:04:33] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[22:04:33] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[22:04:33] [Server thread/INFO]: [Essentials] Using Vault based permissions (PermissionsEx)
[22:04:33] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.12.6
[22:04:33] [Server thread/INFO]: [HeadDatabase] §bUsing default §3"en_US.lang" §bcreated by §6Arcaniax
[22:04:33] [Server thread/INFO]: [HeadDatabase] Economy succesfully setup!
[22:04:33] [Server thread/WARN]: [HeadDatabase] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.10.9 which is not a depend, softdepend or loadbefore of this plugin.
[22:04:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb
[22:04:33] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.1.12
[22:04:33] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[22:04:33] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[22:04:33] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_16_R3
[22:04:33] [Server thread/INFO]: [AuctionHouse] Enabled HeadDatabase support
[22:04:33] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[22:04:35] [Server thread/INFO]: [AuctionHouse] Loaded 0 listings
[22:04:35] [Server thread/INFO]: [ChatEx] Enabling ChatEx v2.6.1
[22:04:35] [Server thread/INFO]: [ChatEx] Successfully hooked into: PermissionsEx_Chat
[22:04:35] [Server thread/INFO]: [ChatEx] Hooked into PlaceholderAPI
[22:04:35] [Server thread/INFO]: [ChatEx] Server version:git-Spigot-ff439d1-ff2b944 (MC: 1.16.4)
[22:04:35] [Server thread/INFO]: [ChatEx] Loading RGB ColorCodes!
[22:04:35] [Server thread/INFO]: [ChatEx] No ColorCodes Specified!
[22:04:35] [Server thread/INFO]: [ChatEx] Thanks for using bstats, it was enabled!
[22:04:35] [Server thread/INFO]: [ChatEx] is now enabled!
[22:04:35] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.18.2.0
[22:04:35] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[22:04:35] [Server thread/INFO]: [SimpleRename] Enabling SimpleRename v13.8
[22:04:35] [Server thread/INFO]: SimpleRename enabled!
[22:04:35] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.5
[22:04:35] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[22:04:35] [Server thread/INFO]: [HolographicExtension] Enabling HolographicExtension v1.10.9
[22:04:35] [Server thread/INFO]: [HolographicExtension] Starting HolographicExtension v1.10.9
[22:04:35] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'example' from config.
[22:04:35] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'scroller' from config.
[22:04:35] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'typing' from config.
[22:04:35] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'rainbow' from config.
[22:04:35] [Server thread/INFO]: [TouchscreenHolograms] Enabling TouchscreenHolograms v1.4.2
[22:04:36] [Server thread/INFO]: [Bank] Enabling Bank v4.2.4-RELEASE
[22:04:36] [Server thread/INFO]: [Bank] Bank Enabled
[22:04:36] [Server thread/INFO]: [Denizen] Enabling Denizen v1.1.8-SNAPSHOT (build 1721-REL)
[22:04:36] [Server thread/WARN]: [Denizen] Citizens does not seem to be activated! Denizen will have greatly reduced functionality!
[22:04:36] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[22:04:36] [Server thread/INFO]: +> [Denizen]  _/_ _  ._  _ _ 
[22:04:36] [Server thread/INFO]: +> [Denizen] (/(-/ )/ /_(-/ )  scriptable minecraft 
[22:04:36] [Server thread/INFO]: +> [Denizen]  
[22:04:36] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[22:04:36] [Server thread/INFO]: +> [Denizen] Chat with us at:  https://discord.gg/Q6pZGSR 
[22:04:36] [Server thread/INFO]: +> [Denizen] Or learn more at:  https://denizenscript.com 
[22:04:36] [Server thread/INFO]: +> [Denizen] version: 1.1.8-SNAPSHOT (build 1721-REL) 
[22:04:36] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[22:04:36] [Server thread/INFO]:  OKAY! Loaded core commands: [clickable, showfake, invisible, ban, modifyblock, cast, midi, else, sidebar, explode, cooldown, weather, scoreboard, 
[22:04:36] [Server thread/INFO]:                    if, give, worldborder, chunkload, zap, mount, execute, push, announce, waituntil, firework, stop, advancement, light, reset, hurt, ratelimit, nbt, 
[22:04:36] [Server thread/INFO]:                    wait, flag, log, webget, goto, attack, attach, event, map, strike, health, team, fly, itemcooldown, kick, gamerule, playsound, rename, leash, 
[22:04:36] [Server thread/INFO]:                    disguise, queue, rotate, sign, run, while, experience, playeffect, narrate, bossbar, shoot, oxygen, yaml, group, statistic, fakeitem, opentrades, 
[22:04:36] [Server thread/INFO]:                    blockcrack, schematic, look, feed, take, toast, compass, adjust, animatechest, glow, drop, note, teleport, choose, inventory, actionbar, title, 
[22:04:36] [Server thread/INFO]:                    remove, sql, switch, head, foreach, random, reload, adjustblock, repeat, define, heal, copyblock, filecopy, burn, debug, determine, permission, 
[22:04:36] [Server thread/INFO]:                    follow, displayitem, scribe, createworld, spawn, equip, money, fakespawn, time, inject, mark, age, walk] 
[22:04:36] [Server thread/INFO]:  OKAY! Loaded core object types: [BiomeTag as b, DurationTag as d, ChunkTag as ch, EntityTag as e, InventoryTag as in, CustomObjectTag as custom, 
[22:04:36] [Server thread/INFO]:                    ElementTag as el, ItemTag as i, ColorTag as co, LocationTag as l, MaterialTag as m, EllipsoidTag as ellipsoid, PlayerTag as p, QueueTag as q, 
[22:04:36] [Server thread/INFO]:                    CuboidTag as cu, ScriptTag as s, TradeTag as trade, WorldTag as w, TimeTag as time, PluginTag as pl, ListTag as li, MapTag as map] 
[22:04:37] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
[22:04:37] [Server thread/INFO]: [Guilds] Enabling Guilds v3.5.5.5
[22:04:37] [Server thread/INFO]:   ________ 
[22:04:37] [Server thread/INFO]:  /  _____/ 
[22:04:37] [Server thread/INFO]: /   \  ___   Guilds v3.5.5.5
[22:04:37] [Server thread/INFO]: \    \_\  \  Server Version: git-Spigot-ff439d1-ff2b944 (MC: 1.16.4)
[22:04:37] [Server thread/INFO]:  \______  /
[22:04:37] [Server thread/INFO]:         \/ 
[22:04:37] [Server thread/INFO]: Economy Found: Essentials Economy
[22:04:37] [Server thread/INFO]: Permissions Found: PermissionsEx
[22:04:37] [Server thread/WARN]: PermissionsEx is not designed to run permission async. Expect issues with permissions.
[22:04:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: guilds
[22:04:38] [ForkJoinPool.commonPool-worker-2/INFO]: [Guilds] Your version of Guilds (3.5.5.5) is up to date!
[22:04:38] [Server thread/INFO]: Ready to go! That only took 1676ms
[22:04:38] [Server thread/INFO]: [UltimateStacker] Enabling UltimateStacker v2.1
[22:04:38] [Server thread/INFO]:  
[22:04:38] [Server thread/INFO]: =============================
[22:04:38] [Server thread/INFO]: UltimateStacker 2.1 by Songoda <3!
[22:04:38] [Server thread/INFO]: Action: Enabling...
[22:04:38] [Server thread/INFO]: [UltimateStacker] Loaded locale "en_US"
[22:04:39] [Server thread/INFO]: [SongodaCore] Hooked UltimateStacker.
[22:04:39] [TaskChainAsyncQueue Thread 0/INFO]: Could not fetch announcements!
[22:04:40] [Server thread/INFO]: [UltimateStacker] Data handler connected using SQLite.
[22:04:40] [Server thread/INFO]: =============================
[22:04:40] [Server thread/INFO]:  
[22:04:40] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.4+f7ff984
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms) TNT ignition is PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms) Lighters are PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms) Lava fire is PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms) Fire spread is UNRESTRICTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'EpicRealms'
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms_nether) TNT ignition is PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms_nether) Lighters are PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms_nether) Lava fire is PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms_nether) Fire spread is UNRESTRICTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'EpicRealms_nether'
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms_the_end) TNT ignition is PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms_the_end) Lighters are PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms_the_end) Lava fire is PERMITTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] (EpicRealms_the_end) Fire spread is UNRESTRICTED.
[22:04:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'EpicRealms_the_end'
[22:04:40] [Server thread/INFO]: [WorldGuard] Loading region data...
[22:04:40] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.27-SNAPSHOT (build 2218)
[22:04:41] [Server thread/INFO]: [EditableSign] Enabling EditableSign v7.0.4
[22:04:41] [Server thread/INFO]: [VKLib] [VKLib:AddOn.loadAddOns()] 0 addon modules found! Loading them up!
[22:04:41] [Server thread/INFO]: [EditableSign] EditableSign version 7.0.4 is Enabled
[22:04:41] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.28
[22:04:41] [Server thread/INFO]: [BigDoors] Power Block Types:
[22:04:41] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[22:04:41] [Server thread/INFO]: [BigDoors] No materials Blacklisted!
[22:04:41] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[22:04:41] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[22:04:41] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.2.2-b812
[22:04:41] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.2.2-b812" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[22:04:41] [Server thread/INFO]: [Multiverse-Core] §aWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[22:04:41] [Server thread/INFO]: -------- World Settings For [Elemental_Realm] --------
[22:04:41] [Server thread/INFO]: Mob Spawn Range: 4
[22:04:41] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:04:41] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:04:41] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:04:41] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:04:41] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:04:41] [Server thread/INFO]: Max TNT Explosions: 100
[22:04:41] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:04:41] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:04:41] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:04:41] [Server thread/INFO]: Item Merge Radius: 2.5
[22:04:41] [Server thread/INFO]: Item Despawn Rate: 6000
[22:04:41] [Server thread/INFO]: View Distance: 7
[22:04:41] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:04:41] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:04:41] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:04:41] [Server thread/INFO]: Preparing start region for dimension minecraft:elemental_realm
[22:04:42] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:42] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:42] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:43] [Server thread/INFO]: Preparing spawn area: 59%
[22:04:43] [Server thread/INFO]: Time elapsed: 1663 ms
[22:04:43] [Server thread/INFO]: [WorldGuard] (Elemental_Realm) TNT ignition is PERMITTED.
[22:04:43] [Server thread/INFO]: [WorldGuard] (Elemental_Realm) Lighters are PERMITTED.
[22:04:43] [Server thread/INFO]: [WorldGuard] (Elemental_Realm) Lava fire is PERMITTED.
[22:04:43] [Server thread/INFO]: [WorldGuard] (Elemental_Realm) Fire spread is UNRESTRICTED.
[22:04:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Elemental_Realm'
[22:04:43] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Elemental_Realm'.
[22:04:43] [Server thread/INFO]: -------- World Settings For [Ogrimmar] --------
[22:04:43] [Server thread/INFO]: Mob Spawn Range: 4
[22:04:43] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:04:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:04:43] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:04:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:04:43] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:04:43] [Server thread/INFO]: Max TNT Explosions: 100
[22:04:43] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:04:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:04:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:04:43] [Server thread/INFO]: Item Merge Radius: 2.5
[22:04:43] [Server thread/INFO]: Item Despawn Rate: 6000
[22:04:43] [Server thread/INFO]: View Distance: 7
[22:04:43] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:04:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:04:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:04:43] [Server thread/INFO]: Preparing start region for dimension minecraft:ogrimmar
[22:04:44] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:44] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:44] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:44] [Server thread/INFO]: Time elapsed: 1339 ms
[22:04:44] [Server thread/INFO]: [WorldGuard] (Ogrimmar) TNT ignition is PERMITTED.
[22:04:44] [Server thread/INFO]: [WorldGuard] (Ogrimmar) Lighters are PERMITTED.
[22:04:44] [Server thread/INFO]: [WorldGuard] (Ogrimmar) Lava fire is PERMITTED.
[22:04:44] [Server thread/INFO]: [WorldGuard] (Ogrimmar) Fire spread is UNRESTRICTED.
[22:04:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Ogrimmar'
[22:04:45] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Ogrimmar'.
[22:04:45] [Server thread/INFO]: -------- World Settings For [GuildArenas] --------
[22:04:45] [Server thread/INFO]: Mob Spawn Range: 4
[22:04:45] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:04:45] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:04:45] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:04:45] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:04:45] [Server thread/INFO]: Max TNT Explosions: 100
[22:04:45] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:04:45] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:04:45] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:04:45] [Server thread/INFO]: Item Merge Radius: 2.5
[22:04:45] [Server thread/INFO]: Item Despawn Rate: 6000
[22:04:45] [Server thread/INFO]: View Distance: 7
[22:04:45] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:04:45] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:04:45] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:04:45] [Server thread/INFO]: Preparing start region for dimension minecraft:guildarenas
[22:04:45] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:45] [Server thread/INFO]: Preparing spawn area: 83%
[22:04:45] [Server thread/INFO]: Time elapsed: 656 ms
[22:04:45] [Server thread/INFO]: [WorldGuard] (GuildArenas) TNT ignition is PERMITTED.
[22:04:45] [Server thread/INFO]: [WorldGuard] (GuildArenas) Lighters are PERMITTED.
[22:04:45] [Server thread/INFO]: [WorldGuard] (GuildArenas) Lava fire is PERMITTED.
[22:04:45] [Server thread/INFO]: [WorldGuard] (GuildArenas) Fire spread is UNRESTRICTED.
[22:04:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GuildArenas'
[22:04:45] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'GuildArenas'.
[22:04:45] [Server thread/INFO]: -------- World Settings For [mini-games] --------
[22:04:45] [Server thread/INFO]: Mob Spawn Range: 4
[22:04:45] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:04:45] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:04:45] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:04:45] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:04:45] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:04:45] [Server thread/INFO]: Max TNT Explosions: 100
[22:04:45] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:04:45] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:04:45] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:04:45] [Server thread/INFO]: Item Merge Radius: 2.5
[22:04:45] [Server thread/INFO]: Item Despawn Rate: 6000
[22:04:45] [Server thread/INFO]: View Distance: 7
[22:04:45] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:04:45] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:04:45] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:04:45] [Server thread/INFO]: Preparing start region for dimension minecraft:mini-games
[22:04:46] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:46] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:47] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:47] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:50] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:50] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:50] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:50] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:50] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:50] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:51] [Server thread/INFO]: Preparing spawn area: 83%
[22:04:51] [Server thread/INFO]: Preparing spawn area: 83%
[22:04:51] [Server thread/INFO]: Time elapsed: 5698 ms
[22:04:51] [Server thread/INFO]: [WorldGuard] (mini-games) TNT ignition is PERMITTED.
[22:04:51] [Server thread/INFO]: [WorldGuard] (mini-games) Lighters are PERMITTED.
[22:04:51] [Server thread/INFO]: [WorldGuard] (mini-games) Lava fire is PERMITTED.
[22:04:51] [Server thread/INFO]: [WorldGuard] (mini-games) Fire spread is UNRESTRICTED.
[22:04:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mini-games'
[22:04:51] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'mini-games'.
[22:04:51] [Server thread/INFO]: -------- World Settings For [Wild] --------
[22:04:51] [Server thread/INFO]: Mob Spawn Range: 4
[22:04:51] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:04:51] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:04:51] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:04:51] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:04:51] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:04:51] [Server thread/INFO]: Max TNT Explosions: 100
[22:04:51] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:04:51] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:04:51] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:04:51] [Server thread/INFO]: Item Merge Radius: 2.5
[22:04:51] [Server thread/INFO]: Item Despawn Rate: 6000
[22:04:51] [Server thread/INFO]: View Distance: 7
[22:04:51] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:04:51] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:04:51] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:04:51] [Server thread/INFO]: Preparing start region for dimension minecraft:wild
[22:04:52] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:52] [Server thread/INFO]: Preparing spawn area: 0%
[22:04:53] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:01] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:02] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:03] [Server thread/INFO]: Preparing spawn area: 87%
[22:05:04] [Server thread/INFO]: Preparing spawn area: 97%
[22:05:04] [Server thread/INFO]: Time elapsed: 12594 ms
[22:05:04] [Server thread/INFO]: [WorldGuard] (Wild) TNT ignition is PERMITTED.
[22:05:04] [Server thread/INFO]: [WorldGuard] (Wild) Lighters are PERMITTED.
[22:05:04] [Server thread/INFO]: [WorldGuard] (Wild) Lava fire is PERMITTED.
[22:05:04] [Server thread/INFO]: [WorldGuard] (Wild) Fire spread is UNRESTRICTED.
[22:05:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Wild'
[22:05:04] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Wild'.
[22:05:04] [Server thread/INFO]: Could not set generator for world 'MiniGames': Plugin 'CleanroomGenerator' does not exist
[22:05:04] [Server thread/INFO]: -------- World Settings For [MiniGames] --------
[22:05:04] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:04] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:04] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:04] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:04] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:04] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:04] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:04] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:04] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:04] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:04] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:04] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:04] [Server thread/INFO]: View Distance: 7
[22:05:04] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:04] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:04] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:04] [Server thread/INFO]: Preparing start region for dimension minecraft:minigames
[22:05:04] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:04] [Worker-Main-28/INFO]: Preparing spawn area: 83%
[22:05:05] [Server thread/INFO]: Preparing spawn area: 86%
[22:05:05] [Server thread/INFO]: Time elapsed: 1332 ms
[22:05:05] [Server thread/INFO]: [WorldGuard] (MiniGames) TNT ignition is PERMITTED.
[22:05:05] [Server thread/INFO]: [WorldGuard] (MiniGames) Lighters are PERMITTED.
[22:05:05] [Server thread/INFO]: [WorldGuard] (MiniGames) Lava fire is PERMITTED.
[22:05:05] [Server thread/INFO]: [WorldGuard] (MiniGames) Fire spread is UNRESTRICTED.
[22:05:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'MiniGames'
[22:05:05] [Server thread/INFO]: Could not set generator for world 'MiniGames': Plugin 'CleanroomGenerator' does not exist
[22:05:05] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'MiniGames'.
[22:05:05] [Server thread/INFO]: -------- World Settings For [boats] --------
[22:05:05] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:05] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:05] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:05] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:05] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:05] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:05] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:05] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:05] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:05] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:05] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:05] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:05] [Server thread/INFO]: View Distance: 7
[22:05:05] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:05] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:05] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:05] [Server thread/INFO]: Preparing start region for dimension minecraft:boats
[22:05:05] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:06] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:06] [Server thread/INFO]: Time elapsed: 582 ms
[22:05:06] [Server thread/INFO]: [WorldGuard] (boats) TNT ignition is PERMITTED.
[22:05:06] [Server thread/INFO]: [WorldGuard] (boats) Lighters are PERMITTED.
[22:05:06] [Server thread/INFO]: [WorldGuard] (boats) Lava fire is PERMITTED.
[22:05:06] [Server thread/INFO]: [WorldGuard] (boats) Fire spread is UNRESTRICTED.
[22:05:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boats'
[22:05:06] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'boats'.
[22:05:06] [Server thread/INFO]: -------- World Settings For [KitPvP] --------
[22:05:06] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:06] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:06] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:06] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:06] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:06] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:06] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:06] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:06] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:06] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:06] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:06] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:06] [Server thread/INFO]: View Distance: 7
[22:05:06] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:06] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:06] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:06] [Server thread/INFO]: Preparing start region for dimension minecraft:kitpvp
[22:05:06] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:06] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:07] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:07] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:09] [Server thread/INFO]: Preparing spawn area: 83%
[22:05:09] [Server thread/INFO]: Preparing spawn area: 83%
[22:05:09] [Server thread/INFO]: Preparing spawn area: 83%
[22:05:10] [Server thread/INFO]: Preparing spawn area: 84%
[22:05:10] [Server thread/INFO]: Time elapsed: 3948 ms
[22:05:10] [Server thread/INFO]: [WorldGuard] (KitPvP) TNT ignition is PERMITTED.
[22:05:10] [Server thread/INFO]: [WorldGuard] (KitPvP) Lighters are PERMITTED.
[22:05:10] [Server thread/INFO]: [WorldGuard] (KitPvP) Lava fire is PERMITTED.
[22:05:10] [Server thread/INFO]: [WorldGuard] (KitPvP) Fire spread is UNRESTRICTED.
[22:05:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KitPvP'
[22:05:10] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'KitPvP'.
[22:05:10] [Server thread/INFO]: -------- World Settings For [Mines] --------
[22:05:10] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:10] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:10] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:10] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:10] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:10] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:10] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:10] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:10] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:10] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:10] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:10] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:10] [Server thread/INFO]: View Distance: 7
[22:05:10] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:10] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:10] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:10] [Server thread/INFO]: Preparing start region for dimension minecraft:mines
[22:05:10] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:10] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:12] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:12] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:15] [Server thread/INFO]: Preparing spawn area: 83%
[22:05:15] [Server thread/INFO]: Time elapsed: 4967 ms
[22:05:15] [Server thread/INFO]: [WorldGuard] (Mines) TNT ignition is PERMITTED.
[22:05:15] [Server thread/INFO]: [WorldGuard] (Mines) Lighters are PERMITTED.
[22:05:15] [Server thread/INFO]: [WorldGuard] (Mines) Lava fire is PERMITTED.
[22:05:15] [Server thread/INFO]: [WorldGuard] (Mines) Fire spread is UNRESTRICTED.
[22:05:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Mines'
[22:05:15] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Mines'.
[22:05:15] [Server thread/INFO]: -------- World Settings For [Bored] --------
[22:05:15] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:15] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:15] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:15] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:15] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:15] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:15] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:15] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:15] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:15] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:15] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:15] [Server thread/INFO]: View Distance: 7
[22:05:15] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:15] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:15] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:15] [Server thread/INFO]: Preparing start region for dimension minecraft:bored
[22:05:15] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:15] [Server thread/INFO]: Preparing spawn area: 96%
[22:05:15] [Server thread/INFO]: Time elapsed: 585 ms
[22:05:15] [Server thread/INFO]: [WorldGuard] (Bored) TNT ignition is PERMITTED.
[22:05:15] [Server thread/INFO]: [WorldGuard] (Bored) Lighters are PERMITTED.
[22:05:15] [Server thread/INFO]: [WorldGuard] (Bored) Lava fire is PERMITTED.
[22:05:15] [Server thread/INFO]: [WorldGuard] (Bored) Fire spread is UNRESTRICTED.
[22:05:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Bored'
[22:05:15] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Bored'.
[22:05:15] [Server thread/INFO]: -------- World Settings For [PlotWorld] --------
[22:05:15] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:15] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:15] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:15] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:15] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:15] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:15] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:15] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:15] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:15] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:15] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:15] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:15] [Server thread/INFO]: View Distance: 7
[22:05:15] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:15] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:15] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:15] [Server thread/INFO]: Preparing start region for dimension minecraft:plotworld
[22:05:16] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:16] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:20] [Worker-Main-29/INFO]: Preparing spawn area: 84%
[22:05:20] [Worker-Main-29/INFO]: Preparing spawn area: 84%
[22:05:20] [Worker-Main-24/INFO]: Preparing spawn area: 84%
[22:05:20] [Worker-Main-24/INFO]: Preparing spawn area: 84%
[22:05:20] [Worker-Main-24/INFO]: Preparing spawn area: 84%
[22:05:20] [Worker-Main-15/INFO]: Preparing spawn area: 84%
[22:05:20] [Worker-Main-30/INFO]: Preparing spawn area: 84%
[22:05:20] [Server thread/INFO]: Preparing spawn area: 84%
[22:05:20] [Worker-Main-15/INFO]: Preparing spawn area: 84%
[22:05:21] [Worker-Main-10/INFO]: Preparing spawn area: 84%
[22:05:21] [Server thread/INFO]: Preparing spawn area: 85%
[22:05:22] [Worker-Main-24/INFO]: Preparing spawn area: 90%
[22:05:22] [Worker-Main-11/INFO]: Preparing spawn area: 97%
[22:05:23] [Server thread/INFO]: Time elapsed: 7161 ms
[22:05:23] [Server thread/INFO]: [WorldGuard] (PlotWorld) TNT ignition is PERMITTED.
[22:05:23] [Server thread/INFO]: [WorldGuard] (PlotWorld) Lighters are PERMITTED.
[22:05:23] [Server thread/INFO]: [WorldGuard] (PlotWorld) Lava fire is PERMITTED.
[22:05:23] [Server thread/INFO]: [WorldGuard] (PlotWorld) Fire spread is UNRESTRICTED.
[22:05:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PlotWorld'
[22:05:23] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'PlotWorld'.
[22:05:23] [Server thread/INFO]: -------- World Settings For [ESpawns] --------
[22:05:23] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:23] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:23] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:23] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:23] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:23] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:23] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:23] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:23] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:23] [Server thread/INFO]: View Distance: 7
[22:05:23] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:23] [Server thread/INFO]: Preparing start region for dimension minecraft:espawns
[22:05:23] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:23] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:26] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:26] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:26] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:26] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:28] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:28] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:28] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:28] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:28] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:28] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:29] [Server thread/INFO]: Preparing spawn area: 85%
[22:05:29] [Server thread/INFO]: Time elapsed: 6211 ms
[22:05:29] [Server thread/INFO]: [WorldGuard] (ESpawns) TNT ignition is PERMITTED.
[22:05:29] [Server thread/INFO]: [WorldGuard] (ESpawns) Lighters are PERMITTED.
[22:05:29] [Server thread/INFO]: [WorldGuard] (ESpawns) Lava fire is PERMITTED.
[22:05:29] [Server thread/INFO]: [WorldGuard] (ESpawns) Fire spread is UNRESTRICTED.
[22:05:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ESpawns'
[22:05:29] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'ESpawns'.
[22:05:29] [Server thread/INFO]: -------- World Settings For [endmap] --------
[22:05:29] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:29] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:29] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:29] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:29] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:29] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:29] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:29] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:29] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:29] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:29] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:29] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:29] [Server thread/INFO]: View Distance: 7
[22:05:29] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:29] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:29] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:29] [Server thread/INFO]: Preparing start region for dimension minecraft:endmap
[22:05:29] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:30] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:30] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:30] [Server thread/INFO]: Time elapsed: 1115 ms
[22:05:30] [Server thread/INFO]: [WorldGuard] (endmap) TNT ignition is PERMITTED.
[22:05:30] [Server thread/INFO]: [WorldGuard] (endmap) Lighters are PERMITTED.
[22:05:30] [Server thread/INFO]: [WorldGuard] (endmap) Lava fire is PERMITTED.
[22:05:30] [Server thread/INFO]: [WorldGuard] (endmap) Fire spread is UNRESTRICTED.
[22:05:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'endmap'
[22:05:30] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'endmap'.
[22:05:30] [Server thread/INFO]: [dynmap] Loaded 4 pending tile renders for world 'endmap'
[22:05:30] [Server thread/INFO]: -------- World Settings For [Albion] --------
[22:05:30] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:30] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:30] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:30] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:30] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:30] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:30] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:30] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:30] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:30] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:30] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:30] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:30] [Server thread/INFO]: View Distance: 7
[22:05:30] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:30] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:30] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:30] [Server thread/INFO]: Preparing start region for dimension minecraft:albion
[22:05:30] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:31] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:31] [Server thread/INFO]: Time elapsed: 726 ms
[22:05:31] [Server thread/INFO]: [WorldGuard] (Albion) TNT ignition is PERMITTED.
[22:05:31] [Server thread/INFO]: [WorldGuard] (Albion) Lighters are PERMITTED.
[22:05:31] [Server thread/INFO]: [WorldGuard] (Albion) Lava fire is PERMITTED.
[22:05:31] [Server thread/INFO]: [WorldGuard] (Albion) Fire spread is UNRESTRICTED.
[22:05:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Albion'
[22:05:31] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Albion'.
[22:05:31] [Server thread/INFO]: -------- World Settings For [End] --------
[22:05:31] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:31] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:31] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:31] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:31] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:31] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:31] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:31] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:31] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:31] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:31] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:31] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:31] [Server thread/INFO]: View Distance: 7
[22:05:31] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:31] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:31] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:31] [Server thread/INFO]: Preparing start region for dimension minecraft:end
[22:05:31] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:32] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:32] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:32] [Server thread/INFO]: Time elapsed: 1145 ms
[22:05:32] [Server thread/INFO]: [WorldGuard] (End) TNT ignition is PERMITTED.
[22:05:32] [Server thread/INFO]: [WorldGuard] (End) Lighters are PERMITTED.
[22:05:32] [Server thread/INFO]: [WorldGuard] (End) Lava fire is PERMITTED.
[22:05:32] [Server thread/INFO]: [WorldGuard] (End) Fire spread is UNRESTRICTED.
[22:05:32] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'End'
[22:05:32] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'End'.
[22:05:32] [Server thread/INFO]: -------- World Settings For [genesistown] --------
[22:05:32] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:32] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:32] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:32] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:32] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:32] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:32] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:32] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:32] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:32] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:32] [Server thread/INFO]: View Distance: 7
[22:05:32] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:32] [Server thread/INFO]: Preparing start region for dimension minecraft:genesistown
[22:05:33] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:33] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:33] [Server thread/INFO]: Time elapsed: 880 ms
[22:05:33] [Server thread/INFO]: [WorldGuard] (genesistown) TNT ignition is PERMITTED.
[22:05:33] [Server thread/INFO]: [WorldGuard] (genesistown) Lighters are PERMITTED.
[22:05:33] [Server thread/INFO]: [WorldGuard] (genesistown) Lava fire is PERMITTED.
[22:05:33] [Server thread/INFO]: [WorldGuard] (genesistown) Fire spread is UNRESTRICTED.
[22:05:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'genesistown'
[22:05:33] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'genesistown'.
[22:05:33] [Server thread/INFO]: -------- World Settings For [AlbionSchool] --------
[22:05:33] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:33] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:33] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:33] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:33] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:33] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:33] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:33] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:33] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:33] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:33] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:33] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:33] [Server thread/INFO]: View Distance: 7
[22:05:33] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:33] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:33] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:33] [Server thread/INFO]: Preparing start region for dimension minecraft:albionschool
[22:05:34] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:34] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:34] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:35] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:35] [Server thread/INFO]: Preparing spawn area: 83%
[22:05:35] [Server thread/INFO]: Time elapsed: 2299 ms
[22:05:35] [Server thread/INFO]: [WorldGuard] (AlbionSchool) TNT ignition is PERMITTED.
[22:05:35] [Server thread/INFO]: [WorldGuard] (AlbionSchool) Lighters are PERMITTED.
[22:05:35] [Server thread/INFO]: [WorldGuard] (AlbionSchool) Lava fire is PERMITTED.
[22:05:35] [Server thread/INFO]: [WorldGuard] (AlbionSchool) Fire spread is UNRESTRICTED.
[22:05:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AlbionSchool'
[22:05:35] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'AlbionSchool'.
[22:05:35] [Server thread/INFO]: -------- World Settings For [ElementalWorld] --------
[22:05:35] [Server thread/INFO]: Mob Spawn Range: 4
[22:05:35] [Server thread/INFO]: Experience Merge Radius: 3.0
[22:05:35] [Server thread/INFO]: Cactus Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Cane Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Melon Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Sapling Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Carrot Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Potato Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Wheat Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Vine Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Kelp Growth Modifier: 100%
[22:05:35] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[22:05:35] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[22:05:35] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[22:05:35] [Server thread/INFO]: Max TNT Explosions: 100
[22:05:35] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[22:05:35] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[22:05:35] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[22:05:35] [Server thread/INFO]: Item Merge Radius: 2.5
[22:05:35] [Server thread/INFO]: Item Despawn Rate: 6000
[22:05:35] [Server thread/INFO]: View Distance: 7
[22:05:35] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[22:05:35] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[22:05:35] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[22:05:35] [Server thread/INFO]: Preparing start region for dimension minecraft:elementalworld
[22:05:36] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:36] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:36] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:37] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:38] [Server thread/INFO]: Preparing spawn area: 0%
[22:05:38] [Server thread/INFO]: Preparing spawn area: 85%
[22:05:38] [Server thread/INFO]: Time elapsed: 2767 ms
[22:05:38] [Server thread/INFO]: [WorldGuard] (ElementalWorld) TNT ignition is PERMITTED.
[22:05:38] [Server thread/INFO]: [WorldGuard] (ElementalWorld) Lighters are PERMITTED.
[22:05:38] [Server thread/INFO]: [WorldGuard] (ElementalWorld) Lava fire is PERMITTED.
[22:05:38] [Server thread/INFO]: [WorldGuard] (ElementalWorld) Fire spread is UNRESTRICTED.
[22:05:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ElementalWorld'
[22:05:38] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'ElementalWorld'.
[22:05:38] [Server thread/INFO]: [Multiverse-Core] 21 - World(s) loaded.
[22:05:38] [Server thread/INFO]: [Multiverse-Core] Version 4.2.2-b812 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[22:05:38] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.2.0-SNAPSHOT (build 373)
[22:05:38] [Server thread/INFO]: [Sentinel] Sentinel loading...
[22:05:38] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[22:05:38] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[22:05:38] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[22:05:38] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[22:05:38] [Server thread/INFO]: [Multiverse-Portals] 8 - Portals(s) loaded
[22:05:38] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[22:05:38] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[22:05:38] [Server thread/INFO]: [CrateReloaded] Enabling CrateReloaded v2.0.23
[22:05:38] [Server thread/INFO]: [CrateReloaded] Config Version: 2.X
[22:05:38] [Server thread/INFO]: [CrateReloaded] v1_16_R3
[22:05:40] [Server thread/INFO]: [CrateReloaded] Crate Configurations (1): crate.yml 
[22:05:40] [Server thread/INFO]: [CasinoPlugin] Enabling CasinoPlugin v4.0.1
[22:05:40] [Server thread/INFO]: [Casino] config.yml exists!
[22:05:40] [Server thread/INFO]: [Casino] playersigns.json exists!
[22:05:40] [Server thread/INFO]: [Casino] data.yml exists!
[22:05:40] [Server thread/INFO]: [Casino] leaderboardsigns.yml exists!
[22:05:40] [Server thread/INFO]: [Casino] slotchests.json exists!
[22:05:40] [Server thread/INFO]: [Casino] jackpot.json exists!
[22:05:40] [Server thread/INFO]: [Casino] notifications.yml exists!
[22:05:40] [Server thread/INFO]: [Casino] config.yml successfully imported!
[22:05:40] [Server thread/INFO]: [Casino] Successfully imported 90 data-packets!
[22:05:40] [Server thread/INFO]: [Casino] Found prefix [Luck House]  in config.yml... changed to new prefix!
[22:05:42] [Server thread/INFO]: [Luck House] Successfully imported 8 playersigns from playersigns.json
[22:05:42] [Server thread/INFO]: [Luck House] Successfully imported all leaderboard signs! (0)
[22:05:42] [Server thread/INFO]: [Luck House] ERROR while trying to import notification settings: null
[22:05:43] [Server thread/INFO]: [Luck House] Your plugin is not up to date. Your current version is 4.0.1 and the newest version is 4.0.2
[22:05:43] [Server thread/INFO]: [Luck House] Successfully hooked with Vault
[22:05:43] [Server thread/INFO]: [Luck House] Successfully hooked with Vault
[22:05:43] [Server thread/INFO]: [Luck House] Holograms are enabled on the server.
[22:05:43] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.1-b786
[22:05:43] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.1-b786]  Enabled - By Rigby and fernferret
[22:05:43] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:05:44] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:05:44] [Server thread/INFO]: Done (88.577s)! For help, type "help"
[22:05:44] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.16.4(754)
[22:05:44] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[22:05:44] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[22:05:44] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[22:05:44] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[22:05:44] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[22:05:44] [Craft Scheduler Thread - 1/INFO]: [P2] There appears to be a PlotSquared update available!
[22:05:44] [Craft Scheduler Thread - 1/INFO]: [P2] You are running version 5.13.8-Premium, latest version is 5.13.10
[22:05:44] [Craft Scheduler Thread - 1/INFO]: [P2] https://www.spigotmc.org/resources/77506/updates
[22:05:44] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Vault for Vault's Economy API
[22:05:44] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Vault for Vault's Chat API
[22:05:44] [Craft Scheduler Thread - 2/INFO]: [ChatEx] Checking for update...
[22:05:44] [Server thread/INFO]: [BigDoors] Checking for updates...
[22:05:44] [Craft Scheduler Thread - 2/INFO]: [ChatEx] Version installed is 2.6.1
[22:05:44] [Craft Scheduler Thread - 2/INFO]: [ChatEx] Latest version found online is 2.6.1
[22:05:44] [Craft Scheduler Thread - 2/INFO]: [ChatEx] No update found.
[22:05:44] [ForkJoinPool.commonPool-worker-1/INFO]: [BigDoors] No new updates available.
[22:05:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player
[22:05:44] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin.
[22:05:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[22:05:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server
[22:05:44] [Server thread/INFO]: 3 placeholder hooks successfully registered!
[22:05:44] [Server thread/INFO]: A Folder/World already exists with this name!
[22:05:44] [Server thread/INFO]: If you are confident it is a world you can import with /mvimport
[22:05:44] [Server thread/WARN]: [PlotSquared] Task #9 for PlotSquared v5.13.8-Premium generated an exception
java.lang.NullPointerException: null
    at com.plotsquared.bukkit.BukkitMain.setGenerator(BukkitMain.java:1087) ~[?:?]
    at com.plotsquared.core.PlotSquared.lambda$new$1(PlotSquared.java:353) ~[?:?]
    at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:400) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at net.minecraft.server.v1_16_R3.MinecraftServer.b(MinecraftServer.java:1060) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at net.minecraft.server.v1_16_R3.DedicatedServer.b(DedicatedServer.java:355) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at net.minecraft.server.v1_16_R3.MinecraftServer.a(MinecraftServer.java:1008) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:847) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$0(MinecraftServer.java:164) ~[spigot-1.16.4.jar:git-Spigot-ff439d1-ff2b944]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_271]
[22:05:44] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[22:05:45] [Craft Scheduler Thread - 6/INFO]: [HeadDatabase] Succesfully loaded 34234 heads!
[22:05:45] [Craft Scheduler Thread - 6/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[22:05:45] [Craft Scheduler Thread - 6/WARN]: [HeadDatabase] §cYou are using a outdated version!
[22:05:45] [Craft Scheduler Thread - 6/WARN]: [HeadDatabase] Latest version: §a4.13.2§e. You are on version: §c4.12.6§e.
[22:05:45] [Craft Scheduler Thread - 6/WARN]: [HeadDatabase] Update here: §bhttps://www.spigotmc.org/resources/head-database.14280/
[22:05:45] [Server thread/INFO]: +> [] +-------------------------+ 
[22:05:46] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 3.
[22:05:46] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 4.
[22:05:46] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 23.
[22:05:46] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 21.
[22:05:46] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 52.
[22:05:46] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 49.
[22:05:46] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 47.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 45.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 43.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 41.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 71.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 69.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 67.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 66.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 64.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 61.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 59.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 57.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 56.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 53.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 76.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 74.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 80.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 79.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 78.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 77.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 82.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 81.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait fishing failed to load for NPC ID: 96.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 96.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 97.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait fishing failed to load for NPC ID: 126.
[22:05:47] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 126.
[22:05:48] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 167.
[22:05:48] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 169.
[22:05:48] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 181.
[22:05:48] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 195.
[22:05:48] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 203.
[22:05:49] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 318.
[22:05:49] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 317.
[22:05:49] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 328.
[22:05:50] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 441.
[22:05:50] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 440.
[22:05:50] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 436.
[22:05:50] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 435.
[22:05:50] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 447.
[22:05:50] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 446.
[22:05:50] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 445.
[22:05:50] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 532.
[22:05:51] [Server thread/INFO]: [Citizens] Could not fetch NMS field bF: [[bF.
[22:05:51] [Server thread/INFO]: [Citizens] Could not fetch NMS field bF: [[null.
[22:05:51] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 588.
[22:05:51] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 585.
[22:05:51] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 583.
[22:05:51] [Server thread/INFO]: [Citizens] Loaded 503 NPCs.
[22:05:51] [Server thread/INFO]: [ViaVersion] Shutting down mapping loader executor!
[22:05:51] [Craft Scheduler Thread - 6/INFO]: [Vault] Checking for Updates ... 
[22:05:51] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[22:05:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse
[22:05:51] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[22:05:51] [Craft Scheduler Thread - 6/INFO]: [Vault] No new version available
[22:05:53] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8917ms or 178 ticks behind
[22:05:53] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[22:06:00] [Craft Scheduler Thread - 12/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 12/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:00] [Craft Scheduler Thread - 12/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 12/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:00] [Craft Scheduler Thread - 12/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 12/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:00] [Craft Scheduler Thread - 12/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:00] [Craft Scheduler Thread - 13/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 13/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:00] [Craft Scheduler Thread - 13/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 13/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:00] [Craft Scheduler Thread - 13/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 13/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:00] [Craft Scheduler Thread - 13/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:00] [Craft Scheduler Thread - 14/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 14/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:00] [Craft Scheduler Thread - 14/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:01] [Craft Scheduler Thread - 9/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 9/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:01] [Craft Scheduler Thread - 9/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 9/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:01] [Craft Scheduler Thread - 9/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 9/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:01] [Craft Scheduler Thread - 9/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:01] [Craft Scheduler Thread - 12/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 12/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:01] [Craft Scheduler Thread - 12/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:01] [Craft Scheduler Thread - 11/ERROR]: [UltimateStacker] An error occurred executing an SQLite query: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 11/WARN]: org.sqlite.SQLiteException: [SQLITE_CONSTRAINT_PRIMARYKEY]  A PRIMARY KEY constraint failed (UNIQUE constraint failed: ultimatestacker_stacked_entities.uuid)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1012)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1024)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at org.sqlite.core.DB.execute(DB.java:863)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at org.sqlite.core.DB.executeUpdate(DB.java:904)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.executeUpdate(JDBC3PreparedStatement.java:98)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$null$14(DataManager.java:132)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at com.songoda.ultimatestacker.core.database.SQLiteConnector.connect(SQLiteConnector.java:54)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at com.songoda.ultimatestacker.database.DataManager.lambda$createStackedEntity$15(DataManager.java:125)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at com.songoda.ultimatestacker.core.database.DataManagerAbstract.lambda$doQueue$3(DataManagerAbstract.java:104)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:81)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[22:06:01] [Craft Scheduler Thread - 11/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:06:07] [User Authenticator #1/INFO]: UUID of player Noitibos is 9c41427c-9b96-4b0e-8c90-80d45607ae6d
[22:06:08] [Bank - Loader Thread/INFO]: [Bank] Loading 9c41427c-9b96-4b0e-8c90-80d45607ae6d
[22:06:09] [Server thread/INFO]: Noitibos[/85.246.234.217:42019] logged in with entity id 3635 at ([genesistown]230.4287651129823, 78.90526442476862, -98.04690276165314)
[22:06:14] [Netty Epoll Server IO #1/ERROR]: java.lang.NullPointerException
[22:06:33] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 9962ms or 199 ticks behind
[22:06:44] [Server thread/WARN]: [ViaVersion] Could not check for updates, check your connection.
[22:06:50] [Server thread/INFO]: CONSOLE issued server command: /list 
[22:06:50] [Server thread/INFO]: There are 1 out of maximum 100 players online.
[22:06:50] [Server thread/INFO]: Admins: Noitibos
[22:06:55] [Server thread/INFO]: Noitibos issued server command: /npc sit
[22:06:58] [Server thread/INFO]: Noitibos issued server command: /npc select
[22:07:01] [Server thread/INFO]: Noitibos issued server command: /npc sit
[22:07:42] [Server thread/INFO]: Noitibos issued server command: /pl
[22:07:56] [Server thread/INFO]: CONSOLE issued server command: /list 
[22:07:56] [Server thread/INFO]: There are 1 out of maximum 100 players online.
[22:07:56] [Server thread/INFO]: Admins: Noitibos