Paste #109374: Unnamed Server Log Paste

Date: 2023/04/30 20:39:02 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
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
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220


[03:08:13] [ServerMain/INFO]: [SparkProviderSource] Purpur: Using user-provided spark plugin instead of our own.
[03:08:16] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[03:08:16] [ServerMain/INFO]: Loaded 7 recipes
[03:08:17] [Server thread/INFO]: Starting minecraft server version 1.19.4
[03:08:17] [Server thread/INFO]: Loading properties
[03:08:17] [Server thread/INFO]: This server is running Pufferfish+ (Purpur) version git-PufferfishPlusPurpur-19 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: 4fc80fc on HEAD)
[03:08:17] [Server thread/INFO]: Server Ping Player Sample Count: 0
[03:08:17] [Server thread/INFO]: Using 4 threads for Netty based IO
[03:08:17] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[03:08:18] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[03:08:18] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[03:08:18] [Server thread/WARN]: [Pufferfish] If you have already added this flag, then SIMD operations are not supported on your JVM or CPU.
[03:08:18] [Server thread/WARN]: [Pufferfish] Debug: Java: 17.0.7, test run: true
[03:08:18] [Server thread/INFO]: Default game type: SURVIVAL
[03:08:18] [Server thread/INFO]: Generating keypair
[03:08:18] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:19132
[03:08:18] [Server thread/INFO]: Using epoll channel type
[03:08:18] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[03:08:18] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[03:08:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[03:08:19] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[03:08:21] [Server thread/WARN]: Legacy plugin MVdWPlaceholderAPI v3.1.1 does not specify an api-version.
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loading 1 libraries... please wait
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loaded library /home/container/libraries/dev/dejvokep/boosted-yaml-spigot/1.3/boosted-yaml-spigot-1.3.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loading 2 libraries... please wait
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[03:08:21] [Server thread/INFO]: [CS-API] Attempting to initialize the library using detected version v1_19_R3
[03:08:21] [Server thread/INFO]: [CS-API] Successfully assigned the NMS methods for v1_19_R3
[03:08:21] [Server thread/INFO]: [CS-API] -------------------------------[ Loadings Timers ]-------------------------------
[03:08:21] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'SECOND', with a duration of 1000
[03:08:21] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'MINUTE', with a duration of 60000
[03:08:21] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'HOURLY', with a duration of 3600000
[03:08:21] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'DAILY', with a duration of 86400000
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loading 1 libraries... please wait
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loading 4 libraries... please wait
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/mariadb/jdbc/mariadb-java-client/3.1.3/mariadb-java-client-3.1.3.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/github/waffle/waffle-jna/3.2.0/waffle-jna-3.2.0.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/slf4j/jcl-over-slf4j/1.7.36/jcl-over-slf4j-1.7.36.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.23.0/checker-qual-3.23.0.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/8.0.32/mysql-connector-j-8.0.32.jar
[03:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar
[03:08:21] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.58
[03:08:21] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[03:08:21] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.2-SNAPSHOT-408;9f3c909
[03:08:22] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@37c178e5]
[03:08:22] [Server thread/INFO]: [JunoPerformanceCore] Loading server plugin JunoPerformanceCore v1.0-SNAPSHOT
[03:08:22] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8-beta-01+cbb2ba7
[03:08:22] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.2
[03:08:22] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-638
[03:08:22] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.2.6-0819d467
[03:08:22] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[03:08:22] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 3031)
[03:08:22] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.24
[03:08:22] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.7
[03:08:22] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+38-b323860
[03:08:22] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.2.7-SNAPSHOT (build 6761-DEV)
[03:08:22] [Server thread/INFO]: [MVdWPlaceholderAPI] Loading server plugin MVdWPlaceholderAPI v3.1.1
[03:08:22] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.4.1-r6
[03:08:22] [Server thread/INFO]: [MassiveCore] Loading server plugin MassiveCore vMC-1.19-SNAPSHOT (efcc3e77-LOCAL)
[03:08:22] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.15
[03:08:22] [Server thread/INFO]: [MeteoritesPro] Loading server plugin MeteoritesPro v1.5.4
[03:08:22] [Server thread/INFO]: [KamiCommon] Loading server plugin KamiCommon v1.6.0
[03:08:22] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.1
[03:08:22] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.83.1
[03:08:22] [Server thread/INFO]: [JunoPrisonCore] Loading server plugin JunoPrisonCore v1.0.0
[03:08:22] [Server thread/INFO]: [GangsPlus] Loading server plugin GangsPlus v2.25.0
[03:08:22] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.6.2.239-Beta
[03:08:22] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.2
[03:08:22] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.2
[03:08:22] [Server thread/INFO]: [PWEnchants] Loading server plugin PWEnchants v1.0-SNAPSHOT
[03:08:22] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.3
[03:08:22] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.11.0
[03:08:22] [Server thread/INFO]: [OutpostOne] Loading server plugin OutpostOne v1.0.0-SNAPSHOT
[03:08:22] [Server thread/INFO]: [OutpostThree] Loading server plugin OutpostThree v1.0.0-SNAPSHOT
[03:08:22] [Server thread/INFO]: [OutpostTwo] Loading server plugin OutpostTwo v1.0.0-SNAPSHOT
[03:08:22] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[03:08:22] [Server thread/INFO]: [PluginConstructorAPI] Loading server plugin PluginConstructorAPI v1.0.52
[03:08:22] [Server thread/INFO]: [UltimateKoth] Loading server plugin UltimateKoth v1.9.14
[03:08:22] [Server thread/INFO]: [ItemFilter] Loading server plugin ItemFilter v1.0-SNAPSHOT
[03:08:22] [Server thread/INFO]: [CommandAlias] Loading server plugin CommandAlias v1.6.6-RELEASE
[03:08:22] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v5.7
[03:08:23] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[03:08:23] [Server thread/INFO]: [RestartBackup] Loading server plugin RestartBackup v1.0-SNAPSHOT
[03:08:23] [Server thread/INFO]: [ProMenus] Loading server plugin ProMenus v1.8.6
[03:08:23] [Server thread/INFO]: [PhysicsToggle] Loading server plugin PhysicsToggle v1.0.6
[03:08:23] [Server thread/INFO]: [Gkits] Loading server plugin Gkits v1.1-SNAPSHOT
[03:08:23] [Server thread/INFO]: [FreeCoinFlip] Loading server plugin FreeCoinFlip v1.7
[03:08:23] [Server thread/INFO]: [ExploitFixer] Loading server plugin ExploitFixer v2.0.6
[03:08:23] [Server thread/INFO]: [JunoServer] Loading server plugin JunoServer v1.0
[03:08:23] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.8.9
[03:08:23] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.0-dev+38-b323860
[03:08:23] [Server thread/INFO]: [SimpleScore] Loading server plugin SimpleScore v3.12.2
[03:08:23] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.21
[03:08:23] [Server thread/INFO]: [OutpostManager] Loading server plugin OutpostManager v1.0.0-SNAPSHOT
[03:08:23] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[03:08:23] [Server thread/INFO]: [SlotBot] Loading server plugin SlotBot v1.1.8
[03:08:23] [Server thread/INFO]: [Vouchers] Loading server plugin Vouchers v3.11.1
[03:08:23] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.0.0 (build 833)
[03:08:23] [Server thread/INFO]: [PacketWrapper] Loading server plugin PacketWrapper v${project.version}
[03:08:23] [Server thread/INFO]: [EnchantmentAPI] Loading server plugin EnchantmentAPI v4.28
[03:08:23] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.3-SNAPSHOT
[03:08:23] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v2.82.1
[03:08:23] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[03:08:23] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[03:08:23] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.1.0.8.1056
[03:08:23] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansions...
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/ASkyBlock Compatibility.jar' because a plugin dependency was not loaded: ASkyBlock
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Factions Compatibility v16.3'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskTowns Compatibility.jar' because a plugin dependency was not loaded: HuskTowns
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'SuperVanish/PremiumVanish Compatibility v16.2'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CMI Compatibility.jar' because a plugin dependency was not loaded: CMI
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CrashClaim Compatibility.jar' because a plugin dependency was not loaded: CrashClaim
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Logger v16.3'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Scoreboard v16.12'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Residence Compatibility.jar' because a plugin dependency was not loaded: Residence
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Newbie Helper v16.12'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/SuperiorSkyblock Compatibility.jar' because a plugin dependency was not loaded: SuperiorSkyblock2
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/ProtectionStones Compatibility.jar' because a plugin dependency was not loaded: ProtectionStones
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/GriefPrevention Compatibility.jar' because a plugin dependency was not loaded: GriefPrevention
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/uSkyBlock Compatibility.jar' because a plugin dependency was not loaded: uSkyBlock
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/IridiumSkyblock Compatibility.jar' because a plugin dependency was not loaded: IridiumSkyblock
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskSync Compatibility.jar' because a plugin dependency was not loaded: HuskSync
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/LibsDisguises Compatibility.jar' because a plugin dependency was not loaded: LibsDisguises
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Force Field v17.1'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/UltimateClaims Compatibility.jar' because a plugin dependency was not loaded: UltimateClaims
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Death Effects v16.4'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Towny Compatibility.jar' because a plugin dependency was not loaded: Towny
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Lands Compatibility.jar' because a plugin dependency was not loaded: Lands
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/PlayerParticles Compatibility.jar' because a plugin dependency was not loaded: PlayerParticles
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Citizens Compatibility v16.15'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'MythicMobs Compatibility v16.6'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Mob Tagger v16.7'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/FabledSkyBlock Compatibility.jar' because a plugin dependency was not loaded: FabledSkyBlock
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Rewards v16.8'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'EssentialsX Compatibility v16.3'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v16.9'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/RedProtect Compatibility.jar' because a plugin dependency was not loaded: RedProtect
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Damage Tagger v16.7'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/FeatherBoard Compatibility.jar' because a plugin dependency was not loaded: FeatherBoard
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/AngelChest Compatibility.jar' because a plugin dependency was not loaded: AngelChest
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/iDisguise Compatibility.jar' because a plugin dependency was not loaded: iDisguise
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/GriefDefender Compatibility.jar' because a plugin dependency was not loaded: GriefDefender
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CrackShot Compatibility.jar' because a plugin dependency was not loaded: CrackShot
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/BSkyBlock Compatibility.jar' because a plugin dependency was not loaded: BentoBox
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v16.5'...
[03:08:23] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.8-beta-01+cbb2ba7
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/PreciousStones Compatibility.jar' because a plugin dependency was not loaded: PreciousStones
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Action Bar v17.0'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Glowing v16.5'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/KingdomsX Compatibility.jar' because a plugin dependency was not loaded: Kingdoms
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Boss Bar v16.9'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Loot Protection v16.6'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/VanishNoPacket Compatibility.jar' because a plugin dependency was not loaded: VanishNoPacket
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/MarriageMaster Compatibility.jar' because a plugin dependency was not loaded: MarriageMaster
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskHomes Compatibility.jar' because a plugin dependency was not loaded: HuskHomes
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Konquest Compatibility.jar' because a plugin dependency was not loaded: Konquest
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v16.23'...
[03:08:23] [Server thread/INFO]: [CombatLogX]  
[03:08:23] [Server thread/INFO]: [CombatLogX] Successfully loaded 20 expansions.
[03:08:23] [Server thread/INFO]: [ConvincingOldPVP] Loading server plugin ConvincingOldPVP v1.0
[03:08:23] [Server thread/INFO]: [ChatControlRed] Loading server plugin ChatControlRed v10.18.4
[03:08:23] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.14
[03:08:23] [Server thread/INFO]: [DamageIndicator] Loading server plugin DamageIndicator v1.3.6-SNAPSHOT
[03:08:23] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.37
[03:08:23] [Server thread/INFO]: [OffsetCalculator] Loading server plugin OffsetCalculator v1.0
[03:08:23] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[03:08:23] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[03:08:23] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[03:08:23] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.58
[03:08:23] [Server thread/INFO]:         __    
[03:08:23] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.58
[03:08:23] [Server thread/INFO]:   |___ |      Running on Bukkit - Pufferfish+ (Purpur)
[03:08:23] [Server thread/INFO]: 
[03:08:23] [Server thread/INFO]: [LuckPerms] Loading configuration...
[03:08:24] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[03:08:24] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[03:08:24] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[03:08:24] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[03:08:24] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[03:08:24] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[03:08:25] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1715ms)
[03:08:25] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[03:08:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[03:08:25] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[03:08:25] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[03:08:25] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[03:08:25] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.2-SNAPSHOT-408;9f3c909
[03:08:25] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[03:08:25] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[03:08:25] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[03:08:25] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[03:08:25] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[03:08:26] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-638
[03:08:26] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.24
[03:08:26] [Server thread/INFO]: [MassiveCore] Enabling MassiveCore vMC-1.19-SNAPSHOT (efcc3e77-LOCAL)
[03:08:26] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] === ENABLE START ===
[03:08:26] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Loading Cachefile datas...
[03:08:26] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Loading Onlineplayer datas...
[03:08:26] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Loading Registry datas...
[03:08:26] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Saving Cachefile...
[03:08:26] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Setup of IdUtil took 11ms.
[03:08:26] [Server thread/INFO]: [org.mongodb.driver.cluster] Cluster created with settings {hosts=[n135.pufferfish.host:25463], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms'}
[03:08:26] [cluster-rtt-ClusterId{value='644f2d2a6b1d2f246c399ca6', description='null'}-n135.pufferfish.host:25463/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:2, serverValue:301}] to n135.pufferfish.host:25463
[03:08:26] [cluster-ClusterId{value='644f2d2a6b1d2f246c399ca6', description='null'}-n135.pufferfish.host:25463/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:1, serverValue:300}] to n135.pufferfish.host:25463
[03:08:26] [cluster-ClusterId{value='644f2d2a6b1d2f246c399ca6', description='null'}-n135.pufferfish.host:25463/INFO]: [org.mongodb.driver.cluster] Monitor thread successfully connected to server with description ServerDescription{address=n135.pufferfish.host:25463, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=9, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=25093139}
[03:08:27] [Server thread/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:3, serverValue:302}] to n135.pufferfish.host:25463
[03:08:27] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Integration Activated IntegrationLiabilityAreaEffectCloud
[03:08:27] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Integration Activated IntegrationVault
[03:08:27] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] === ENABLE COMPLETE (Took 1272ms) ===
[03:08:27] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.6.2.239-Beta
[03:08:27] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.2
[03:08:27] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[03:08:27] [Server thread/WARN]: It seems like you're running on paper.
[03:08:27] [Server thread/WARN]: This may cause issues.
[03:08:27] [Server thread/WARN]: If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
[03:08:27] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[03:08:27] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[03:08:27] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[03:08:27] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[03:08:27] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[03:08:27] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[03:08:27] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[03:08:27] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[03:08:27] [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.
[03:08:27] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[03:08:27] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[03:08:27] [Server thread/INFO]: Preparing level "fakeWorld"
[03:08:28] [Server thread/INFO]: [JunoPerformanceCore] Enabling JunoPerformanceCore v1.0-SNAPSHOT
[03:08:28] [Server thread/INFO]: [JunoPerformanceCore] Loaded worlds.yml
[03:08:28] [Server thread/INFO]: [JunoPerformanceCore] [ACF] Enabled Asynchronous Tab Completion Support!
[03:08:28] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
[03:08:28] [Server thread/INFO]: [WorldGuard] (fakeWorld) TNT ignition is PERMITTED.
[03:08:28] [Server thread/INFO]: [WorldGuard] (fakeWorld) Lighters are blocked.
[03:08:28] [Server thread/INFO]: [WorldGuard] (fakeWorld) Lava fire is blocked.
[03:08:28] [Server thread/INFO]: [WorldGuard] (fakeWorld) All fire spread is disabled.
[03:08:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'fakeWorld'
[03:08:28] [Server thread/INFO]: [WorldGuard] Loading region data...
[03:08:28] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[03:08:28] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[03:08:28] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.6-0819d467
[03:08:28] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.4)...
[03:08:28] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[03:08:29] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[03:08:29] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[03:08:29] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[03:08:29] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[03:08:29] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[03:08:29] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[03:08:30] [Server thread/WARN]: Plugin 'MythicMobs' is creating timing 'scheduler: io.lumine.mythic.core.skills.auras.AuraManager$$Lambda$7801/0x00000008029f2f48' - this is deprecated behavior, please report it to the authors: Lumine
[03:08:30] [Server thread/INFO]: [MythicMobs] Loading Packs...
[03:08:30] [Server thread/INFO]: [MythicMobs] Loading Items...
[03:08:30] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[03:08:30] [Server thread/INFO]: [MythicMobs] Loading Skills...
[03:08:30] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '90.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[03:08:30] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[03:08:30] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[03:08:30] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mobs.
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ Loaded 66 skills.
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ Loaded 6 mythic items.
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[03:08:30] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[03:08:30] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[03:08:30] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.2.6 ( build 0819d467 ) has been successfully loaded!
[03:08:30] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Integration Activated IntegrationMythicMobs
[03:08:30] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3031)
[03:08:30] [Server thread/INFO]: [Citizens] Loading external libraries
[03:08:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[03:08:31] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[03:08:31] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.7
[03:08:31] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[03:08:31] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[03:08:31] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[03:08:31] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+38-b323860
[03:08:31] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[03:08:31] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[03:08:31] [Server thread/INFO]: [Essentials] No kits found to migrate.
[03:08:31] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[03:08:31] [Server thread/INFO]: [Essentials] Using locale en_US
[03:08:31] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[03:08:31] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[03:08:31] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[03:08:31] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[03:08:31] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.7-SNAPSHOT (build 6761-DEV)
[03:08:31] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1338), impl for Spigot v1.2.7-SNAPSHOT (build 6761-DEV) 
[03:08:31] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.7 
[03:08:31] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[03:08:31] [Server thread/WARN]: [Denizen] Debug is disabled in the Denizen config. This is almost always a mistake, and should not be done in the majority of cases.
[03:08:32] [Server thread/INFO]: [MVdWPlaceholderAPI] Enabling MVdWPlaceholderAPI v3.1.1*
[03:08:32] [Server thread/INFO]: [MVdWPlaceholderAPI] Initializing placeholders ...
[03:08:32] [Server thread/INFO]: [MVdWPlaceholderAPI] Sending metrics ...
[03:08:32] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.4.1-r6
[03:08:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[03:08:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[03:08:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[03:08:32] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.4.1-r6
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.24
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Pufferfish+ (Purpur) git-PufferfishPlusPurpur-19 (MC: 1.19.4)
                                               
[03:08:32] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.15
[03:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.15]
[03:08:32] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[03:08:32] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[03:08:32] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[03:08:32] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_isvanished}
[03:08:32] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_vanishprefix}
[03:08:32] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_vanishsuffix}
[03:08:32] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_vanishedplayers}
[03:08:32] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_playercount}
[03:08:32] [Server thread/INFO]: [SuperVanish] Hooked into MVdWPlaceholderAPI
[03:08:32] [Server thread/INFO]: [MeteoritesPro] Enabling MeteoritesPro v1.5.4
[03:08:32] [Server thread/INFO]:          __
[03:08:32] [Server thread/INFO]:    |\/| |__)   MeteoritesPro v1.5.4
[03:08:32] [Server thread/INFO]:    |  | |        by OliPulse
[03:08:32] [Server thread/INFO]:  
[03:08:32] [Server thread/INFO]: [MeteoritesPro] Invalid world name for random meteorites.
[03:08:32] [Server thread/INFO]: [KamiCommon] Enabling KamiCommon v1.6.0
[03:08:32] [Server thread/INFO]: KamiCommon enabling...
[03:08:32] [Server thread/INFO]: KamiCommon enabled in 1ms
[03:08:32] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.1
[03:08:32] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[03:08:32] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.83.1
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] Enabling JunoPrisonCore v1.0.0
[03:08:32] [Server thread/INFO]: [JunoPrisonCore 1.0.0] === ENABLE START ===
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] Enabling JunoPrisonCore...
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] Initializing PatheticMapper...
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] pathetic successfully initialized
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] Registering modules...
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] Registered PAPI expansion
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] Activating ProfileColl
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] [Profiles] Module enabled
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] [Level] Module enabled
[03:08:32] [Server thread/INFO]: [JunoPrisonCore] Activating ToolDataColl
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [ToolData] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Enchants] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] Activating BackpackColl
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] Regenerating Backpack Level Tree
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 1 to the backpack level tree
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 2 to the backpack level tree
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 3 to the backpack level tree
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 4 to the backpack level tree
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 5 to the backpack level tree
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 6 to the backpack level tree
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 7 to the backpack level tree
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] Activating ShardColl
[03:08:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: level [1.0.0]
[03:08:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: shards [1.0.0]
[03:08:33] [Server thread/INFO]: [ShopGUIPlus] Registered custom economy provider 'Shards'.
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Economy] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Wormhole] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] Activating EnergyColl
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Energy] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Mining] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [BlockAnimation] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Module enabled
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Loading 849 target locations
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Invalid world: world
[03:08:33] [Server thread/WARN]: [JunoPrisonCore] [Meteors] Loaded 0 target locations
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Meteors] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [RestedXp] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [LevelCap] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Contraband] Module enabled
[03:08:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cells [1.0.0]
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Cells] Initializing Complete in 13 Ms
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Cells] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Options] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Guards] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [ArmorEnchants] Attempting to register 11 items...
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [ArmorEnchants] Successfully registered 11 items.
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [ArmorEnchants] Attempting to register 90 enchants...
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [ArmorEnchants] Successfully registered 90 enchants.
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [ArmorEnchants] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] Activating CollectStackColl
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Collect] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Drills] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore] [Relic] Module enabled
[03:08:33] [Server thread/INFO]: [JunoPrisonCore 1.0.0] === ENABLE COMPLETE (Took 659ms) ===
[03:08:33] [Server thread/INFO]: [GangsPlus] Enabling GangsPlus v2.25.0
[03:08:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gangsplus [2.25.0]
[03:08:33] [Server thread/INFO]: [GangsPlus] Clip's PlaceholderAPI support enabled!
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_in_gang}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_name}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_name_formatted}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_rank}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_rank_number}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_friendly_fire}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_online_members_list}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_online_members_count}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_offline_members_list}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_offline_members_count}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_members_list}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_members_count}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_leader}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_level}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_wins}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_losses}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_wlr}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_kills}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_deaths}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_kdr}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_bank}
[03:08:33] [Server thread/INFO]: [MVdWPlaceholderAPI] GangsPlus added custom placeholder {gangsplus_2_gang_money}
[03:08:33] [Server thread/INFO]: [GangsPlus] MVdWPlaceholderAPI support enabled!
[03:08:33] [Server thread/INFO]: [TAB] Enabling TAB v3.3.2
[03:08:33] [Server thread/INFO]: [TAB] Server version: 1.19.4 (v1_19_R3)
[03:08:33] [Server thread/INFO]: [TAB] Loaded NMS hook in 18ms
[03:08:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.3.2]
[03:08:33] [Server thread/INFO]: [TAB] Enabled in 31ms
[03:08:33] [Server thread/INFO]: [PWEnchants] Enabling PWEnchants v1.0-SNAPSHOT
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/INFO]: [PWEnchants] [ACF] Enabled Asynchronous Tab Completion Support!
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: blender' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: dupe' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: ench' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: enchants' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: orb' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: orb help' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: orb' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: randomenchant' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: enchantbook' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: enchantbook help' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: enchantbook enchant' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: enchantbook crystal' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: givepouch' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: givepouch help' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: givepouch' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: scroll' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: scroll help' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: scroll' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: shard' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: shard help' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: shard depth' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: soul' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: soul help' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: soul gem' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: soul tracker' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: splitsouls' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: withdrawsouls' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/WARN]: Plugin 'PWEnchants' is creating timing 'Command: tinker' - this is deprecated behavior, please report it to the authors: 
[03:08:33] [Server thread/INFO]: [PWEnchants] Attempting to register 11 items...
[03:08:33] [Server thread/INFO]: [PWEnchants] Successfully registered 11 items.
[03:08:33] [Server thread/INFO]: [PWEnchants] Attempting to register 103 enchants...
[03:08:33] [Server thread/INFO]: [PWEnchants] Successfully registered 103 enchants.
[03:08:33] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.3
[03:08:33] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.11.0
[03:08:34] [Server thread/ERROR]: [LiteBans] [!!] Could not load config.yml.
[03:08:34] [Server thread/ERROR]: [LiteBans] [!!] Configuration error found: while parsing a block mapping
 in 'reader', line 6, column 1:
    bungeecord: false
    ^
expected <block end>, but found '<block mapping start>'
 in 'reader', line 144, column 3:
      expire_after: 7 days
      ^

[03:08:34] [Server thread/ERROR]: [LiteBans] [!!] LiteBans will use the default config until errors have been fixed.
[03:08:34] [Server thread/ERROR]: [LiteBans] [!!] Your configuration might be invalid. It can be verified with https://yaml-online-parser.appspot.com/
[03:08:34] [Server thread/INFO]: [LiteBans] Using system locale (en)
[03:08:34] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[03:08:34] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[03:08:34] [Server thread/INFO]: [LiteBans] Connecting to database...
[03:08:34] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[03:08:34] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[03:08:34] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (84.5 ms).
[03:08:34] [Server thread/INFO]: [LiteBans] Database connection fully initialized (86.5 ms).
[03:08:34] [Server thread/INFO]: [LiteBans] v2.11.0 enabled. Startup took 203 ms.
[03:08:34] [Server thread/INFO]: [OutpostOne] Enabling OutpostOne v1.0.0-SNAPSHOT
[03:08:34] [Server thread/INFO]: [OutpostOne 1.0.0-SNAPSHOT] === ENABLE START ===
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostOne added custom placeholder {outpostone_state}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostOne added custom placeholder {outpostone_line}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostOne added custom placeholder {outpostone_percentage}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostOne added custom placeholder {outpostone_capturer}
[03:08:34] [Server thread/INFO]: [OutpostOne 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 23ms) ===
[03:08:34] [Server thread/INFO]: [OutpostThree] Enabling OutpostThree v1.0.0-SNAPSHOT
[03:08:34] [Server thread/INFO]: [OutpostThree 1.0.0-SNAPSHOT] === ENABLE START ===
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostThree added custom placeholder {outpostthree_state}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostThree added custom placeholder {outpostthree_line}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostThree added custom placeholder {outpostthree_percentage}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostThree added custom placeholder {outpostthree_capturer}
[03:08:34] [Server thread/INFO]: [OutpostThree 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 23ms) ===
[03:08:34] [Server thread/INFO]: [OutpostTwo] Enabling OutpostTwo v1.0.0-SNAPSHOT
[03:08:34] [Server thread/INFO]: [OutpostTwo 1.0.0-SNAPSHOT] === ENABLE START ===
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostTwo added custom placeholder {outposttwo_state}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostTwo added custom placeholder {outposttwo_line}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostTwo added custom placeholder {outposttwo_percentage}
[03:08:34] [Server thread/INFO]: [MVdWPlaceholderAPI] OutpostTwo added custom placeholder {outposttwo_capturer}
[03:08:34] [Server thread/INFO]: [OutpostTwo 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 22ms) ===
[03:08:34] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[03:08:34] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[03:08:34] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[03:08:34] [Server thread/INFO]: --------------------
[03:08:34] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[03:08:34] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[03:08:34] [Server thread/INFO]: --------------------
[03:08:34] [Server thread/INFO]: [PluginConstructorAPI] Enabling PluginConstructorAPI v1.0.52
[03:08:34] [Server thread/INFO]: [UltimateKoth] Enabling UltimateKoth v1.9.14
[03:08:34] [Server thread/INFO]: [UltimateKoth] ========================================
[03:08:34] [Server thread/INFO]: [UltimateKoth]   _    _ _ _   _                 _       _  __     _   _     
[03:08:34] [Server thread/INFO]: [UltimateKoth]  | |  | | | | (_)               | |     | |/ /    | | | |  V1
[03:08:34] [Server thread/INFO]: [UltimateKoth]  | |  | | | |_ _ _ __ ___   __ _| |_ ___| ' / ___ | |_| |__  
[03:08:34] [Server thread/INFO]: [UltimateKoth]  | |  | | | __| | '_ ` _ \ / _` | __/ _ \  < / _ \| __| '_ \ 
[03:08:34] [Server thread/INFO]: [UltimateKoth]  | |__| | | |_| | | | | | | (_| | ||  __/ . \ (_) | |_| | | |
[03:08:34] [Server thread/INFO]: [UltimateKoth]   \____/|_|\__|_|_| |_| |_|\__,_|\__\___|_|\_\___/ \__|_| |_|
[03:08:34] [Server thread/INFO]: [UltimateKoth]                                                              
[03:08:34] [Server thread/INFO]: [UltimateKoth] Licensed to: BaseBallGod100 (2932)
[03:08:34] [Server thread/INFO]: [UltimateKoth] Language: EN (default)
[03:08:34] [Server thread/INFO]: [UltimateKoth] Setup database: SQLITE (Medium)
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - Koth database [OK]
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - LootBlocks database [OK]
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - Commands database [OK]
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - Loots database [OK]
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - Scheduler database [OK]
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - Hologram database [OK]
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - Stats database [OK]
[03:08:34] [Server thread/INFO]: [UltimateKoth] Setup hooks...
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - PlaceholderAPI
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - ProtocolLib
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - WorldGuard 7+
[03:08:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ukoth [UKoth V1]
[03:08:34] [Server thread/INFO]: [UltimateKoth] Setup economy...
[03:08:34] [Server thread/INFO]: [UltimateKoth]  - Vault
[03:08:34] [Server thread/INFO]: [UltimateKoth] Economy: VAULT
[03:08:34] [Server thread/INFO]: [UltimateKoth] Loaded 30 commands.
[03:08:34] [Server thread/INFO]: [UltimateKoth] Setup Addons...
[03:08:34] [Server thread/INFO]: [UltimateKoth] Setup Extensions...
[03:08:34] [Server thread/WARN]: [UltimateKoth]  ! Disabled: [GangsPlus,]
[03:08:34] [Server thread/INFO]: [UltimateKoth] Scheduler date: Mon May 01 03:08:34 UTC 2023
[03:08:34] [Server thread/INFO]: [UltimateKoth] ========================================
[03:08:34] [Server thread/INFO]: [ItemFilter] Enabling ItemFilter v1.0-SNAPSHOT
[03:08:34] [Server thread/INFO]: [ItemFilter] ItemFilter enabled
[03:08:34] [Server thread/INFO]: [CommandAlias] Enabling CommandAlias v1.6.6-RELEASE
[03:08:34] [Server thread/INFO]: [CommandAlias] PlaceholderAPI found! Utilizing...
[03:08:34] [Server thread/INFO]: [CommandAlias] 5 command aliases were loaded!
[03:08:34] [Server thread/INFO]: [CommandAlias] CommandAlias v1.6.6-RELEASE, by Ellie#0006, has been enabled!
[03:08:34] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v5.7
[03:08:34] [Server thread/INFO]: [AntiPopup] Config enabled.
[03:08:34] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[03:08:34] [Server thread/INFO]: [AntiPopup] Hooked on 1.19.4
[03:08:34] [Server thread/INFO]: [AntiPopup] Commands registered.
[03:08:34] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[03:08:34] [Server thread/INFO]: [RestartBackup] Enabling RestartBackup v1.0-SNAPSHOT
[03:08:34] [Server thread/INFO]: [RestartBackup] RestartBackup enabled for server: Prisons-PROD with id: 73b24953
[03:08:34] [Server thread/INFO]: [RestartBackup] Registering Timers. Current Time: Mon May 01 03:08:34 UTC 2023
[03:08:34] [Server thread/INFO]: [RestartBackup] Scheduling restart for Mon May 01 04:00:00 UTC 2023
[03:08:34] [Server thread/INFO]: [ProMenus] Enabling ProMenus v1.8.6
[03:08:35] [Server thread/INFO]: [CS-API] --------------------------[ Loading File Provisioners ]--------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.json' extension
[03:08:35] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.txt' extension
[03:08:35] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.yml' extension
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../container/plugins/CS-API/settings.yml'
[03:08:35] [Server thread/INFO]: [CS-API] -------------------------[ Loading settings.yml values ]-------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Registered config key check_for_support with the value true
[03:08:35] [Server thread/INFO]: [CS-API] Registered config key check_for_updates with the value true
[03:08:35] [Server thread/INFO]: [CS-API] Registered config key creator_timeout with the value 60000
[03:08:35] [Server thread/INFO]: [CS-API] Registered config key locale with the value en_us
[03:08:35] [Server thread/INFO]: [CS-API] Registered config key server_id with the value server
[03:08:35] [Server thread/INFO]: [CS-API] Registered config key use_bungeecord with the value true
[03:08:35] [Server thread/INFO]: [CS-API] Registered config key debug.enabled with the value false
[03:08:35] [Server thread/INFO]: [CS-API] Registered config key debug.plugins with 0 entries
[03:08:35] [Server thread/WARN]: [CS-API] -------------------------------------------------------------
[03:08:35] [Server thread/WARN]: [CS-API] Debug logging is currently disabled for ProMenus. You may need to re-enable it to request support.
[03:08:35] [Server thread/WARN]: [CS-API] -------------------------------------------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/CS-API/placeholders.yml'
[03:08:35] [Server thread/INFO]: [CS-API] -----------------------------[ Loading Placeholders ]-----------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'assert' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'assignment' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'calculate' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'command' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'entity' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'locale' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'menu_item' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'offline_player' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'offline_player_bed' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player_menu' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player_bed' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_command' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_permission' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_connection' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'random' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'server' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'time_type' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'wildcard' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'world' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'cs_api' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_connection' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_support_confirmation' prefix
[03:08:35] [Server thread/INFO]: [CS-API] -----------------------[ Loading Placeholder Assignments ]-----------------------
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'menu'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'online_player'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'player'
[03:08:35] [Server thread/INFO]: [CS-API] ------------------------[ Loading Placeholder Formatters ]------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'array'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'block-location'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'boolean'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'collection'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'color'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'database-timestamp'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'date'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'double'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'empty-line'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'float'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'integer'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'location'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'long'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'no-value'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'milliseconds'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'seconds'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'timestamp'
[03:08:35] [Server thread/INFO]: [ProMenus] Initializing ProMenus version 1.8.6, identifier 1665756, resource 82194
[03:08:35] [Server thread/INFO]: [CS-API] -----------------------------[ Loading Locale Files ]-----------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/CS-API/locale/en_us.txt'
[03:08:35] [Server thread/INFO]: [CS-API] Loaded locale file with the 'en_us' identifier
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../container/plugins/CS-API/hooks.yml'
[03:08:35] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[03:08:35] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[03:08:35] [Server thread/WARN]: [CS-API] Essentials version mismatch, referenced version is '2.19.4' however version '2.20.0-dev+38-b323860' was found. You will not receive support regarding this hook while using a mismatched version
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Essentials'
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Experience'
[03:08:35] [Server thread/WARN]: [CS-API] GangsPlus version mismatch, referenced version is '2.21.0' however version '2.25.0' was found. You will not receive support regarding this hook while using a mismatched version
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'GangsPlus'
[03:08:35] [Server thread/INFO]: [CS-API] Registered the NashornScriptEngineFactory with the name 'nashorn'
[03:08:35] [Server thread/INFO]: [CS-API] Registered the NashornScriptEngineFactory with the name 'js'
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'JavaScript'
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Level'
[03:08:35] [Server thread/WARN]: [CS-API] The MVdWPlaceholderAPI plugin is unmaintained, the last supported version is 3.1.1. Support will not be provided for this hook.
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'MVdWPlaceholderAPI'
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'MySQL'
[03:08:35] [Server thread/WARN]: [CS-API] PlaceholderAPI version mismatch, referenced version is '2.11.1' however version '2.11.2' was found. You will not receive support regarding this hook while using a mismatched version
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'PlaceholderAPI'
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'SQLite'
[03:08:35] [Server thread/WARN]: [CS-API] Unable to hook into TokenEnchant as the following required classes could not be found [com.vk2gpz.tokenenchant.api.TokenEnchantAPI]
[03:08:35] [Server thread/WARN]: [CS-API] Unable to hook into TokenManager as the following required classes could not be found [me.realized.tokenmanager.TokenManagerPlugin]
[03:08:35] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Vault'
[03:08:35] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[03:08:35] [Server thread/INFO]: [CS-API] -------------------------------[ Loading Actions ]-------------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'actionbar-broadcast' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'actionbar' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-false' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-equals' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-greater' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-less' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-string-equals' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-true' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'broadcast' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'bungee' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'chance' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'close-inventory' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'console-command' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'delay' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-balance' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-deposit' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-withdraw' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'give-item' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'javascript' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'json-broadcast' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'json-message' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-actionbar' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-json-message' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-message' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-title' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'message' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'op-command' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'open-menu' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'param' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'permission' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'player-command' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-double' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-integer' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-long' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-offline-player' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-player' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-string' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'sound' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'abort' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'stop' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'teleport' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'title-broadcast' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'title' action
[03:08:35] [Server thread/INFO]: [CS-API] --------------------------------[ Loading Files ]--------------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../container/plugins/ProMenus/config.yml'
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/locale/en_us.txt'
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/teleport.yml'
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/world.yml'
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/player.yml'
[03:08:35] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/example.yml'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully loaded the contents of 6 files!
[03:08:35] [Server thread/INFO]: [ProMenus] -----------------------------[ Loading Locale Files ]-----------------------------
[03:08:35] [Server thread/INFO]: [ProMenus] Loaded locale file with the 'en_us' identifier
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'promenus-close-menu' action
[03:08:35] [Server thread/INFO]: [CS-API] Successfully registered the 'promenus-open-menu' action
[03:08:35] [Server thread/INFO]: [ProMenus] -------------------------------[ Loading Commands ]-------------------------------
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-list'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-create'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-add-command'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-add-open-item'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-add-item'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-disable'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-enable'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-help'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-reload'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-remove-command'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-remove-open-item'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-set-contents'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-set-item'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-set-size'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-set-title'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-open'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-open-others'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-help'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-reload'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-discord'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-plugin-review'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-plugin-version'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-support-help'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-support-register'
[03:08:35] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-support-confirm'
[03:08:35] [Server thread/INFO]: [ProMenus] --------------------------[ Loading config.yml values ]--------------------------
[03:08:35] [Server thread/INFO]: [ProMenus] Registered config key menu_identifier_prefix with the value promenus
[03:08:35] [Server thread/INFO]: [ProMenus] Registered config key menu_update_delay with the value 200
[03:08:35] [Server thread/INFO]: [ProMenus] Registered config key prefer_skull_texture with the value false
[03:08:35] [Server thread/INFO]: [ProMenus] Registered config key use_list_menu with the value true
[03:08:35] [Server thread/INFO]: [ProMenus] Registered config key use_menu_commands with the value true
[03:08:35] [Server thread/INFO]: [ProMenus] Registered config key use_menu_open_items with the value true
[03:08:35] [Server thread/INFO]: [ProMenus] -----------------------------[ Loading Custom Menus ]-----------------------------
[03:08:35] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-world', enabled = true
[03:08:35] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-example', enabled = true
[03:08:35] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-player', enabled = true
[03:08:35] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-teleport', enabled = false
[03:08:35] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'promenus-menu-timer', with a duration of 200
[03:08:35] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'menu-list', enabled = true
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'promenus' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'promenus_menu' prefix
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'promenus_menu'
[03:08:35] [Server thread/INFO]: [CS-API] Registered placeholder with the 'promenus' prefix
[03:08:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: promenus [1.8.6]
[03:08:35] [CS-API Thread - 0/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_menu_commands_formatted}
[03:08:35] [CS-API Thread - 4/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_menu_update_delay_formatted}
[03:08:35] [CS-API Thread - 4/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_menu_open_items_formatted}
[03:08:35] [CS-API Thread - 0/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_prefer_skull_texture}
[03:08:35] [CS-API Thread - 5/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_menu_commands}
[03:08:35] [CS-API Thread - 5/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_list_menu_formatted}
[03:08:35] [CS-API Thread - 0/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_menu_identifier_prefix_formatted}
[03:08:35] [CS-API Thread - 4/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_menu_identifier_prefix}
[03:08:35] [CS-API Thread - 6/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_menu_update_delay}
[03:08:35] [CS-API Thread - 6/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_menu_open_items}
[03:08:35] [CS-API Thread - 4/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_prefer_skull_texture_formatted}
[03:08:35] [CS-API Thread - 7/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_list_menu}
[03:08:35] [Server thread/INFO]: [PhysicsToggle] Enabling PhysicsToggle v1.0.6
[03:08:35] [Server thread/INFO]: [Gkits] Enabling Gkits v1.1-SNAPSHOT
[03:08:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[03:08:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] Wasn't able to find NMS Support! Some functions may not work!
[03:08:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[03:08:35] [Server thread/INFO]: [Gkits] Loaded  class battle.yml config
[03:08:35] [Server thread/INFO]: [FreeCoinFlip] Enabling FreeCoinFlip v1.7
[03:08:35] [Server thread/INFO]: [ExploitFixer] Enabling ExploitFixer v2.0.6
[03:08:35] [Server thread/INFO]: [ExploitFixer] Successfully registered commands!
[03:08:35] [Server thread/INFO]: [ExploitFixer] Successfully registered listeners!
[03:08:35] [Server thread/INFO]: [ExploitFixer] Successfully hooked with HamsterAPI!
[03:08:35] [Server thread/INFO]: [ExploitFixer] Successfully registered tasks!
[03:08:35] [Server thread/INFO]: [JunoServer] Enabling JunoServer v1.0
[03:08:35] [Server thread/INFO]: [JunoServer] JunoServer enabled
[03:08:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: juno [1.0.0]
[03:08:35] [Server thread/WARN]: [JunoServer] Could not find Factions plugin! (Will not detect faction chat messages!)
[03:08:35] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.8.9
[03:08:35] [Thread-38/WARN]: [NBTAPI] [NBTAPI] The NBT-API at 'package net.lucaudev.api.item.nbt' seems to be outdated!
[03:08:35] [Thread-38/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.9.0-SNAPSHOT' Newest Version: 2.11.2'
[03:08:35] [Thread-38/WARN]: [NBTAPI] [NBTAPI] Please update the nbt-api or the plugin that contains the api!
[03:08:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedcrates [3.8.9]
[03:08:35] [Thread-39/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package de.tr7zw.advancedcrates.nbtapi' seems to be outdated!
[03:08:35] [Thread-39/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[03:08:35] [Thread-39/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[03:08:37] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[03:08:37] [Server thread/INFO]: [WorldGuard] (world) Lighters are blocked.
[03:08:37] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[03:08:37] [Server thread/INFO]: [WorldGuard] (world) All fire spread is disabled.
[03:08:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[03:08:38] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+38-b323860
[03:08:38] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[03:08:38] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.2
[03:08:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SimpleScore [3.12.2]
[03:08:38] [Server thread/INFO]: [MVdWPlaceholderAPI] SimpleScore added custom placeholder {simplescore_*}
[03:08:38] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[03:08:38] [Server thread/INFO]: [OutpostManager] Enabling OutpostManager v1.0.0-SNAPSHOT
[03:08:38] [Server thread/INFO]: [OutpostManager 1.0.0-SNAPSHOT] === ENABLE START ===
[03:08:38] [Server thread/INFO]: [OutpostManager 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 8ms) ===
[03:08:38] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[03:08:39] [Server thread/INFO]: [BuycraftX] Validating your server key...
[03:08:39] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[03:08:39] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[03:08:40] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[03:08:40] [Server thread/INFO]: [SlotBot] Enabling SlotBot v1.1.8
[03:08:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[03:08:40] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R3) is not supported by this NBT-API Version(2.11.1) located at net.ivenomx.slotbot.api.item.nbt.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[03:08:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[03:08:40] [Server thread/INFO]: [SlotBot] Loaded 3 rewards
[03:08:40] [Server thread/INFO]: [SlotBot] Loaded 3 high roller rewards
[03:08:40] [Server thread/INFO]: [SlotBot] Loaded 1 credit shop rewards
[03:08:40] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.11.1
[03:08:40] [Server thread/INFO]:  
[03:08:40] [Server thread/INFO]: =============================
[03:08:40] [Server thread/INFO]: Vouchers v3.11.1 by Tweetzy
[03:08:40] [Server thread/INFO]: Developer: Kiran Hart
[03:08:40] [Thread-41/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package net.ivenomx.slotbot.api.item.nbt' seems to be outdated!
[03:08:40] [Thread-41/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[03:08:40] [Thread-41/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[03:08:40] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
[03:08:40] [Server thread/INFO]: =============================
[03:08:40] [Server thread/INFO]:  
[03:08:40] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.0.0 (build 833)
[03:08:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: denizen [2.0.0]
[03:08:41] [Server thread/INFO]: [PacketWrapper] Enabling PacketWrapper v${project.version}
[03:08:41] [Server thread/INFO]: [EnchantmentAPI] Enabling EnchantmentAPI v4.28
[03:08:41] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.82.1
[03:08:41] [Server thread/INFO]:  
[03:08:41] [Server thread/INFO]: =============================
[03:08:41] [Server thread/INFO]: AuctionHouse 2.82.1 by Kiran Hart
[03:08:41] [Server thread/INFO]: Action: Enabling...
[03:08:41] [Server thread/INFO]: [TweetyCore] Hooked into AuctionHouse.
[03:08:42] [Server thread/INFO]: connecting to dfw-04-5950x.pufferfish.host : 3306
[03:08:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [1.0.0]
[03:08:42] [Server thread/INFO]: =============================
[03:08:42] [Server thread/INFO]:  
[03:08:42] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[03:08:42] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[03:08:42] [Server thread/INFO]: [ClearLag] Loading modules...
[03:08:42] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R3.MinecraftServer)
[03:08:42] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[03:08:42] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[03:08:42] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[03:08:42] [Thread-42/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[03:08:42] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[03:08:42] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[03:08:42] [Thread-42/INFO]: [ClearLag] No updates found!
[03:08:43] [Server thread/ERROR]: [DeluxeMenus] Detected invalid configuration in file: advanced_menu.yml
[03:08:43] [Server thread/WARN]: [DeluxeMenus] Menu: advanced_menu in file: advanced_menu.yml not loaded.
[03:08:43] [Server thread/INFO]: [DeluxeMenus] 2 GUI menus loaded!
[03:08:43] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[03:08:43] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[03:08:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[03:08:43] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.1.0.8.1056
[03:08:44] [Server thread/INFO]: CombatLogX was loaded successfully.
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v17.0'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Boss Bar v16.9'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v16.23'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Citizens Compatibility v16.15'...
[03:08:44] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Successfully found a dependency: Citizens v2.0.31-SNAPSHOT (build 3031)
[03:08:44] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Dependency 'Citizens' is not the correct version!
[03:08:44] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Citizens Compatibility v16.15'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'EssentialsX Compatibility v16.3'...
[03:08:44] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Successfully found a dependency: Essentials v2.20.0-dev+38-b323860
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Factions Compatibility v16.3'...
[03:08:44] [Server thread/WARN]: [CombatLogX] Failed to find any of the following plugins:
[03:08:44] [Server thread/WARN]: [CombatLogX] [Factions, FactionsX, LegacyFactions]
[03:08:44] [Server thread/WARN]: [CombatLogX] Please contact SirBlobman if you believe this is mistake.
[03:08:44] [Server thread/WARN]: [CombatLogX] https://github.com/SirBlobman/BlueSlimeCore/issues/new/choose
[03:08:44] [Server thread/INFO]: [CombatLogX] [Factions Compatibility] Some dependencies for this expansion are missing!
[03:08:44] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Factions Compatibility v16.3'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'MythicMobs Compatibility v16.6'...
[03:08:44] [Server thread/INFO]: [CombatLogX] [MythicMobs Compatibility] Successfully found a dependency: MythicMobs v5.2.6-0819d467
[03:08:44] [Server thread/INFO]: [CombatLogX] [MythicMobs Compatibility] Dependency 'MythicMobs' is not the correct version!
[03:08:44] [Server thread/INFO]: [CombatLogX] Disabling expansion 'MythicMobs Compatibility v16.6'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v16.9'...
[03:08:44] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.2
[03:08:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: combatlogx [16.9]
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'SuperVanish/PremiumVanish Compatibility v16.2'...
[03:08:44] [Server thread/INFO]: [CombatLogX] [SuperVanish/PremiumVanish Compatibility] Successfully found a dependency: SuperVanish v6.2.15
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v16.5'...
[03:08:44] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.8-beta-01+cbb2ba7
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Damage Tagger v16.7'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Death Effects v16.4'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Force Field v17.1'...
[03:08:44] [Server thread/INFO]: [CombatLogX] [Force Field] Successfully found a dependency: ProtocolLib v5.0.0-SNAPSHOT-638
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Glowing v16.5'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Logger v16.3'...
[03:08:44] [Server thread/INFO]: [CombatLogX]  
[03:08:44] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Loot Protection v16.6'...
[03:08:45] [Server thread/INFO]: [CombatLogX]  
[03:08:45] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Mob Tagger v16.7'...
[03:08:45] [Server thread/INFO]: [CombatLogX]  
[03:08:45] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Newbie Helper v16.12'...
[03:08:45] [Server thread/INFO]: [CombatLogX]  
[03:08:45] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Rewards v16.8'...
[03:08:45] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully found a dependency: Vault v1.7.3-b131
[03:08:45] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully hooked into economy handler 'EssentialsX Economy' from plugin 'Essentials v2.20.0-dev+38-b323860'.
[03:08:45] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully loaded 2 reward(s).
[03:08:45] [Server thread/INFO]: [CombatLogX]  
[03:08:45] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Scoreboard v16.12'...
[03:08:45] [Server thread/INFO]: [CombatLogX]  
[03:08:45] [Server thread/INFO]: [CombatLogX] Successfully enabled 17 expansions.
[03:08:45] [Server thread/INFO]: CombatLogX was enabled successfully.
[03:08:45] [Server thread/INFO]: [ConvincingOldPVP] Enabling ConvincingOldPVP v1.0
[03:08:45] [Server thread/INFO]: [ChatControlRed] Enabling ChatControlRed v10.18.4
[03:08:45] [Server thread/INFO]:  ____ _  _ ____ ___ ____ ____ _  _ ___ ____ ____ _
[03:08:45] [Server thread/INFO]:  |    |__| |__|  |  |    |  | |\ |  |  |__/ |  | |
[03:08:45] [Server thread/INFO]:  |___ |  | |  |  |  |___ |__| | \|  |  |  \ |__| |___
[03:08:45] [Server thread/INFO]:   
[03:08:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatcontrolred [10.18.4]
[03:08:48] [Server thread/INFO]:   
[03:08:48] [Server thread/INFO]: Tutorial & help:
[03:08:48] [Server thread/INFO]: https://github.com/kangarko/ChatControl-Red/wiki
[03:08:48] [Server thread/INFO]:   
[03:08:48] [Server thread/INFO]: Loaded! Random joke: Try '/me is the best' today! #seriously
[03:08:48] [Server thread/INFO]:   
[03:08:49] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.14
[03:08:50] [Server thread/INFO]: [PlayerVaults] Added BEDROCK to list of blocked materials.
[03:08:50] [Server thread/INFO]: [PlayerVaults] Loaded! Took 956ms
[03:08:50] [Server thread/INFO]: [DamageIndicator] Enabling DamageIndicator v1.3.6-SNAPSHOT
[03:08:50] [Server thread/INFO]: [DamageIndicator] Using server version accessor for v1_19_R3
[03:08:50] [Server thread/INFO]: [spark] Enabling spark v1.10.37
[03:08:51] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[03:08:51] [Server thread/INFO]: [spark] Starting background profiler...
[03:08:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.37]
[03:08:53] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[03:08:53] [Server thread/INFO]: [MVdWPlaceholderAPI] spark added custom placeholder {spark_*}
[03:08:53] [Server thread/INFO]: [spark] Registered MVdWPlaceholderAPI placeholders
[03:08:53] [Server thread/INFO]: [OffsetCalculator] Enabling OffsetCalculator v1.0
[03:08:53] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuard' is creating timing 'Third-Party Session Handlers' - this is deprecated behavior, please report it to the authors: 
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'WalkSpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'BlockedEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GodmodeFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GiveEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlyFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlySpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'PlaySoundsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:53] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GlideFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[03:08:54] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[03:08:54] [Server thread/INFO]: Running delayed init tasks
[03:08:54] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:54] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[03:08:54] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Fetching version information...
[03:08:54] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:54] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing SlimeBlock.bbmodel.
[03:08:54] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[03:08:55] [Craft Scheduler Thread - 17 - UltimateKoth/INFO]: [UltimateKoth] Loaded 0 Commands(s).
[03:08:55] [Craft Scheduler Thread - 15 - UltimateKoth/INFO]: [UltimateKoth] Loaded 0 Holograms(s).
[03:08:55] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[03:08:55] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[03:08:55] [Craft Scheduler Thread - 16 - UltimateKoth/INFO]: [UltimateKoth] Loaded 30 Stats(s).
[03:08:55] [Craft Scheduler Thread - 10 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: bbbotshot (1665756)
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_door.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_guard.bbmodel.
[03:08:55] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 22 holograms!
[03:08:55] [Craft Scheduler Thread - 30 - AuctionHouse/INFO]: [AuctionHouse] You're running an unreleased version of Auction House (2.82.1)
[03:08:55] [Craft Scheduler Thread - 31 - Vault/INFO]: [Vault] Checking for Updates ... 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_guard_mini.bbmodel.
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'BlueSlimeCore'.
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 2.6.2.239-Beta
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 2.9.0.346
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'CombatLogX'.
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 11.1.0.8.1056
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 11.2.0.1.1085
[03:08:55] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/31689/
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_medic_guard.bbmodel.
[03:08:55] [Craft Scheduler Thread - 31 - Vault/INFO]: [Vault] No new version available
[03:08:55] [Craft Scheduler Thread - 8 - Essentials/WARN]: [Essentials] You're 21 EssentialsX dev build(s) out of date!
[03:08:55] [Craft Scheduler Thread - 8 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_medic_guard_mini.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_preview_mini.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing crystal_golem.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing crystal_golem2.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing crystal_golem3.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing crystal_golem4.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing drill.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 135.0 ]
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 135.0 ]
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing generator.bbmodel.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bottom is rotated in multiple axis. Choosing one axis.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bottom is rotated in multiple axis. Choosing one axis.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bottom is rotated in multiple axis. Choosing one axis.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bottom is rotated in multiple axis. Choosing one axis.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:55] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing guard.bbmodel.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing heal.bbmodel.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing hologram.off.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_queenbee.bbmodel.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing turkeybot.bbmodel.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing turkeybot_baby.bbmodel.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing turkeybot_dinner.bbmodel.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Importing turkeybot_egg.bbmodel.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating slimeblock.
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:56] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating cell_door.
[03:08:57] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[03:08:57] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating cell_guard.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating cell_guard_mini.
[03:08:57] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating cell_medic_guard.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating cell_medic_guard_mini.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating cell_preview_mini.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating crystal_golem.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating crystal_golem2.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating crystal_golem3.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating crystal_golem4.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating drill.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating generator.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating guard.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating heal.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_queenbee.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating turkeybot.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating turkeybot_baby.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating turkeybot_dinner.
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:57] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Generating turkeybot_egg.
[03:08:58] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] 
[03:08:58] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[03:08:59] [Server thread/WARN]: [JunoPrisonCore] [Meteors] No target locations found, not spawning meteor
[03:08:59] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[03:08:59] [Server thread/WARN]: [UltimateKoth] World 'test' is not loaded
[03:08:59] [Server thread/INFO]: [UltimateKoth] Loaded 0 Koth(s).
[03:08:59] [Server thread/INFO]: [UltimateKoth] Loaded 1 LootBlocks(s).
[03:08:59] [Server thread/INFO]: [UltimateKoth] Loaded 1 Loots(s).
[03:08:59] [Server thread/INFO]: [UltimateKoth] Loaded 0 Scheduler(s).
[03:08:59] [Server thread/INFO]: [Citizens] Loaded 8 NPCs.
[03:09:00] [Server thread/INFO]: --------------------------------------------------------
[03:09:00] [Server thread/INFO]: 
[03:09:00] [Server thread/INFO]: Thank you for purchasing Auction House, it means a lot
[03:09:00] [Server thread/INFO]:  - Kiran Hart
[03:09:00] [Server thread/INFO]: 
[03:09:00] [Server thread/INFO]: --------------------------------------------------------
[03:09:00] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[03:09:00] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.3) is available at:
[03:09:00] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[03:09:00] [Server thread/INFO]: [FreeCoinFlip] There is a NEW VERSION of FreeCoinFlip please download it at: https://www.spigotmc.org/resources/106581
[03:09:00] [Server thread/INFO]: Done (42.804s)! For help, type "help"
[03:09:00] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5291ms or 105 ticks behind
[03:09:00] [Server thread/INFO]: Created team [ACdontTouch]
[03:09:00] [Server thread/INFO]: Collision rule for team [ACdontTouch] is now "Never"
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Loaded 181 items
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 131/750 REAL_NOTE block IDs
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 662/6608 font_images
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 1 categories
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[03:09:00] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[03:09:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: img [1.0.1]
[03:09:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iaplayerstat [1.0.1]
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [ItemsAdderLoadDataEvent] Calling Modules...
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with COAL_ORE
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with COPPER_ORE
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with LAPIS_ORE
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_REDSTONE_ORE
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_GOLD_ORE
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_DIAMOND_ORE
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with GILDED_BLACKSTONE
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with coal
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with copper
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with lapis
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with redstone
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with gold
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with diamond
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with gilded_blackstone
[03:09:00] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registering pickaxes...
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with WOODEN_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with STONE_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with IRON_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with GOLDEN_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with DIAMOND_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with RUBY_PICKAXE
[03:09:01] [Server thread/INFO]: enabled
[03:09:01] [Server thread/INFO]: coal
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with coal and mine coal
[03:09:01] [Server thread/INFO]: messages
[03:09:01] [Server thread/INFO]: copper
[03:09:01] [Server thread/INFO]: lapis
[03:09:01] [Server thread/INFO]: redstone
[03:09:01] [Server thread/INFO]: gold
[03:09:01] [Server thread/INFO]: diamond
[03:09:01] [Server thread/INFO]: gilded
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone coal with mine coal
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone copper with mine copper
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone lapis with mine lapis
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone redstone with mine redstone
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone gold with mine gold
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone diamond with mine diamond
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone gilded with mine gilded_blackstone
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Removing all holograms (0)
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [ItemsAdderLoadDataEvent] Calling Modules...
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with COAL_ORE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with COPPER_ORE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with LAPIS_ORE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_REDSTONE_ORE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_GOLD_ORE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_DIAMOND_ORE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with GILDED_BLACKSTONE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with coal
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with copper
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with lapis
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with redstone
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with gold
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with diamond
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with gilded_blackstone
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registering pickaxes...
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with WOODEN_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with STONE_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with IRON_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with GOLDEN_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with DIAMOND_PICKAXE
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with RUBY_PICKAXE
[03:09:01] [Server thread/INFO]: ore_rush_coal
[03:09:01] [Server thread/INFO]: enabled
[03:09:01] [Server thread/INFO]: coal
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with coal and mine coal
[03:09:01] [Server thread/INFO]: messages
[03:09:01] [Server thread/INFO]: copper
[03:09:01] [Server thread/INFO]: lapis
[03:09:01] [Server thread/INFO]: redstone
[03:09:01] [Server thread/INFO]: gold
[03:09:01] [Server thread/INFO]: diamond
[03:09:01] [Server thread/INFO]: gilded
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone coal with mine coal
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone copper with mine copper
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone lapis with mine lapis
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone redstone with mine redstone
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone gold with mine gold
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone diamond with mine diamond
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone gilded with mine gilded_blackstone
[03:09:01] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Removing all holograms (0)
[03:09:01] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL is valid (external-host). Url: http://n135.pufferfish.host:25328/generated.zip
[03:09:02] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[03:09:02] [Server thread/INFO]: [Gkits] Loaded battle class items.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Registered custom economy provider 'Shards'.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.83.1 ]================================
[03:09:02] [Server thread/INFO]: [ShopGUIPlus]  
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Exp economy registered.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Shards economy enabled.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Exp economy enabled.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ItemsAdder.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Loaded 5 main menu items.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'shards' with 15 items.
[03:09:02] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 21 items.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 8 items.
[03:09:02] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 6 items.
[03:09:03] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 4 items.
[03:09:03] [Server thread/INFO]: [ShopGUIPlus] Loaded 5 shops with total of 54 items.
[03:09:03] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[03:09:03] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[03:09:03] [Server thread/INFO]: [ShopGUIPlus]  
[03:09:03] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[03:09:05] [Craft Scheduler Thread - 26 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [1.0.1]
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: formatter [2.0.3]
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: healthbar [0.6]
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[03:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ascii [1.0.0]
[03:09:08] [Server thread/INFO]: 9 placeholder hook(s) registered! 5 placeholder hook(s) have an update available.
[03:09:12] [Server thread/INFO]: [Essentials] Created a User for Shop (4508bf7f-69fb-4a16-9845-ee05a13b28d1) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[03:09:12] [Server thread/INFO]: [Essentials] Created a User for Forums (ef2cf528-4c40-45e7-81f2-dc2076c321ba) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[03:09:12] [Server thread/INFO]: [Essentials] Created a User for AuctionHouse (c696f3cc-eb05-43ff-8afa-df9b593e7581) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[03:09:14] [Server thread/INFO]: [Essentials] Created a User for Discord (b36ae51c-95ec-403d-a816-6888415234ca) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[03:09:14] [Server thread/INFO]: [Essentials] Created a User for Tebex (545dd0bb-7936-44d4-8659-c98ac6838072) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[03:09:17] [User Authenticator #0/INFO]: UUID of player TSans_ is 08341680-0904-4271-af2e-24cc49b12952
[03:09:18] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: TSans_
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP Alert: Supposed to add TSans_ to channel 'admin' which is not installed on this server, skipping
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP Alert: Supposed to add TSans_ to channel 'global' which is not installed on this server, skipping
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP Alert: Supposed to add TSans_ to channel 'ranged' which is not installed on this server, skipping
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP Alert: Supposed to add TSans_ to channel 'standard' which is not installed on this server, skipping
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel main-chat in mode write
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel helperchat in mode read
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP: Player TSans_ is already in channel 'Main-Chat' in mode read, not adding.
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP: Player TSans_ is already in channel 'helperchat' in mode read, not adding.
[03:09:18] [Server thread/INFO]: [ChatControlRed] TIP: Automatically enabling spy mode for TSans_ because they had 'chatcontrol.spy.autoenable' permission. To stop automatically enabling spy mode for players, give them negative 'chatcontrol.spy.autoenable' permission (a value of false when using LuckPerms). This message only shows once per 3 hours.
[03:09:18] [Server thread/INFO]: [JunoPrisonCore] [Profiles] Fetching profile for 08341680-0904-4271-af2e-24cc49b12952...
[03:09:18] [Server thread/INFO]: [JunoPrisonCore] [Profiles] Updating last login time for 08341680-0904-4271-af2e-24cc49b12952...
[03:09:18] [Server thread/INFO]: TSans_[<ip address withheld>] logged in with entity id 175 at ([fakeWorld]-173.20162525521027, 201.0, 2.405332849878863)
[03:09:27] [Server thread/INFO]: TSans_ issued server command: /ja tp
[03:09:27] [Server thread/INFO]: [ChatControlRed] Note: Not sending TSans_'s command to spying players because he had 'chatcontrol.bypass.spy' permission. Player messages with such permission are not spied on. To disable that, negate this permission (a false value if using LuckPerms). This message only shows once per 3 hours.
[03:09:29] [Server thread/INFO]: TSans_ issued server command: /ja tp world
[03:09:37] [Server thread/INFO]: TSans_ issued server command: /pl