Paste #121195: Denizen Disabled

Date: 2024/03/21 21:40:07 UTC-07:00
Type: Denizen Script

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
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421



[04:24:50] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[04:24:51] [ServerMain/INFO]: Loaded 1174 recipes
[04:24:51] [ServerMain/INFO]: Loaded 1275 advancements
[04:24:51] [Server thread/INFO]: Starting minecraft server version 1.20.2
[04:24:51] [Server thread/INFO]: Loading properties
[04:24:51] [Server thread/INFO]: This server is running Paper version git-Paper-318 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 9271ee7)
[04:24:52] [Server thread/INFO]: Server Ping Player Sample Count: 12
[04:24:52] [Server thread/INFO]: Using 4 threads for Netty based IO
[04:24:52] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[04:24:52] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[04:24:52] [Server thread/INFO]: Default game type: SURVIVAL
[04:24:52] [Server thread/INFO]: Generating keypair
[04:24:52] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25567
[04:24:52] [Server thread/INFO]: Using epoll channel type
[04:24:52] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[04:24:52] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[04:24:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[04:24:52] [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
[04:24:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[04:24:52] [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
[04:24:52] [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
[04:24:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[04:24:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[04:24:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[04:24:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[04:24:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 1 libraries... please wait
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[04:24:53] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.14.9/byte-buddy-1.14.9.jar
[04:24:53] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[04:24:55] [Server thread/WARN]: Legacy plugin DeluxeCombatFlags v1.0.1 does not specify an api-version.
[04:24:55] [Server thread/WARN]: Legacy plugin GuiRedeemMCMMO v2.0.2-BETA does not specify an api-version.
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loading 13 libraries... please wait
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/rhino/js/1.7R2/js-1.7R2.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
[04:24:55] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar
[04:24:55] [Server thread/WARN]: Legacy plugin VoidGenerator v1.0 does not specify an api-version.
[04:24:55] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.2
[04:24:55] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.2 is now loaded. Registering protocol transformers and injecting...
[04:24:56] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[04:24:56] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[04:24:56] [Server thread/INFO]: [ViaBackwards] Loading translations...
[04:24:56] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[04:24:56] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[04:24:56] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[04:24:56] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[04:24:57] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.17+6544-56d0383
[04:24:58] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@15e20cd0]
[04:24:58] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[04:24:58] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.20.4-v3
[04:25:01] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[04:25:01] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.20.4-v3
[04:25:01] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.42
[04:25:01] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3263)
[04:25:01] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.6.2-SNAPSHOT-7e2e3a76
[04:25:01] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[04:25:01] [Server thread/INFO]: [MythicMobs] §4M§6y§6t§6h§2i§2c§2 §3E§3n§1a§1b§1l§5e§5d§4!
[04:25:01] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[04:25:01] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.16
[04:25:01] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.3.4
[04:25:01] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[04:25:01] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.19.0
[04:25:01] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.230
[04:25:01] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[04:25:01] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[04:25:01] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.2-SNAPSHOT
[04:25:01] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.6.2-20240106.121459-29 (1).jar'
[04:25:01] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_20_R2
[04:25:01] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[04:25:01] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.6.10.7
[04:25:01] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.100.1.0
[04:25:01] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.17
[04:25:01] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.6
[04:25:01] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.8.6
[04:25:02] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.3
[04:25:02] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.0
[04:25:02] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.45
[04:25:02] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.5
[04:25:02] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.5-SNAPSHOT
[04:25:02] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.9.5-20240127.151317-15.jar'
[04:25:02] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[04:25:02] [Server thread/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[04:25:02] [Server thread/WARN]: [MMOItems] Could not register stat 'ITEM_DAMAGE' as a stat with the same ID already exists.
[04:25:02] [Server thread/INFO]: [MMOItems Template Modifiers] Preloading template modifiers, please wait..
[04:25:02] [Server thread/INFO]: [MMOItems Item Templates] Preloading item templates, please wait..
[04:25:02] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.7.0
[04:25:02] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.12
[04:25:02] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v3.0.6-SNAPSHOT
[04:25:02] [Server thread/INFO]: [TownyChat] Loading server plugin TownyChat v0.112
[04:25:02] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.3-beta-13
[04:25:02] [Server thread/INFO]: [DeluxeCombat] Loading server plugin DeluxeCombat v1.60.3
[04:25:02] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.49
[04:25:02] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.2.6
[04:25:02] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.27.0
[04:25:02] [Server thread/INFO]: [Lib1711] Loading server plugin Lib1711 v3.2
[04:25:02] [Server thread/INFO]: [SafariNet] Loading server plugin SafariNet v1.16.1-b1-SNAPSHOT
[04:25:02] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v3.2.1
[04:25:02] [Server thread/INFO]: [Megizen] Loading server plugin Megizen v0.1.0-DEV (build 8)
[04:25:02] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[04:25:02] [Server thread/INFO]: [DeluxeCombatFlags] Loading server plugin DeluxeCombatFlags v1.0.1
[04:25:02] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.4
[04:25:02] [Server thread/INFO]: [LootChest] Loading server plugin LootChest v2.3.9
[04:25:02] [Server thread/INFO]: [Mt-OreAnnouncer] Loading server plugin Mt-OreAnnouncer v1.0.0
[04:25:02] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.2
[04:25:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[04:25:02] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[04:25:02] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[04:25:02] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[04:25:02] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[04:25:02] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.1.3.0
[04:25:02] [Server thread/INFO]: [PhoenixCrates] Loading server plugin PhoenixCrates v3.0
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.7.0-b147
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[04:25:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[04:25:02] [Server thread/INFO]: [KixsChatGames] Loading server plugin KixsChatGames v2.1.2
[04:25:02] [Server thread/INFO]: [VoxelSniper] Loading server plugin VoxelSniper v8.13.0
[04:25:02] [Server thread/INFO]: [GuiRedeemMCMMO] Loading server plugin GuiRedeemMCMMO v2.0.2-BETA
[04:25:02] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[04:25:02] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[04:25:02] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[04:25:02] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[04:25:02] [Server thread/INFO]: [WorldGuardGUI] Loading server plugin WorldGuardGUI v1.1.3
[04:25:02] [Server thread/INFO]: [AdvancedItems] Loading server plugin AdvancedItems v1.0.0
[04:25:02] [Server thread/INFO]: [QuickShop] Loading server plugin QuickShop v5.1.2.5
[04:25:02] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
[04:25:02] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[04:25:02] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[04:25:02] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[04:25:02] [Server thread/INFO]: [QuickShop] Reading the configuration...
[04:25:02] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
[04:25:02] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
[04:25:02] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
[04:25:03] [Server thread/INFO]: [QuickShop] Loading up integration modules.
[04:25:03] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
[04:25:03] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.7
[04:25:03] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.30.0
[04:25:04] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.4
[04:25:04] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[04:25:04] [Server thread/INFO]: [CraftBook] Loading server plugin CraftBook v3.10.9;4793-1ce0146
[04:25:04] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.1
[04:25:04] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[04:25:04] [Server thread/INFO]: [Iris] Loading server plugin Iris v3.2.0-1.19.2-1.20.4
[04:25:04] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12
[04:25:04] [Server thread/INFO]: [HoloBroadcast] Loading server plugin HoloBroadcast v4.0.2
[04:25:04] [Server thread/INFO]: [EldoUtilities] Could not load config file. Using default log level.
[04:25:04] [Server thread/INFO]: [BigDoorsOpener] Debug logger initialized. Log Level: INFO
[04:25:04] [Server thread/INFO]: [EldoUtilities] Could not load config file. Using default log level.
[04:25:04] [Server thread/INFO]: [BigDoorsOpener] Loading server plugin BigDoorsOpener v2.5.1
[04:25:04] [Server thread/INFO]: [VoidGenerator] Loading server plugin VoidGenerator v1.0
[04:25:04] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.19.0
[04:25:04] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (197 ms).
[04:25:04] [Server thread/INFO]: [Shopkeepers] Loading config.
[04:25:04] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[04:25:04] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[04:25:04] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[04:25:04] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.14.2-3345d07
[04:25:04] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.63.8
[04:25:04] [Server thread/INFO]: [getoffmychest] Loading server plugin getoffmychest v1.0-SNAPSHOT
[04:25:04] [Server thread/INFO]: [PyroMining] Loading server plugin PyroMining v4.4.4
[04:25:04] [Server thread/INFO]: [ChatItem] Loading server plugin ChatItem v2.5
[04:25:04] [Server thread/INFO]: [AdvancedEnderchest] Loading server plugin AdvancedEnderchest v1.1.6
[04:25:04] [Server thread/INFO]: [AltDetector] Loading server plugin AltDetector v2.02
[04:25:04] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.0.0
[04:25:04] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.0.7
[04:25:04] [Server thread/INFO]: [VoidSpawn] Loading server plugin VoidSpawn v1.20.0
[04:25:04] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.0.0
[04:25:04] [Server thread/INFO]: [LuckyPouches] Loading server plugin LuckyPouches v1.3.7
[04:25:04] [Server thread/INFO]: [NonSquareMines] Loading server plugin NonSquareMines v1.4
[04:25:04] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.0.0
[04:25:04] [Server thread/INFO]: [DailyRewardsPlus] Loading server plugin DailyRewardsPlus v1.3.3
[04:25:04] [Server thread/INFO]: [BigDoorsPhysics] Loading server plugin BigDoorsPhysics v2.4.2
[04:25:04] [Server thread/INFO]: [CustomDrops] Loading server plugin CustomDrops v1.17.1
[04:25:04] [Server thread/INFO]: [AnnouncerPlus] Loading server plugin AnnouncerPlus v1.3.6
[04:25:04] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.4.377
[04:25:04] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.1.9
[04:25:04] [Server thread/INFO]: [GUIPlus] Loading server plugin GUIPlus v2.9
[04:25:04] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.8.5
[04:25:04] [Server thread/INFO]: [OpenAudioMc] Loading server plugin OpenAudioMc v6.8.9
[04:25:04] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[04:25:04] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[04:25:05] [Server thread/INFO]:         __    
[04:25:05] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[04:25:05] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[04:25:05] [Server thread/INFO]: 
[04:25:05] [Server thread/INFO]: [LuckPerms] Loading configuration...
[04:25:06] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[04:25:06] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[04:25:06] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[04:25:07] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[04:25:08] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[04:25:08] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[04:25:09] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5211ms)
[04:25:09] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[04:25:09] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[04:25:09] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[04:25:09] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[04:25:09] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[04:25:09] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[04:25:09] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.17+6544-56d0383
[04:25:09] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[04:25:09] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[04:25:10] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R2.PaperweightAdapter as the Bukkit adapter
[04:25:10] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.20.4-v3
[04:25:10] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paper (git-Paper-318) : v1_20_R2 (Minecraft 1.20.2)
[04:25:10] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[04:25:11] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from WorldEdit (>= v7.0.0)
[04:25:11] [Server thread/INFO]: [BKCommonLib] BKCommonLib > Minecraft.a.b().q.f * Achievement.OBFUSCATED.value
[04:25:11] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.20.4-v3 (build: 1673) enabled! (1.317s)
[04:25:11] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.45
[04:25:11] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.5
[04:25:12] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v3.0.6-SNAPSHOT
[04:25:12] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[04:25:12] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[04:25:12] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[04:25:12] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[04:25:12] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[04:25:12] [Server thread/INFO]: [NexEngine] Plugin loaded in 31 ms!
[04:25:12] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.7
[04:25:12] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[04:25:12] [Server thread/WARN]: It seems like you're running on paper.
[04:25:12] [Server thread/WARN]: PlugManX cannot interact with paper-plugins, yet.
[04:25:12] [Server thread/WARN]: Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[04:25:12] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[04:25:12] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[04:25:12] [Server thread/INFO]: [Iris] Enabling Iris v3.2.0-1.19.2-1.20.4
[04:25:12] [Server thread/INFO]: [Iris] [STDOUT] §l§8[§l§aIris§l§8]§r§7: §fLocating NMS Binding for v1_20_R2
[04:25:12] [Server thread/WARN]: Nag author(s): '[cyberpwn, NextdoorPsycho, Vatuu]' of 'Iris v3.2.0-1.19.2-1.20.4' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[04:25:12] [Server thread/INFO]: [Iris] [STDOUT] §l§8[§l§aIris§l§8]§r§7: §fCraftbukkit v1_20_R2  NMSBinding Successfully Bound
[04:25:12] [Server thread/INFO]: [Iris] [STDOUT] §l§8[§l§aIris§l§8]§r§7: §fEnabled Iris SafeGuard
[04:25:12] [Server thread/INFO]: [Iris] [STDOUT] §l§8[§l§aIris§l§8]§r§7: §fChecking for possible conflicts..
[04:25:12] [Server thread/INFO]: [Iris] [STDOUT] §l§8[§l§aIris§l§8]§r§7: §rStable mode has been activated.
[04:25:12] [Server thread/INFO]: [Iris]: Loading ExternalDataProvider...
[04:25:12] [Server thread/INFO]: [Iris]: Version Information: git-Paper-318 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
[04:25:12] [Server thread/INFO]: [Iris]: We recommend using Purpur for the best experience with Iris.
[04:25:12] [Server thread/INFO]: [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
[04:25:12] [Server thread/INFO]: [Iris]: Plugins that work on Spigot / Paper work on Purpur.
[04:25:12] [Server thread/INFO]: [Iris]: You can download it here: https://purpurmc.org
[04:25:12] [Server thread/INFO]: [VoidGenerator] Enabling VoidGenerator v1.0*
[04:25:12] [Server thread/INFO]: VoidGenerator has been enabled!
[04:25:12] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.377
[04:25:12] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[04:25:12] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[04:25:13] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[04:25:13] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[04:25:13] [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.
[04:25:13] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[04:25:13] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[04:25:13] [Server thread/INFO]: Preparing level "world"
[04:25:13] [Server thread/INFO]: -------- World Settings For [world] --------
[04:25:13] [Server thread/INFO]: View Distance: 10
[04:25:13] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:13] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:13] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:13] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:13] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:13] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:13] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:13] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:13] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:13] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:13] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:13] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:13] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:13] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:13] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:13] [Server thread/INFO]: Simulation Distance: 7
[04:25:14] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[04:25:14] [Server thread/INFO]: View Distance: 10
[04:25:14] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:14] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:14] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:14] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:14] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:14] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:14] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:14] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:14] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:14] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:14] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:14] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:14] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:14] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:14] [Server thread/INFO]: Simulation Distance: 7
[04:25:14] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[04:25:14] [Server thread/INFO]: View Distance: 10
[04:25:14] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:14] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:14] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:14] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:14] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:14] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:14] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:14] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:14] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:14] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:14] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:14] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:14] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:14] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:14] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:14] [Server thread/INFO]: Simulation Distance: 7
[04:25:14] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[04:25:14] [Server thread/INFO]: Time elapsed: 247 ms
[04:25:14] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[04:25:14] [Server thread/INFO]: Time elapsed: 46 ms
[04:25:14] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[04:25:14] [Server thread/INFO]: Time elapsed: 61 ms
[04:25:14] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.2
[04:25:14] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.2 (764)
[04:25:14] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[04:25:14] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[04:25:14] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[04:25:15] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[04:25:15] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[04:25:15] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[04:25:15] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[04:25:15] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[04:25:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[04:25:15] [Server thread/INFO]: [WorldGuard] Loading region data...
[04:25:15] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.20.4-v3
[04:25:16] [Server thread/INFO]: [My_Worlds] Loading world 'Nether'
[04:25:16] [Server thread/INFO]: -------- World Settings For [Nether] --------
[04:25:16] [Server thread/INFO]: View Distance: 10
[04:25:16] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:16] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:16] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:16] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:16] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:16] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:16] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:16] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:16] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:16] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:16] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:16] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:16] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:16] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:16] [Server thread/INFO]: Simulation Distance: 7
[04:25:16] [Server thread/INFO]: Preparing start region for dimension minecraft:nether
[04:25:16] [Server thread/INFO]: Time elapsed: 655 ms
[04:25:16] [Server thread/INFO]: [WorldGuard] (Nether) TNT ignition is PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Nether) Lighters are PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Nether) Lava fire is PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Nether) Fire spread is UNRESTRICTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Nether'
[04:25:16] [Server thread/INFO]: [My_Worlds] Loading world 'Resource'
[04:25:16] [Server thread/INFO]: -------- World Settings For [Resource] --------
[04:25:16] [Server thread/INFO]: View Distance: 10
[04:25:16] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:16] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:16] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:16] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:16] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:16] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:16] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:16] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:16] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:16] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:16] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:16] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:16] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:16] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:16] [Server thread/INFO]: Simulation Distance: 7
[04:25:16] [Server thread/INFO]: Preparing start region for dimension minecraft:resource
[04:25:16] [Server thread/INFO]: Time elapsed: 14 ms
[04:25:16] [Server thread/INFO]: [WorldGuard] (Resource) TNT ignition is PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Resource) Lighters are PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Resource) Lava fire is PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Resource) Fire spread is UNRESTRICTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Resource'
[04:25:16] [Server thread/INFO]: [My_Worlds] Loading world 'Island'
[04:25:16] [Server thread/INFO]: -------- World Settings For [Island] --------
[04:25:16] [Server thread/INFO]: View Distance: 10
[04:25:16] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:16] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:16] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:16] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:16] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:16] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:16] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:16] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:16] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:16] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:16] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:16] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:16] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:16] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:16] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:16] [Server thread/INFO]: Simulation Distance: 7
[04:25:16] [Server thread/INFO]: Preparing start region for dimension minecraft:island
[04:25:16] [Server thread/INFO]: Time elapsed: 14 ms
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: goldore
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: ironore
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: diamondore
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: copperore
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: coalore
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: emeraldore
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: redstoneore
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: lapisore
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: birchlog
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: oaklog
[04:25:16] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: junglelog
[04:25:16] [Server thread/INFO]: [WorldGuard] (Island) TNT ignition is PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Island) Lighters are PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Island) Lava fire is PERMITTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] (Island) Fire spread is UNRESTRICTED.
[04:25:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Island'
[04:25:16] [Server thread/INFO]: [My_Worlds] Set auto-load for world 'Main' to 'no' because it uses chunk generator plugin 'Iris'!
[04:25:16] [Server thread/INFO]: [My_Worlds] Loading world 'LeaderBoards'
[04:25:17] [Server thread/INFO]: -------- World Settings For [LeaderBoards] --------
[04:25:17] [Server thread/INFO]: View Distance: 10
[04:25:17] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:17] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:17] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:17] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:17] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:17] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:17] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:17] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:17] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:17] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:17] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:17] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:17] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:17] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:17] [Server thread/INFO]: Simulation Distance: 7
[04:25:17] [Server thread/INFO]: Preparing start region for dimension minecraft:leaderboards
[04:25:17] [Server thread/INFO]: Time elapsed: 166 ms
[04:25:17] [Server thread/INFO]: [WorldGuard] (LeaderBoards) TNT ignition is PERMITTED.
[04:25:17] [Server thread/INFO]: [WorldGuard] (LeaderBoards) Lighters are PERMITTED.
[04:25:17] [Server thread/INFO]: [WorldGuard] (LeaderBoards) Lava fire is PERMITTED.
[04:25:17] [Server thread/INFO]: [WorldGuard] (LeaderBoards) Fire spread is UNRESTRICTED.
[04:25:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LeaderBoards'
[04:25:17] [Server thread/INFO]: [My_Worlds] Loading world 'Spawn'
[04:25:17] [Server thread/INFO]: -------- World Settings For [Spawn] --------
[04:25:17] [Server thread/INFO]: View Distance: 10
[04:25:17] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:17] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:17] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:17] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:17] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:17] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:17] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:17] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:17] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:17] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:17] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:17] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:17] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:17] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:17] [Server thread/INFO]: Simulation Distance: 7
[04:25:17] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[04:25:17] [Server thread/INFO]: Time elapsed: 117 ms
[04:25:17] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[04:25:17] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[04:25:17] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[04:25:17] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[04:25:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[04:25:17] [Server thread/INFO]: [My_Worlds] Loading world 'Boss-Arena'
[04:25:17] [Server thread/INFO]: -------- World Settings For [Boss-Arena] --------
[04:25:17] [Server thread/INFO]: View Distance: 10
[04:25:17] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:17] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:17] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:17] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:17] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:17] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:17] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:17] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:17] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:17] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:17] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:17] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:17] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:17] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:17] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:17] [Server thread/INFO]: Simulation Distance: 7
[04:25:17] [Server thread/INFO]: Preparing start region for dimension minecraft:boss-arena
[04:25:18] [Server thread/INFO]: Time elapsed: 740 ms
[04:25:18] [Server thread/WARN]: [WorldGuard] Could not parse a block/item heading: Unknown block or item name: diamondore
[04:25:18] [Server thread/INFO]: [WorldGuard] (Boss-Arena) Blacklist loaded with 1 entries.
[04:25:18] [Server thread/INFO]: [WorldGuard] (Boss-Arena) TNT ignition is PERMITTED.
[04:25:18] [Server thread/INFO]: [WorldGuard] (Boss-Arena) Lighters are PERMITTED.
[04:25:18] [Server thread/INFO]: [WorldGuard] (Boss-Arena) Lava fire is PERMITTED.
[04:25:18] [Server thread/INFO]: [WorldGuard] (Boss-Arena) Fire spread is UNRESTRICTED.
[04:25:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Boss-Arena'
[04:25:18] [Server thread/INFO]: [My_Worlds] Loading world 'ResourceEnd'
[04:25:18] [Server thread/INFO]: -------- World Settings For [ResourceEnd] --------
[04:25:18] [Server thread/INFO]: View Distance: 10
[04:25:18] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:18] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:18] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:18] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:18] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:18] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:18] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:18] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:18] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:18] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:18] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:18] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:18] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:18] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:18] [Server thread/INFO]: Simulation Distance: 7
[04:25:18] [Server thread/INFO]: Preparing start region for dimension minecraft:resourceend
[04:25:18] [Server thread/INFO]: Time elapsed: 16 ms
[04:25:18] [Server thread/INFO]: [WorldGuard] (ResourceEnd) TNT ignition is PERMITTED.
[04:25:18] [Server thread/INFO]: [WorldGuard] (ResourceEnd) Lighters are PERMITTED.
[04:25:18] [Server thread/INFO]: [WorldGuard] (ResourceEnd) Lava fire is PERMITTED.
[04:25:18] [Server thread/INFO]: [WorldGuard] (ResourceEnd) Fire spread is UNRESTRICTED.
[04:25:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ResourceEnd'
[04:25:18] [Server thread/INFO]: [My_Worlds] Loading world 'normal_flat'
[04:25:18] [Server thread/INFO]: -------- World Settings For [normal_flat] --------
[04:25:18] [Server thread/INFO]: View Distance: 10
[04:25:18] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:18] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:18] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:18] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:18] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:18] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:18] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:18] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:18] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:18] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:18] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:18] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:18] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:18] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:18] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:18] [Server thread/INFO]: Simulation Distance: 7
[04:25:18] [Server thread/INFO]: Preparing start region for dimension minecraft:normal_flat
[04:25:19] [Server thread/INFO]: Time elapsed: 213 ms
[04:25:19] [Server thread/INFO]: [WorldGuard] (normal_flat) TNT ignition is PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (normal_flat) Lighters are PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (normal_flat) Lava fire is PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (normal_flat) Fire spread is UNRESTRICTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'normal_flat'
[04:25:19] [Server thread/INFO]: [My_Worlds] Loading world 'ender_arena'
[04:25:19] [Server thread/INFO]: -------- World Settings For [ender_arena] --------
[04:25:19] [Server thread/INFO]: View Distance: 10
[04:25:19] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:19] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:19] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:19] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:19] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:19] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:19] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:19] [Server thread/INFO]: Simulation Distance: 7
[04:25:19] [Server thread/INFO]: Preparing start region for dimension minecraft:ender_arena
[04:25:19] [Server thread/INFO]: Time elapsed: 29 ms
[04:25:19] [Server thread/INFO]: [WorldGuard] (ender_arena) TNT ignition is PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (ender_arena) Lighters are PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (ender_arena) Lava fire is PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (ender_arena) Fire spread is UNRESTRICTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ender_arena'
[04:25:19] [Server thread/INFO]: [My_Worlds] Loading world 'End'
[04:25:19] [Server thread/INFO]: -------- World Settings For [End] --------
[04:25:19] [Server thread/INFO]: View Distance: 10
[04:25:19] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:19] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:19] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:19] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:19] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:19] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:19] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:19] [Server thread/INFO]: Simulation Distance: 7
[04:25:19] [Server thread/INFO]: Preparing start region for dimension minecraft:end
[04:25:19] [Server thread/INFO]: Time elapsed: 28 ms
[04:25:19] [Server thread/INFO]: [WorldGuard] (End) TNT ignition is PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (End) Lighters are PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (End) Lava fire is PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (End) Fire spread is UNRESTRICTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'End'
[04:25:19] [Server thread/INFO]: [My_Worlds] Loading world 'ResourceNether'
[04:25:19] [Server thread/INFO]: -------- World Settings For [ResourceNether] --------
[04:25:19] [Server thread/INFO]: View Distance: 10
[04:25:19] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:19] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:19] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:19] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:19] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:19] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:19] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:19] [Server thread/INFO]: Simulation Distance: 7
[04:25:19] [Server thread/INFO]: Preparing start region for dimension minecraft:resourcenether
[04:25:19] [Server thread/INFO]: Time elapsed: 17 ms
[04:25:19] [Server thread/INFO]: [WorldGuard] (ResourceNether) TNT ignition is PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (ResourceNether) Lighters are PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (ResourceNether) Lava fire is PERMITTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] (ResourceNether) Fire spread is UNRESTRICTED.
[04:25:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ResourceNether'
[04:25:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.20.4-v3]
[04:25:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.20.4-v3]
[04:25:19] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[04:25:19] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.20.4-v3 (build: 268) enabled! (3.795s)
[04:25:19] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.42
[04:25:19] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.42-Premium.jar
[04:25:19] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: v1_20_R2) (LD: v1_20_R2) (MC: 1.20.2)
[04:25:19] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1298
[04:25:19] [Server thread/INFO]: [LibsDisguises] Build Date: 28/01/2024 12:26
[04:25:19] [Server thread/INFO]: [LibsDisguises] Registered to: 561002 (14)
[04:25:19] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[04:25:20] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[04:25:20] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[04:25:20] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[04:25:21] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin LibsDisguises tried to register listener for unknown packet CUSTOM_PAYLOAD[PLAY, CLIENT, 16, classNames: [net.minecraft.network.protocol.game.PacketPlayInCustomPayload, net.minecraft.network.protocol.game.ServerboundCustomPayloadPacket, net.minecraft.network.play.client.CPacketCustomPayload] (unregistered)] [direction: from CLIENT]
[04:25:21] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[04:25:21] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3263)
[04:25:21] [Server thread/INFO]: [Citizens] Loading external libraries
[04:25:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[04:25:21] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[04:25:21] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[04:25:21] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.6.2-SNAPSHOT-7e2e3a76
[04:25:22] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.2)...
[04:25:22] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[04:25:23] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[04:25:23] [Server thread/INFO]: [MythicMobs] Mythic mcMMO Support has been enabled!
[04:25:23] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[04:25:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[04:25:23] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[04:25:23] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[04:25:23] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[04:25:23] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[04:25:23] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/data
[04:25:23] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/data/worlds
[04:25:24] [Server thread/INFO]: [MythicMobs] Loading Packs...
[04:25:24] [Server thread/INFO]: [MythicMobs] Loading Items...
[04:25:24] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item yukio_head
[04:25:24] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/yukio.yml
[04:25:24] [Server thread/WARN]: [MythicMobs] --| Error Message: Material type 'INC_SAC' not found
[04:25:24] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[04:25:24] [Server thread/INFO]: [MythicMobs] Loading Skills...
[04:25:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mob yukio_sword
[04:25:25] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/yukio.yml
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not load MythicMob yukio_sword! No Type specified.
[04:25:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mob yukio_egg
[04:25:25] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/yukio.yml
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not load MythicMob yukio_egg! No Type specified.
[04:25:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mob yukio_head
[04:25:25] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/yukio.yml
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not load MythicMob yukio_head! No Type specified.
[04:25:25] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[04:25:25] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[04:25:25] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[04:25:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Skill: YUKIO_sword_ability_fx | File: /home/container/plugins/MythicMobs/Skills/yukio_items.yml
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=YUKIO_itemiceshard;a=1;r=1;s=true}
[04:25:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Skill: YUKIO_itemiceshards | File: /home/container/plugins/MythicMobs/Skills/yukio_items.yml
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill YUKIO_iceshards_damage
[04:25:25] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=YUKIO_iceshards_damage}
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 179 mobs.
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 19 vanilla mob overrides.
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 852 skills.
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 94 random spawns.
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 277 mythic items.
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 19 drop tables.
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 12 mob spawners.
[04:25:25] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[04:25:25] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[04:25:25] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.6.2 ( build 7e2e3a76 ) has been successfully loaded!
[04:25:25] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[04:25:25] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[04:25:25] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[04:25:25] [Server thread/INFO]: [Votifier] Loaded token for website: default
[04:25:25] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[04:25:25] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[04:25:25] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8001.
[04:25:25] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.16
[04:25:26] [Server thread/INFO]: [PlayerVaults] Loaded! Took 284ms
[04:25:26] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.3.4
[04:25:26] [Server thread/INFO]: Server version: v1_20_R2 - 1.20.2 - paper
[04:25:26] [Server thread/INFO]: CMI hooked.
[04:25:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.3.4]
[04:25:26] [Server thread/INFO]: PlaceholderAPI hooked.
[04:25:26] [Server thread/INFO]: Updated (EN) language file. Took 13ms
[04:25:26] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[04:25:26] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[04:25:26] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[04:25:26] [Server thread/INFO]: --------------------
[04:25:26] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[04:25:26] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[04:25:26] [Server thread/INFO]: --------------------
[04:25:26] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.19.0
[04:25:26] [Server thread/INFO]: [HeadDatabase] §bUsing default §3"en_US.lang" §bcreated by §6Arcaniax
[04:25:26] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[04:25:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.19.0]
[04:25:26] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.230
[04:25:27] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 67202 heads!
[04:25:27] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[04:25:27] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] §cYou are using an outdated version!
[04:25:27] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] Latest version: §a4.19.3§e. You are on version: §c4.19.0§e.
[04:25:27] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] Update here: §bhttps://www.spigotmc.org/resources/head-database.14280/
[04:25:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[04:25:27] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[04:25:27] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1374), impl for Spigot v1.3.0-SNAPSHOT (build 1803-REL) 
[04:25:27] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.10 
[04:25:27] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[04:25:27] [Server thread/ERROR]: Error occurred while enabling Denizen v1.3.0-SNAPSHOT (build 1803-REL) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_20_R3/inventory/CraftInventoryCustom
    at com.denizenscript.denizen.nms.v1_20.Handler.<clinit>(Handler.java:276) ~[Denizen-1.3.0-b1803-REL.jar:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:375) ~[?:?]
    at com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:55) ~[Denizen-1.3.0-b1803-REL.jar:?]
    at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:154) ~[Denizen-1.3.0-b1803-REL.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.2.jar:git-Paper-318]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:646) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:557) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-318]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_20_R3.inventory.CraftInventoryCustom
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 17 more
[04:25:27] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[04:25:27] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.2-SNAPSHOT
[04:25:27] [Server thread/INFO]: [MythicLib] Hooked onto DecentHolograms
[04:25:27] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[04:25:28] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[04:25:28] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[04:25:28] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[04:25:28] [Server thread/INFO]: [MythicLib] Hooked onto mcMMO
[04:25:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.6.2-SNAPSHOT]
[04:25:28] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[04:25:28] [Server thread/WARN]: [MythicLib] Found a dependency cycle! Please make sure that the plugins involved load with no errors.
[04:25:28] [Server thread/WARN]: [MythicLib] Plugin dependency cycle: [AdvancedItems, AdvancedEnchantments, ItemsAdder, AdvancedEnchantments]
[04:25:28] [Server thread/INFO]: [CMI] Enabling CMI v9.6.10.7
[04:25:28] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[04:25:28] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[04:25:28] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[04:25:28] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[04:25:28] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[04:25:28] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[04:25:28] [Server thread/INFO]: _______________________________________________________
[04:25:28] [Server thread/INFO]:   Integrating PaperSpigot async methods
[04:25:28] [Server thread/INFO]:   Vault found. (Loaded: true)
[04:25:28] [Server thread/INFO]:   Citizens found. (Loaded: true)
[04:25:28] [Server thread/INFO]:   52 Enabled and 7 Disabled modules
[04:25:28] [Server thread/INFO]:   Votifier found. (Loaded: true)
[04:25:28] [Server thread/INFO]:   Loaded (4) portals into memory. Took 21ms
[04:25:28] [Server thread/INFO]:   ProtocolLib found. (Loaded: true)
[04:25:28] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.102
[04:25:28] [Server thread/INFO]:   Initialized Cipher256 AES
[04:25:28] [Server thread/INFO]:   Loaded (61) regular alias into memory. Took 24ms
[04:25:28] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 0ms
[04:25:28] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (resource_world) name
[04:25:28] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (ResWorld) name
[04:25:28] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (ResNether) name
[04:25:28] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for Island world. Please update values.
[04:25:28] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (Main) name
[04:25:28] [Server thread/INFO]:   3.42.0 data base type detected
[04:25:28] [Server thread/INFO]:   Started SqLite data base. Took 77ms
[04:25:28] [Server thread/INFO]:   Towny found. (Loaded: false)
[04:25:28] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[04:25:28] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[04:25:28] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[04:25:28] [Server thread/INFO]:   Loaded (2) cooldowns into memory. Took 0ms
[04:25:28] [Server thread/INFO]:   Loaded (144) custom mob heads into memory. Took 8ms
[04:25:28] [Server thread/INFO]:   Enabling BungeeCord Support
[04:25:28] [Server thread/INFO]:   Initializing BungeeCord
[04:25:28] [Server thread/INFO]:   Loaded (23) kits into memory. Took 28ms
[04:25:28] [Server thread/INFO]:   Loaded (20) ranks into memory. Took 7ms
[04:25:28] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 0ms
[04:25:28] [Server thread/INFO]:   Loaded (1) jails into memory. Took 0ms
[04:25:28] [Server thread/INFO]:   Loaded (10) player data into memory. Took 8ms
[04:25:28] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[04:25:28] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[04:25:28] [Server thread/INFO]:   Loaded (31) custom alias into memory. Took 2ms
[04:25:28] [Server thread/INFO]:   Registered events. Took 58ms
[04:25:28] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 2ms
[04:25:28] [Server thread/INFO]:   Loaded (EN) language file into memory. Took 66ms
[04:25:28] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 26ms
[04:25:28] [Server thread/INFO]:   Loaded (12) warps into memory. Took 2ms
[04:25:28] [Server thread/INFO]:   VaultPermissions found. (Loaded: true)
[04:25:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.6.10.7]
[04:25:28] [Server thread/INFO]:   PlaceholderAPI hooked.
[04:25:28] [Server thread/INFO]:   PlaceholderAPI found. (Loaded: true)
[04:25:28] [Server thread/INFO]:   mcMMO found. (Loaded: true)
[04:25:28] [Server thread/INFO]:   Jobs found. (Loaded: false)
[04:25:28] [Server thread/INFO]:   Initializing world manager.
[04:25:28] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 2ms
[04:25:28] [Server thread/INFO]:   Loaded GeoIP
[04:25:28] [Server thread/INFO]:   Loaded (51) skin cache entries into memory. Took 1ms
[04:25:28] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[04:25:28] [Server thread/INFO]:   Version 9.6.10.7 has been enabled
[04:25:28] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[04:25:28] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[04:25:29] [Server thread/INFO]: [Towny] Enabling Towny v0.100.1.0
[04:25:29] [Server thread/INFO]: ====================      Towny      ========================
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_1
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_2
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/WARN]: [Towny] Attempted to override an protected string. Skipped msg_ptw_warning_3
[04:25:29] [Server thread/INFO]: [Towny] Successfully loaded translations for 42 languages.
[04:25:29] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
[04:25:29] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[04:25:29] [Server thread/INFO]: [Towny] Database: Loaded in 28ms.
[04:25:29] [Server thread/INFO]: [Towny] Database: 100% of residents have stored UUIDs.
[04:25:29] [ForkJoinPool.commonPool-worker-12/INFO]: [Towny] Cleaning up old backups...
[04:25:29] [ForkJoinPool.commonPool-worker-12/INFO]: [Towny] Successfully cleaned backups.
[04:25:29] [ForkJoinPool.commonPool-worker-12/INFO]: [Towny] Making backup...
[04:25:29] [Folia Async Scheduler Thread #7/INFO]: [Towny] Time until a New Day: 7 hours, 34 minutes, 31 seconds
[04:25:29] [Folia Async Scheduler Thread #7/INFO]: [Towny] Checking for updates...
[04:25:29] [ForkJoinPool.commonPool-worker-12/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[04:25:29] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[04:25:29] [Server thread/INFO]: [Towny] Plugins found: 
[04:25:29] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.102 via Vault
[04:25:29] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.102 via Vault
[04:25:29] [Server thread/INFO]: [Towny]   Economy: CMIEconomy via Vault
[04:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: townyadvanced [0.100.1.0]
[04:25:29] [Server thread/INFO]: [Towny]   Add-ons: TownyChat v0.112, PlaceholderAPI v2.11.5
[04:25:30] [Server thread/INFO]: =============================================================
[04:25:30] [Server thread/INFO]: [Towny] Version: 0.100.1.0 - Plugin Enabled
[04:25:30] [Server thread/INFO]: =============================================================
[04:25:30] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.17
[04:25:30] [Server thread/INFO]: [RoseStacker] Initializing using RoseGarden v1.2.4
[04:25:30] [Folia Async Scheduler Thread #7/INFO]: [Towny] New update available: 0.100.1.22 | Current version: 0.100.1.0
[04:25:30] [Folia Async Scheduler Thread #7/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.100.1.22
[04:25:30] [Folia Async Scheduler Thread Timer/WARN]: [Towny] Your towny\data\townblocks\ folder contains a folder named 'Main' which doesn't appear to exist on your Bukkit server!
[04:25:30] [Folia Async Scheduler Thread Timer/WARN]: [Towny] Towny will load the townblocks regardless, but if this world no longer exists please delete the folder.
[04:25:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.17]
[04:25:30] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.6
[04:25:30] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.8.6
[04:25:30] [Server thread/INFO]: [Vulcan] Server Version: 1.20.2 detected!
[04:25:30] [Server thread/INFO]: [Vulcan] mcMMO found. Enabling hook!
[04:25:30] [Server thread/INFO]: [Vulcan] LibsDisguises found. Enabling hook!
[04:25:30] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[04:25:30] [Server thread/INFO]: [Vulcan] BStats enabled!
[04:25:30] [Server thread/INFO]: [Vulcan] Registered mcMMO listener!
[04:25:30] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[04:25:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.8.6]
[04:25:30] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[04:25:30] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.3
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[04:25:30] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[04:25:30] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.0
[04:25:30] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.5-SNAPSHOT
[04:25:31] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[04:25:31] [Server thread/INFO]: [MMOItems] Hooked onto mcMMO
[04:25:31] [Server thread/INFO]: [MMOItems SPEAR NEON_SABER] Could not load base item data 'item-particles': Particle is missing type or selected particle.
[04:25:31] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[04:25:31] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[04:25:31] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[04:25:31] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[04:25:31] [Server thread/WARN]: [MMOItems] Could not load station 'mythical-forge.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.file.FileConfiguration.getConfigurationSection(String)" is null
[04:25:31] [Server thread/WARN]: [MMOItems] Could not load station 'steel-crafting-station.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.file.FileConfiguration.getConfigurationSection(String)" is null
[04:25:31] [Server thread/WARN]: [MMOItems] Could not load station 'arcane-forge.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.file.FileConfiguration.getConfigurationSection(String)" is null
[04:25:31] [Server thread/INFO]: [MMOItems] Hooked onto AdvancedEnchantments
[04:25:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.9.5-SNAPSHOT]
[04:25:31] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[04:25:31] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.7.0
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuardExtraFlags.
[04:25:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedenchantments [1.0.0]
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into MythicMobs.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into CMI.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into CoreProtect.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Towny.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Registering Vulcan Hook and enabling module...
[04:25:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[04:25:31] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.12
[04:25:31] [Server thread/INFO]: [BetterRTP] Cooldown = 60
[04:25:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.12]
[04:25:31] [Server thread/INFO]: [TownyChat] Enabling TownyChat v0.112
[04:25:31] [Server thread/INFO]: [TownyChat] Towny version 0.100.1.0 found.
[04:25:31] [Server thread/INFO]: [TownyChat] Default Channel set to general
[04:25:31] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.3-beta-13
[04:25:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[04:25:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[04:25:31] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.3-beta-13
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.45
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-318 (MC: 1.20.2)

[04:25:31] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[04:25:31] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[04:25:31] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/denizenscript/denizen/objects/ItemTag
[04:25:31] [Server thread/WARN]:     at ItemsAdder_3.6.3-beta-13.jar//dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.hook(SourceFile:22)
[04:25:31] [Server thread/WARN]:     at ItemsAdder_3.6.3-beta-13.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:399)
[04:25:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[04:25:31] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[04:25:31] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[04:25:31] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[04:25:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:646)
[04:25:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:557)
[04:25:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627)
[04:25:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
[04:25:31] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[04:25:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
[04:25:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[04:25:31] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:840)
[04:25:31] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.objects.ItemTag
[04:25:31] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[04:25:31] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[04:25:31] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
[04:25:31] [Server thread/WARN]:     ... 14 more
[04:25:31] [Server thread/ERROR]: [ItemsAdder] Please set 'enable-api: true' in Vulcan anticheat config.yml in order to enable compatibility and run '/vulcan reload'.
[04:25:31] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 8255
[04:25:31] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin ItemsAdder tried to register listener for unknown packet ADD_RESOURCE_PACK[PLAY, SERVER, 68, classNames: [net.minecraft.network.protocol.game.PacketPlayOutResourcePackPushPacket, net.minecraft.network.protocol.game.ClientboundResourcePackPushPacketPacket] (unregistered)] [direction: from SERVER]
[04:25:32] [Server thread/INFO]: [Iris]: Enabled ExternalDataProvider for ItemsAdder.
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Enabling DeluxeCombat v1.60.3
[04:25:32] [Server thread/INFO]: [DeluxeCombat]  _____        _                   ______            _                
[04:25:32] [Server thread/INFO]: [DeluxeCombat] (____ \      | |                 / _____)          | |          _    
[04:25:32] [Server thread/INFO]: [DeluxeCombat]  _   \ \ ____| |_   _ _   _ ____| /      ___  ____ | | _   ____| |_  
[04:25:32] [Server thread/INFO]: [DeluxeCombat] | |   | / _  ) | | | ( \ / ) _  ) |     / _ \|    \| || \ / _  |  _) 
[04:25:32] [Server thread/INFO]: [DeluxeCombat] | |__/ ( (/ /| | |_| |) X ( (/ /| \____| |_| | | | | |_) | ( | | |__ 
[04:25:32] [Server thread/INFO]: [DeluxeCombat] |_____/ \____)_|\____(_/ \_)____)\______)___/|_|_|_|____/ \_||_|\___)
[04:25:32] [Server thread/INFO]: [DeluxeCombat] 
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook Towny (0.100.0.0, Combat Hook) has been registered.
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook ProtocolLib (4.6.0, Common Hook) has been registered.
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook LibsDisguises (10.0.24, Common Hook) has been registered.
[04:25:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxecombat [0.1.2]
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook PlaceholderAPI (2.10.9, Common Hook) has been registered.
[04:25:32] [Server thread/WARN]: [DeluxeCombat] "DeluxeCombat v1.60.3" has registered a listener for net.advancedplugins.ae.api.EnchantActivateEvent on method "public void nl.marido.deluxecombat.hooks.plugins.itemplugins.AEHook.onEnchantActivateEvent(net.advancedplugins.ae.api.EnchantActivateEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [Marido, timderspieler].
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook AdvancedEnchantments (8.0.0b29, Item Hook) has been registered.
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook Citizens (2.0.27, Common Hook) has been registered.
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook BetterRTP (3.2.1-3, Common Hook) has been registered.
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook MMOItems (5.2.1, Item Hook) has been registered.
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Hook Vault (1.7.3, Common Hook) has been registered.
[04:25:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[04:25:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[04:25:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DeluxeCombat' to create a bStats instance!
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Spawnpoints (0), Kill-Streaks (1), Rewards (2), Custom Tools (1) loaded!
[04:25:32] [Server thread/INFO]: [DeluxeCombat] Start fetching marketplace addons...
[04:25:32] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.49
[04:25:32] [Server thread/INFO]: [BigDoors] Power Block Types:
[04:25:32] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[04:25:32] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[04:25:32] [Server thread/INFO]: [BigDoors]  - BEDROCK
[04:25:32] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[04:25:32] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[04:25:32] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[04:25:32] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[04:25:32] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[04:25:32] [Server thread/INFO]: [BigDoors]  - LAVA
[04:25:32] [Server thread/INFO]: [BigDoors]  - WATER
[04:25:32] [Server thread/INFO]: [BigDoors]  - SNOW
[04:25:32] [Server thread/INFO]: [BigDoors]  - FERN
[04:25:32] [Server thread/INFO]: [BigDoors]  - GRASS
[04:25:32] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[04:25:32] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[04:25:32] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[04:25:32] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[04:25:32] [Server thread/WARN]: [BigDoors] ╔═══════════════════════════════════════════════════════╗
[04:25:32] [Server thread/WARN]: [BigDoors] ║                                                       ║
[04:25:32] [Server thread/WARN]: [BigDoors] ║                    !!  WARNING  !!                    ║
[04:25:32] [Server thread/WARN]: [BigDoors] ║                                                       ║
[04:25:32] [Server thread/WARN]: [BigDoors] ║                                                       ║
[04:25:32] [Server thread/WARN]: [BigDoors] ║            You have enabled "unsafe mode"!            ║
[04:25:32] [Server thread/WARN]: [BigDoors] ║                                                       ║
[04:25:32] [Server thread/WARN]: [BigDoors] ║   THIS IS NOT SUPPORTED! USE THIS AT YOUR OWN RISK!   ║
[04:25:32] [Server thread/WARN]: [BigDoors] ║                                                       ║
[04:25:32] [Server thread/WARN]: [BigDoors] ╚═══════════════════════════════════════════════════════╝
[04:25:33] [Server thread/WARN]: [BigDoors] mcMMO detected! All ores are blacklisted to avoid item duplication! This can be overridden in the config.
[04:25:33] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[04:25:33] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[04:25:33] [Server thread/INFO]: [BigDoors] Successfully hooked into "Towny"!
[04:25:33] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.2.6
[04:25:33] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.27.0
[04:25:33] [Server thread/INFO]: [Lib1711] Enabling Lib1711 v3.2
[04:25:33] [Server thread/INFO]: [SafariNet] Enabling SafariNet v1.16.1-b1-SNAPSHOT
[04:25:33] [Server thread/INFO]: [SafariNet] Using v1_20_R2
[04:25:33] [Server thread/INFO]: [SafariNet] [SafariNet] WorldGuard found and using it.
[04:25:33] [Server thread/INFO]: [SafariNet] [SafariNet] Citizens found and using it.
[04:25:33] [Server thread/INFO]: [SafariNet] [SafariNet] MythicMobs found and using it.
[04:25:33] [Server thread/INFO]: [SafariNet] [SafariNet] Towny found and using it.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v3.2.1
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loading the users.yml
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Successfully loaded users.yml
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loading custom files.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-15m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/BossLoot-Yukio.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-12h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-12h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-200.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-400k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-30m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-12h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-6h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-15m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-1h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-6h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-15m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-30m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-6h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-12h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-1h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-15m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/TempFly-1h.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-1h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-30m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMO-5.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-30m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/TempFly-10m.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-12h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-30m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-12h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-15m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-12h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-6h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-1h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-15m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-6h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-30m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-6h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-12h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-1h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-15m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-6h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-12h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-15m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-1h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-1h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-30m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-15m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-30m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/BossPet-Sentinel.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-15m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-6h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-12h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-1h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-12h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-30m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-30m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-6h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-6h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-30m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-15m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-12h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-30m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-5k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-6h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-15m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-30m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Rank-PermNinja.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-10k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-30m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-1h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-12h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-75.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-12h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-30m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-1k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-6h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-12h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-1h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-30m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-12h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Boss-Dragon_Sentinel.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-150.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-6h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-1h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/BossPet-MegaWarden.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-1h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-15m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-6h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Item-PlushieCapsule.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-30m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-30m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-30m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-500k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-1h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-12h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-6h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-15m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-1h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-30m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMO-40.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-20.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-1h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-1h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-6h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-15m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-15m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-1h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-30m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/BossPet-Yukio.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-15m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-12h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-1h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMO-20.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/EnderChest-6Rows.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-30m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/TempFly-30m.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-1h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-6h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-1h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-1h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-6h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-30m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-6h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-1h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-1h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-12h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-1h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-30m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-12h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-6h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-30m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-12h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-12h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-6h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/BossLoot-Warden.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-15m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-1h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-12h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-12h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-6h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-12h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-15m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-300.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-30m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-12h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-15m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-1h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-6h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-30m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-15m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-12h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-30m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-12h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-1h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-15m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-12h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/TempFly-1m.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-15m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-12h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-6h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-15m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-12h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-6h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-1h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-6h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-15m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-1h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-30m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-300k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Boss-Wither.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-6h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-6h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-15m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-1h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-6h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-12h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-1h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-15m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-1h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-6h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMO-100.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-15m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-1h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-30m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-1h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-1h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-15m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-6h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-1h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-30m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Rank-PermFarmer.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-1h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Tags-Hearts.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-15m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Boss-EnderDragon.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-15m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Example.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-100.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-15m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-15m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Item-SpawnerCapsule.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-6h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-15m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-1h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-15m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-6h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-12h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-30m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-100k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-6h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-30m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-1h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-10.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-12h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-30m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Permission-PermCraft.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-12h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-15m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-6h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-1h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-12h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-12h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMO-50.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-1h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-15m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMO-10.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-30m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-15m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-1h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-6h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-30m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-12h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-6h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-6h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-1h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-12h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-15m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-1h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-30m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-1h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-6h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Tags-Beta.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-1h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-12h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-15m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-6h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-6h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-12h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-1h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-1h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-30m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-1h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-12h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-50.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-6h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-6h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-12h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/BossLoot-Sentinel.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-30m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-6h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-30m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-12h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-12h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-15m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Boss-Yukio.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-30m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-12h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-12h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-6h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-6h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-15m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-15m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-30m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-15m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-5.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-6h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-6h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-6h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-12h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-6h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-12h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-6h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-1h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-1h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-30m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Boss-MegaWarden.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-15m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-15m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-6h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-EXP-All-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-15m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-30m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-15m-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-6h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-15m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-15m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-12h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-30m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-30m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-15m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-30m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-250.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-15m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-12h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/TempFly-5m.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-12h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-12h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-200k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/TempRank-Farmer-3D.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-30m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-30m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-McMMOBooster-Xp-6h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-12h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-30m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-30m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-15m-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-50k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-12h-125%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-Eco-Sell-1h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-30m-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Money-30m-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-6h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-1h-150%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Towny-ClaimChunks-1.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/McMMOBooster-Xp-1h-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-12h-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-1h-50%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-6h-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Global-JobBooster-Xp-30m-175%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-30m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-15m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-15m-200%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Xp-1h-25%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/JobBooster-Money-15m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Eco-Sell-30m-100%.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money-20k.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /codes/Starter-Money.yml.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Finished loading custom files.
[04:25:33] [Server thread/INFO]: [CrazyVouchers] Metrics has been enabled.
[04:25:33] [Server thread/INFO]: [Megizen] Enabling Megizen v0.1.0-DEV (build 8)
[04:25:33] [Server thread/ERROR]: Error occurred while enabling Megizen v0.1.0-DEV (build 8) (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/utilities/debugging/Debug
    at net.tickmc.megizen.bukkit.Megizen.onEnable(Megizen.java:21) ~[Megizen-0.1.0-b8.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.2.jar:git-Paper-318]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:646) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:557) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-318]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.utilities.debugging.Debug
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 13 more
[04:25:33] [Server thread/INFO]: [Megizen] Disabling Megizen v0.1.0-DEV (build 8)
[04:25:33] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling Megizen v0.1.0-DEV (build 8) (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizen/Denizen
    at net.tickmc.megizen.bukkit.Megizen.onDisable(Megizen.java:39) ~[Megizen-0.1.0-b8.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:225) ~[paper-1.20.2.jar:git-Paper-318]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:194) ~[paper-1.20.2.jar:git-Paper-318]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:646) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:557) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-318]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.Denizen
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 16 more
[04:25:33] [Server thread/INFO]: [DeluxeCombatFlags] Enabling DeluxeCombatFlags v1.0.1*
[04:25:33] [Server thread/INFO]: [WorldGuard] Registering session handler de.timderspieler.deluxecombat.addon.wg.PvPForceFlag
[04:25:33] [Server thread/INFO]: [WorldGuard] Registering session handler de.timderspieler.deluxecombat.addon.wg.PvPTagFlag
[04:25:33] [Server thread/INFO]: [DeluxeCombat] Hook DeluxeCombatFlags (1.0.0, Combat Hook) has been registered.
[04:25:33] [Server thread/INFO]: [DeluxeCombat] [Flags] Flags have been registered and the integration has been loaded.
[04:25:33] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.4
[04:25:33] [Server thread/INFO]: [PlayerParticles] Initializing using RoseGarden v1.1.0.52-SNAPSHOT
[04:25:33] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[04:25:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.4]
[04:25:33] [Server thread/INFO]: [LootChest] Enabling LootChest v2.3.9
[04:25:33] [Server thread/INFO]: [LootChest] Server version: 1.20
[04:25:33] [Server thread/INFO]: [LootChest] Loading config files...
[04:25:33] [Server thread/INFO]: [LootChest] Checking for update...
[04:25:33] [Server thread/INFO]: [LootChest] Starting particles...
[04:25:33] [Server thread/INFO]: [LootChest] [STDOUT] Unknown particle: DUST_PLUME for server version git-Paper-318 (MC: 1.20.2)
[04:25:33] [Server thread/WARN]: Nag author(s): '[]' of 'LootChest v2.3.9' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[04:25:33] [Server thread/INFO]: [LootChest] [STDOUT] Unknown particle: GUST for server version git-Paper-318 (MC: 1.20.2)
[04:25:33] [Server thread/INFO]: [LootChest] [STDOUT] Unknown particle: GUST_DUST for server version git-Paper-318 (MC: 1.20.2)
[04:25:33] [Server thread/INFO]: [LootChest] [STDOUT] Unknown particle: GUST_EMITTER for server version git-Paper-318 (MC: 1.20.2)
[04:25:33] [Server thread/INFO]: [LootChest] [STDOUT] Unknown particle: TRIAL_SPAWNER_DETECTION for server version git-Paper-318 (MC: 1.20.2)
[04:25:33] [Server thread/INFO]: [LootChest] [STDOUT] Unknown particle: WHITE_SMOKE for server version git-Paper-318 (MC: 1.20.2)
[04:25:33] [Server thread/INFO]: [Mt-OreAnnouncer] Enabling Mt-OreAnnouncer v1.0.0
[04:25:33] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.2
[04:25:33] [Server thread/INFO]: [MCPets] : Language file reloaded.
[04:25:33] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[04:25:33] [Server thread/INFO]: Loading pets... 
[04:25:33] [Server thread/INFO]:   - MegaWarden loaded succesfully.
[04:25:33] [Server thread/INFO]:   - ghost_girl loaded succesfully.
[04:25:33] [Server thread/INFO]:   - wormy loaded succesfully.
[04:25:33] [Server thread/INFO]:   - baboon_chick loaded succesfully.
[04:25:33] [Server thread/INFO]:   - shock_bees loaded succesfully.
[04:25:33] [Server thread/INFO]:   - baby_shadow loaded succesfully.
[04:25:33] [Server thread/INFO]:   - baby_hatchling loaded succesfully.
[04:25:33] [Server thread/INFO]:   - bunk_spiderling loaded succesfully.
[04:25:33] [Server thread/INFO]:   - coily loaded succesfully.
[04:25:33] [Server thread/INFO]:   - cracko loaded succesfully.
[04:25:33] [Server thread/INFO]:   - hoarding_grub loaded succesfully.
[04:25:33] [Server thread/INFO]:   - PILLAGERS_ravager_mount loaded succesfully.
[04:25:33] [Server thread/INFO]:   - dragonsentinelpet loaded succesfully.
[04:25:33] [Server thread/INFO]:   - employee loaded succesfully.
[04:25:33] [Server thread/INFO]:   - Yukio loaded succesfully.
[04:25:33] [Server thread/INFO]:   - jacky loaded succesfully.
[04:25:33] [Server thread/INFO]:   - mimic loaded succesfully.
[04:25:33] [Server thread/INFO]:   - snare_grub loaded succesfully.
[04:25:33] [Server thread/INFO]:   - eyeless_pup loaded succesfully.
[04:25:33] [Server thread/INFO]:   - thumpling loaded succesfully.
[04:25:33] [Server thread/INFO]:   - baby_giant loaded succesfully.
[04:25:33] [Server thread/INFO]:   - slimeling loaded succesfully.
[04:25:33] [Server thread/INFO]: [MCPets] : 22 pets registered successfully !
[04:25:33] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[04:25:33] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[04:25:33] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[04:25:33] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[04:25:33] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[04:25:33] [Server thread/INFO]:       Plugin made by Nocsy
[04:25:33] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[04:25:33] [Server thread/INFO]: -=- Launching Flags -=-
[04:25:33] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[04:25:33] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[04:25:33] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[04:25:33] [Server thread/INFO]: 3 flags launched.
[04:25:33] [Server thread/INFO]: [Jobs] Enabling Jobs v5.1.3.0
[04:25:33] [Server thread/INFO]: ------------- Jobs -------------
[04:25:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.1.3.0]
[04:25:33] [Server thread/INFO]: PlaceholderAPI hooked.
[04:25:33] [Server thread/INFO]: Connected to database (SqLite)
[04:25:33] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[04:25:33] [Server thread/INFO]: Loaded 9 titles
[04:25:33] [Server thread/INFO]: Loaded 119 protected blocks timers
[04:25:33] [Server thread/INFO]: Loaded 1403 custom item names
[04:25:33] [Server thread/INFO]: Loaded 81 custom entity names
[04:25:33] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[04:25:33] [Server thread/INFO]: Loaded 38 custom enchant names
[04:25:33] [Server thread/INFO]: Loaded 43 custom enchant names
[04:25:33] [Server thread/INFO]: Loaded 16 custom color names
[04:25:33] [Server thread/INFO]: [Jobs] Loaded 84 top list signs
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Builder
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Digger
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Brewer
[04:25:33] [Server thread/INFO]: Loaded 42 quests for Caretaker
[04:25:33] [Server thread/INFO]: Loaded 18 quests for Cooker
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Enchanter
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Fisherman
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Explorer
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Miner
[04:25:33] [Server thread/INFO]: Loaded 10 quests for Baker
[04:25:33] [Server thread/INFO]: Loaded 16 quests for Smelter
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Crafter
[04:25:33] [Server thread/INFO]: Loaded 21 quests for Taster
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Farmer
[04:25:33] [Server thread/INFO]: Loaded 1 quests for Hunter
[04:25:33] [Server thread/INFO]: Loaded 17 jobs
[04:25:33] [Server thread/INFO]: Loaded 0 boosted items
[04:25:33] [Server thread/INFO]: Loaded 123 furnace for reassigning.
[04:25:33] [Server thread/INFO]: Loaded 48 brewing for reassigning.
[04:25:33] [pool-125-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (6405e850eea61a4b9bf4f0d0cbb80fe20b3cfb90)
[04:25:33] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[04:25:33] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[04:25:33] [Server thread/INFO]: Preloaded 4 players data in 0.0
[04:25:33] [Server thread/INFO]: WorldGuard detected.
[04:25:33] [Server thread/INFO]: MythicMobs 5.x detected.
[04:25:33] [Server thread/INFO]: mcMMO2.1.230 was found - Enabling capabilities.
[04:25:33] [Server thread/INFO]: Registered McMMO 2.x listener
[04:25:33] [Server thread/INFO]: [Jobs] MythicMobs was found - Enabling capabilities.
[04:25:33] [Server thread/INFO]: [Jobs] Loaded 295 block protection entries. 3ms
[04:25:33] [Server thread/INFO]: Loading explorer data
[04:25:33] [Server thread/INFO]: Loaded explorer data (245) in 3 ms
[04:25:33] [Server thread/INFO]: Plugin has been enabled successfully.
[04:25:33] [Server thread/INFO]: ------------------------------------
[04:25:33] [Server thread/INFO]: [PhoenixCrates] Enabling PhoenixCrates v3.0
[04:25:33] [Server thread/INFO]: Loading cross version adapter...
[04:25:33] [Server thread/INFO]: CraftLegacy not found, skipping.
[04:25:33] [Server thread/INFO]:   ____    ____                               
[04:25:33] [Server thread/INFO]:  |  _ \  / ___|                              
[04:25:33] [Server thread/INFO]:  | |_) || |       Phoenix Crates v3.0      
[04:25:33] [Server thread/INFO]:  |  __/ | |___    https://phoenixplugins.com/
[04:25:33] [Server thread/INFO]:  |_|     \____|                             
[04:25:33] [Server thread/INFO]:                                                  
[04:25:33] [Server thread/INFO]: Loading settings...
[04:25:33] [Server thread/INFO]: Loading file "config.yml".
[04:25:33] [Server thread/INFO]: File "config.yml" is up to date. Importing configurations.
[04:25:33] [Server thread/INFO]: Validating license...
[04:25:33] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[04:25:34] [Server thread/INFO]: Great news! Your license is valid and active. Enjoy full access to all the features and benefits of this plugin.
[04:25:34] [Server thread/INFO]: No new version available!
[04:25:34] [Server thread/INFO]: Checking for possible migrations...
[04:25:34] [Server thread/INFO]: [PhoenixCrates] No migrations to run.
[04:25:34] [Server thread/INFO]: Vault founded. Preparing Economy...
[04:25:34] [Server thread/INFO]: Placeholder API founded. Preparing placeholders...
[04:25:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: phoenixcrates [1.0.0]
[04:25:34] [Server thread/INFO]: Model Engine founded. Preparing model engine...
[04:25:34] [Server thread/INFO]: Loading components...
[04:25:34] [Server thread/INFO]: Loading database...
[04:25:34] [Server thread/WARN]: 2 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.HikariDataSource - CyberSQLitePool - Starting...
[04:25:34] [Server thread/WARN]: 14 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.HikariDataSource - CyberSQLitePool - Start completed.
[04:25:34] [Server thread/INFO]: Loading menus...
[04:25:34] [Server thread/INFO]: Loading file "menus/default_rewards_preview.yml".
[04:25:34] [Server thread/INFO]: File "menus/default_rewards_preview.yml" is up to date. Importing configurations.
[04:25:34] [Server thread/INFO]: Menu "default_rewards_preview" loaded successfully
[04:25:34] [Server thread/INFO]: Loading addons...
[04:25:34] [Server thread/INFO]: Loading players data...
[04:25:34] [Server thread/INFO]: Loading crates...
[04:25:34] [Server thread/INFO]: Loading file "locations.yml".
[04:25:34] [Server thread/INFO]: File "locations.yml" is up to date. Importing configurations.
[04:25:34] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[04:25:34] [Server thread/INFO]: Loading file "crates/Samurai.yml".
[04:25:34] [Server thread/INFO]: File "crates/Samurai.yml" is up to date. Importing configurations.
[04:25:34] [Server thread/INFO]: Loading file "crates/Enchantment.yml".
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Tsunami Realms(1177767962783006751)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:tickets(1178836014471589968)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-history(1201238367153692803)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rules(1178196827347107890)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢announcements📢(1177776931240951860)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:polls(1177776622485635074)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:daily-question(1177777178704892085)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:crate-ideas(1177772932940959754)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-updates📄📌(1178551260509638747)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general(1177767962783006754)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎬multimedia🎬(1177772742251118693)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:warp-showcase(1177772784567455885)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐈🐩pets🦎🐓(1177772810836389951)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:cooking-channel🍱(1177772857388961862)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestions(1197271690250567821)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:in-game(1200625532727984138)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nitro-booster(1178182527450624060)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-commands(1177777439418634260)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:no-mic(1200902640628940922)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:18-plus-rules(1178188810568339577)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:18-plus-general(1178188515528417291)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:18-plus-multimedia(1178191939993096193)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-commands-18-plus(1180378652685369395)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:promotions(1180661356261806141)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-announcements(1177773382557769799)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-chat(1177773083751354368)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:helper-chat(1177776003213439136)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:helper-evidence(1184361675491639418)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-bot(1209735639189291048)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:commands-moderation(1192631731652673586)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-alerts(1179296479358238771)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:report-a-bug(1184364196280934400)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderator-chat(1177776063561072681)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:black-listed(1184369246348771380)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:crate-item-releases(1184369165637783582)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:verify-age(1179298576946430002)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-chat(1177776125418680350)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:applications(1177776183023251517)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:consolesrv(1200906160979578881)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:grimm-evidence(1184360692762022019)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:project-evidence(1184360561404813352)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:wizard-juvia-evidence(1184361043019976765)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:noot-evidence(1184360808709357568)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:maxthenerdd-evidence(1207779907669729280)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:appeals-discussion(1184377514076930098)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:support-ticket-faolaneala_56360(1217119565536956449)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:consolesrv(1200906160979578881)
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] No TownyChat channels were marked as hooked. Available channels: general, town, nation, alliance, admin, mod, local
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling TownyChat hook
[04:25:34] [Server thread/INFO]: File "crates/Enchantment.yml" is up to date. Importing configurations.
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[04:25:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[04:25:34] [Server thread/INFO]: Loading file "crates/crate_4586.yml".
[04:25:35] [Server thread/INFO]: File "crates/crate_4586.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/INFO]: Loading file "crates/Secret.yml".
[04:25:35] [Server thread/INFO]: File "crates/Secret.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/INFO]: Loading file "crates/Voting.yml".
[04:25:35] [Server thread/INFO]: File "crates/Voting.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/INFO]: Loading file "crates/Tokens.yml".
[04:25:35] [Server thread/INFO]: File "crates/Tokens.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/INFO]: Loading file "crates/Beta_Crate.yml".
[04:25:35] [Server thread/INFO]: File "crates/Beta_Crate.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/INFO]: Loading file "crates/example2.yml".
[04:25:35] [Server thread/INFO]: File "crates/example2.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/INFO]: Loading file "crates/example3.yml".
[04:25:35] [Server thread/INFO]: File "crates/example3.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/INFO]: Loading file "crates/Tsunami.yml".
[04:25:35] [Server thread/INFO]: File "crates/Tsunami.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/INFO]: Loading file "crates/example4.yml".
[04:25:35] [Server thread/INFO]: File "crates/example4.yml" is up to date. Importing configurations.
[04:25:35] [Server thread/WARN]: [PhoenixCrates] There was an attempt to add crates with an invalid type: "Test"!
[04:25:35] [Server thread/INFO]: Loaded 6 crates.
[04:25:35] [Server thread/INFO]: 
[04:25:35] [Server thread/INFO]: Plugin loaded successfully!
[04:25:35] [Server thread/INFO]: [Any questions or problems that may arise, contact us through
[04:25:35] [Server thread/INFO]: the website or our discord: https://phoenixplugins.com/discord]
[04:25:35] [Server thread/INFO]: 
[04:25:35] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.7.0-b147
[04:25:35] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[04:25:35] [Server thread/INFO]: [ajLeaderboards] Loaded 47 boards
[04:25:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.7.0-b147]
[04:25:35] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[04:25:35] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[04:25:35] [Server thread/WARN]: [ajLeaderboards] Luckperms Contexts are enabled, but only-register-lpc-for has not been configured! Configuring only-register-lpc-for is strongly recommended to improve performance!
[04:25:35] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0-b147 by ajgeiss0702 enabled!
[04:25:35] [Server thread/INFO]: [KixsChatGames] Enabling KixsChatGames v2.1.2
[04:25:35] [Server thread/INFO]: 
[04:25:35] [Server thread/INFO]: --------------------------------------
[04:25:35] [Server thread/INFO]:      Kix's Chat Games by kixmc
[04:25:35] [Server thread/INFO]:      Starting on version 2.1.2
[04:25:35] [Server thread/INFO]: --------------------------------------
[04:25:35] [Server thread/INFO]: 
[04:25:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: kixschatgames [2.1.2]
[04:25:35] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v8.13.0
[04:25:36] [Server thread/INFO]: [VoxelSniper] Registered 70 Sniper Brushes with 136 handles.
[04:25:36] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[04:25:36] [Thread-42/INFO]: Checking for updates...
[04:25:36] [Server thread/INFO]: [GuiRedeemMCMMO] Enabling GuiRedeemMCMMO v2.0.2-BETA*
[04:25:36] [Server thread/INFO]: GuiRedeemMCMMO Has Been Enabled!
[04:25:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: guiredeemmcmmo [2.0.2-BETA]
[04:25:36] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[04:25:36] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[04:25:36] [Server thread/WARN]: [DeluxeMenus] command: axeenchants specified for menu: enchantschestplate already exists for another menu!
Skipping command: axeenchants in menu: enchantschestplate
[04:25:37] [Server thread/ERROR]: [DeluxeMenus] Filename specified for menu: jobstop is not a .yml file!
Make sure that the file name to load this menu from is specified as a .yml file!
Skipping loading of menu: jobstop
[04:25:37] [Server thread/INFO]: [DeluxeMenus] 175 GUI menus loaded!
[04:25:37] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[04:25:37] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[04:25:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.7-Release]
[04:25:37] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[04:25:37] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[04:25:37] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[04:25:37] [Server thread/INFO]: [DeluxeTags] 19 tags loaded
[04:25:37] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[04:25:37] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[04:25:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[04:25:37] [Server thread/INFO]: [DeluxeTags] ----------------------------
[04:25:37] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[04:25:37] [Server thread/INFO]: [DeluxeTags]  
[04:25:37] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[04:25:37] [Server thread/INFO]: [DeluxeTags] The latest version
[04:25:37] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[04:25:37] [Server thread/INFO]: [DeluxeTags]  
[04:25:37] [Server thread/INFO]: [DeluxeTags] ----------------------------
[04:25:37] [Server thread/INFO]: [WorldGuardGUI] Enabling WorldGuardGUI v1.1.3
[04:25:37] [Server thread/INFO]: [WorldGuardGUI] WorldGuardGUI has started successfully
[04:25:37] [Server thread/INFO]: [AdvancedItems] Enabling AdvancedItems v1.0.0
[04:25:37] [Server thread/INFO]: [AdvancedItems] Loaded 39 custom items.
[04:25:37] [Server thread/INFO]: [AdvancedItems] Registering Vulcan Hook and enabling module...
[04:25:37] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.2.5
[04:25:37] [Server thread/INFO]: [QuickShop] QuickShop Reremake
[04:25:37] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
[04:25:37] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_20_R2 For Minecraft version 1.20.2
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] CoreSupport Test
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] Virtual DisplayItem Support Test
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] GameVersion supporting Test
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
[04:25:37] [Server thread/INFO]: [QuickShop] [OK] End of life Test
[04:25:37] [Server thread/INFO]: [QuickShop] Reading the configuration...
[04:25:37] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
[04:25:37] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
[04:25:37] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
[04:25:37] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
[04:25:37] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
[04:25:37] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
[04:25:37] [Server thread/INFO]: [QuickShop] Loading items translations...
[04:25:37] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
[04:25:37] [Server thread/INFO]: [QuickShop] Loading potions translations...
[04:25:37] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
[04:25:37] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
[04:25:37] [Server thread/INFO]: [QuickShop] Setting up database...
[04:25:37] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
[04:25:37] [Server thread/INFO]: [QuickShop] Finished!
[04:25:37] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
[04:25:37] [Server thread/INFO]: [QuickShop] Registering commands...
[04:25:37] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
[04:25:37] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
[04:25:37] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
[04:25:37] [Server thread/INFO]: [QuickShop] Loading shops from the database...
[04:25:37] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
[04:25:37] [Server thread/INFO]: [QuickShop] Total           shops: 0
[04:25:37] [Server thread/INFO]: [QuickShop] Valid           shops: 0
[04:25:37] [Server thread/INFO]: [QuickShop] Pending              : 0
[04:25:37] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
[04:25:37] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 0
[04:25:37] [Server thread/INFO]: [QuickShop] Done! Used 0ms to loaded shops in database.
[04:25:37] [Server thread/INFO]: [QuickShop] Registering listeners...
[04:25:37] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
[04:25:37] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
[04:25:37] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
[04:25:37] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
[04:25:37] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 417 ms.
[04:25:37] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.30.0
[04:25:37] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[04:25:39] [Server thread/INFO]: [PlayerWarps] Found 23 config files to load!
[04:25:39] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[04:25:39] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (CMIEconomy)
[04:25:39] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[04:25:39] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[04:25:39] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[04:25:39] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[04:25:39] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[04:25:39] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[04:25:39] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[04:25:39] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[04:25:39] [Server thread/INFO]: [CraftBook] Enabling CraftBook v3.10.9;4793-1ce0146
[04:25:39] [Server thread/INFO]: [CraftBook] Loading persistent data from YAML!
[04:25:39] [Server thread/INFO]: [CraftBook] Successfully added 12 CommandItems!
[04:25:39] [Server thread/INFO]: [TAB] Enabling TAB v4.1.1
[04:25:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.1]
[04:25:40] [Server thread/INFO]: [TAB] Enabled in 90ms
[04:25:40] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[04:25:40] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[04:25:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tempfly [3.1.7]
[04:25:40] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12
[04:25:40] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[04:25:40] [Server thread/INFO]: [EpicRename] Version: 3.12 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[04:25:40] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[04:25:40] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[04:25:40] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[04:25:40] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[04:25:40] [Server thread/INFO]: [HoloBroadcast] Enabling HoloBroadcast v4.0.2
[04:25:40] [Server thread/INFO]: [HoloBroadcast] Using PlaceholderAPI
[04:25:40] [Server thread/INFO]: [HoloBroadcast] Using WorldGuard v7
[04:25:40] [Server thread/INFO]: [WorldGuard] Registering session handler fr.rstr.holobroadcast.hooks.GreetingFlagHandler
[04:25:40] [Server thread/INFO]: [WorldGuard] Registering session handler fr.rstr.holobroadcast.hooks.FarewellFlagHandler
[04:25:40] [Server thread/INFO]: [HoloBroadcast] Loaded 3 scheduled tasks!
[04:25:40] [Server thread/INFO]: HoloBroadcast v4.0.2 by _Rolyn and DevKrazy.
[04:25:40] [Server thread/INFO]: [BigDoorsOpener] Enabling BigDoorsOpener v2.5.1
[04:25:40] [Server thread/ERROR]: [BigDoorsOpener] Plugin failed to enable.
de.eldoria.bigdoorsopener.eldoutilities.crossversion.UnsupportedVersionException: Version MC_1_20 is not supported.
    at de.eldoria.bigdoorsopener.eldoutilities.crossversion.ServerVersion.forceVersion(ServerVersion.java:145) ~[BigDoorsOpener-2.5.1.jar:?]
    at de.eldoria.bigdoorsopener.core.BigDoorsOpener.onPluginEnable(BigDoorsOpener.java:129) ~[BigDoorsOpener-2.5.1.jar:?]
    at de.eldoria.bigdoorsopener.eldoutilities.plugin.EldoPlugin.onEnable(EldoPlugin.java:235) ~[BigDoorsOpener-2.5.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.2.jar:git-Paper-318]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:646) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:557) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-318]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[04:25:40] [Server thread/ERROR]: [BigDoorsOpener] Initializing failsave mode.
[04:25:40] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.19.0
[04:25:40] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[04:25:40] [Server thread/INFO]: [Shopkeepers] Loading the data of 8 shopkeepers ...
[04:25:40] [Server thread/INFO]: [Quests] Enabling Quests v3.14.2-3345d07
[04:25:40] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[04:25:40] [Server thread/INFO]: [Quests] Your server is running version 1.20
[04:25:40] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[04:25:40] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.63.8
[04:25:40] [Server thread/INFO]: [PinataParty] Registering hooks...
[04:25:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pinataparty [2.63.8]
[04:25:40] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[04:25:40] [Server thread/INFO]: [PinataParty] Hooked into Votifier
[04:25:40] [Server thread/INFO]: [PinataParty] Hooked into Vault
[04:25:40] [Server thread/INFO]: [PinataParty] Registering commands...
[04:25:40] [Server thread/INFO]: [PinataParty] Registering listeners...
[04:25:40] [Server thread/INFO]: [PinataParty] Loading data...
[04:25:40] [Server thread/INFO]: [PinataParty] Starting tasks...
[04:25:40] [Server thread/INFO]: [PinataParty] Starting metrics...
[04:25:40] [Server thread/INFO]: [PinataParty] Plugin registered to 561002 | -758402915
[04:25:40] [Server thread/INFO]: [PinataParty] Done and enabled in 13.05ms
[04:25:40] [Server thread/INFO]: [getoffmychest] Enabling getoffmychest v1.0-SNAPSHOT
[04:25:40] [Server thread/INFO]: [PyroMining] Enabling PyroMining v4.4.4
[04:25:40] [Server thread/INFO]: [PyroMining] Hooked into PAPI
[04:25:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PyroMining [4.4.4]
[04:25:40] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.5
[04:25:40] [Server thread/INFO]: [ChatItem] Detected server version: v1_20
[04:25:40] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[04:25:40] [Server thread/INFO]: [ChatItem] Loaded 4 getter for base components.
[04:25:40] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[04:25:40] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[04:25:40] [Server thread/INFO]: [ChatItem] Load DiscordSRV support.
[04:25:40] [Server thread/INFO]: [ChatItem] Loaded translation for en_gb.
[04:25:40] [Server thread/INFO]: [AdvancedEnderchest] Enabling AdvancedEnderchest v1.1.6
[04:25:41] [Server thread/INFO]: [AltDetector] Enabling AltDetector v2.02
[04:25:41] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Starting...
[04:25:41] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Start completed.
[04:25:41] [Server thread/INFO]: [AltDetector] Using SQLite database, version 3.42.0, driver version 3.42.0.1
[04:25:41] [Server thread/INFO]: [AltDetector] 0 records removed, expiration time 60 days.
[04:25:41] [Server thread/INFO]: [AltDetector] Metrics enabled if allowed by plugins/bStats/config.yml
[04:25:41] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.0.0
[04:25:41] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.9+5934e49
[04:25:41] [Server thread/INFO]: [ChestSort] Use permissions: true
[04:25:41] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[04:25:41] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[04:25:41] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[04:25:41] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[04:25:41] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[04:25:41] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[04:25:41] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[04:25:41] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[04:25:41] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[04:25:41] [Server thread/INFO]: [ChestSort] Check for updates: true
[04:25:41] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[04:25:41] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[04:25:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.0.0]
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.2.0.7
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] === ENABLE START ===
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Plugin Version V3.2.0.7
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] /home/container/plugins/zAuctionHouseV3/config.json loaded successfully !
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading of 4 price items
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading of 3 tax items
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loaded 4 blacklist items
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading the Examples category with 4 materials
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading the Blocks category with 1003 materials
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading the Potions category with 17 materials
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading the Tools category with 20 materials
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading the Weapons category with 13 materials
[04:25:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [3.2.0.7]
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading 3 inventories
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading 0 commands
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Start backup task, next backup at 00:00
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] /home/container/plugins/zAuctionHouseV3/items.json loaded successfully !
[04:25:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] === ENABLE DONE (50ms) ===
[04:25:41] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[04:25:41] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[04:25:41] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[04:25:41] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.0.0
[04:25:41] [Server thread/INFO]: [MythicMobs] §6------------------------------------------------
[04:25:41] [Server thread/INFO]: [MythicMobs] §b+ Loading MythicCrucible for Bukkit
[04:25:41] [Server thread/INFO]: [MythicMobs] §6------------------------------------------------
[04:25:41] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[04:25:45] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[04:25:45] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[04:25:45] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[04:25:45] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.0.0 has been successfully loaded!
[04:25:45] [Server thread/INFO]: [LuckyPouches] Enabling LuckyPouches v1.3.7
[04:25:45] [Server thread/INFO]:  
[04:25:45] [Server thread/INFO]:  LuckyPouches v1.3.7
[04:25:45] [Server thread/INFO]:  
[04:25:45] [Server thread/INFO]:      Author: Nik
[04:25:45] [Server thread/INFO]:  
[04:25:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[04:25:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[04:25:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'LuckyPouches' to create a bStats instance!
[04:25:45] [Server thread/INFO]: [NonSquareMines] Enabling NonSquareMines v1.4
[04:25:45] [Server thread/INFO]: [NonSquareMines]  Author adri1711- activado
[04:25:45] [Server thread/INFO]: [Tebex] Enabling Tebex v2.0.0
[04:25:45] [Server thread/INFO]: [DailyRewardsPlus] Enabling DailyRewardsPlus v1.3.3
[04:25:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: daily [1.0.0]
[04:25:45] [Server thread/INFO]: [DailyRewards+] Detected Placeholder API. Successfully enabled plugin support.
[04:25:45] [Server thread/INFO]: [DailyRewards+] Cleaning up...
[04:25:45] [Server thread/INFO]: [DailyRewards+] Has started successfully!
[04:25:45] [Server thread/INFO]: [BigDoorsPhysics] Enabling BigDoorsPhysics v2.4.2
[04:25:45] [Server thread/INFO]: [BigDoorsPhysics] Loading Config
[04:25:45] [Server thread/INFO]: [net.bonn2.bigdoorsphysics.relocated.org.reflections.Reflections] Reflections took 19 ms to scan 1 urls, producing 2 keys and 4 values
[04:25:45] [Server thread/INFO]: [BigDoorsPhysics] Discovered 3 version adapters
[04:25:45] [Server thread/INFO]: [BigDoorsPhysics] Loaded net.bonn2.bigdoorsphysics.versions.v1_19_3.VersionUtil_v1_19_3
[04:25:45] [Server thread/INFO]: [BigDoorsPhysics] Registering Events
[04:25:45] [Server thread/INFO]: [BigDoorsPhysics] Registering Commands
[04:25:45] [Server thread/INFO]: [BigDoorsPhysics] Enabling ProtocolLib Support
[04:25:45] [Server thread/INFO]: [CustomDrops] Enabling CustomDrops v1.17.1
[04:25:45] [Server thread/INFO]: [AnnouncerPlus] Enabling AnnouncerPlus v1.3.6
[04:25:46] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to Tsunami Realms - Minecraft: Java Edition server.
[04:25:46] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.1.9
[04:25:46] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[04:25:46] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[04:25:46] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[04:25:46] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[04:25:46] [Server thread/INFO]: [ItemEdit] placeholders:
[04:25:46] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[04:25:46] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[04:25:46] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[04:25:46] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[04:25:46] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[04:25:46] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[04:25:46] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[04:25:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[04:25:46] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[04:25:46] [Server thread/INFO]: [ItemEdit] # Enabled (took 42 ms)
[04:25:46] [Server thread/INFO]: [GUIPlus] Enabling GUIPlus v2.9
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.8.5
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 section configs from /sections/
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 shop configs from /shops/
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Updating Shop settings...
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.20.2...
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to ROSESTACKER in config
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: RoseStacker found, integrating...
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using RoseStacker as spawner provider.
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[04:25:46] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Providers not enabled yet, waiting...
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.8.9
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Initializing build 1019 by Mats
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Skipped 37/37 migrations.
[04:25:46] [Server thread/INFO]: [OpenAudioMc] ModuleLoaderService: Loading modules from /home/container/plugins/OpenAudioMc/modules
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Using networking class com.craftmend.openaudiomc.spigot.modules.proxy.service.ProxyNetworkingService
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Initializing socket connector
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Starting authentication module
[04:25:46] [Server thread/INFO]: [OpenAudioMc] This server already has an account, skipping sign up.
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Adding spigot tables
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Alias
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (alias<->Alias.java)
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Registering storage table for ClientDataStore
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MojangProfile
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Registering storage table for RegionProperties
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Speaker
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Registering storage table for StoredWorldChunk
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Registering storage table for TimedRegionProperties
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[04:25:46] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MediaRule
[04:25:46] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Initializing account details
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Loading aliases...
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Loaded 0 aliases
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Detected version type: MODERN
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Enabling the 1.13 speaker system
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Starting redstone speaker tick task with interval 5 ticks
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Playlist
[04:25:47] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (playlists<->Playlist.java)
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Registering storage table for PlaylistEntry
[04:25:47] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (playlist_entries<->PlaylistEntry.java)
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Plugin WorldGuard is already enabled, running handler
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Enabling the newer 1.13 regions
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Scanning 0 regions for duplicates (out of 0 total regions)
[04:25:47] [Server thread/INFO]: [OpenAudioMc] No duplicate regions found, skipping cleanup...
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Plugin PlaceholderAPI is already enabled, running handler
[04:25:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oa [1.0.0]
[04:25:47] [Server thread/INFO]: [OpenAudioMc] Starting and loading took 51295MS
[04:25:47] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[04:25:47] [Server thread/INFO]: Starting remote control listener
[04:25:47] [Server thread/INFO]: Thread RCON Listener started
[04:25:47] [Server thread/INFO]: RCON running on 0.0.0.0:25575
[04:25:47] [Server thread/INFO]: Running delayed init tasks
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[04:25:47] [Craft Scheduler Thread - 5 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[04:25:47] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[04:25:47] [Server thread/INFO]: [Iris]: Server type & version: git-Paper-318 (MC: 1.20.2)
[04:25:47] [Server thread/INFO]: [Iris]: Purpur is recommended to use with iris.
[04:25:47] [Server thread/INFO]: [Iris]: Server OS: Linux (amd64)
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ant.bbmodel.
[04:25:47] [Craft Scheduler Thread - 28 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[04:25:47] [Craft Scheduler Thread - 56 - Vault/INFO]: [Vault] Checking for Updates ... 
[04:25:47] [Craft Scheduler Thread - 30 - Quests/INFO]: [Quests] A new version 3.15 was found on Spigot (your version: 3.14.2-3345d07). Please update me! <3 - Link: https://get.leonardobishop.com/quests
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ant_farm.bbmodel.
[04:25:47] [Craft Scheduler Thread - 22 - DeluxeCombat/INFO]: [DeluxeCombat] Successfully fetched 8 marketplace items from the internet!
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ant_pile.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing armadillo.bbmodel.
[04:25:47] [Craft Scheduler Thread - 4 - CMILib/INFO]: New version of CMILib was detected. Please update it
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing astral_projection.bbmodel.
[04:25:47] [Server thread/INFO]: [Iris]: Server Cpu: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz
[04:25:47] [Craft Scheduler Thread - 56 - Vault/INFO]: [Vault] No new version available
[04:25:47] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: ProjectJerqo (561002)
[04:25:47] [Craft Scheduler Thread - 44 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[04:25:47] [Craft Scheduler Thread - 31 - PinataParty/INFO]: [PinataParty] v2.63.12 is available! You are running v2.63.8!
[04:25:47] [Craft Scheduler Thread - 31 - PinataParty/INFO]: [PinataParty] Download it here: https://www.spigotmc.org/resources/59318/
[04:25:47] [Craft Scheduler Thread - 12 - RoseStacker/INFO]: [RoseStacker] Fetched 128 translation locales.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing baboon_chick.bbmodel.
[04:25:47] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loaded 79 holograms!
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing baby_giant.bbmodel.
[04:25:47] [Craft Scheduler Thread - 46 - EconomyShopGUI-Premium/INFO]: [EconomyShopGUI-Premium] [INFO]: There is an update available for EconomyShopGUI Premium, you are running v5.8.5 but found v5.9.5.
[04:25:47] [Craft Scheduler Thread - 46 - EconomyShopGUI-Premium/INFO]: [EconomyShopGUI-Premium] [INFO]: Download using command /eshop update
[04:25:47] [Craft Scheduler Thread - 11 - RoseStacker/INFO]: [RoseGarden] An update for RoseStacker (v1.5.20) is available! You are running v1.5.17.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing baby_hatchling.bbmodel.
[04:25:47] [Craft Scheduler Thread - 23 - LootChest/INFO]: [LootChest] A new version 2.4.0 was found on Spigot (your version: 2.3.9). Please update me! <3 - Link: https://www.spigotmc.org/resources/lootchest.61564/history
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing baby_shadow.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing balloon_bundle.bbmodel.
[04:25:47] [Craft Scheduler Thread - 33 - AdvancedEnderchest/INFO]: [AdvancedEnderchest] Database connected: 213.170.135.34
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing balloon_chicken.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing balloon_creeper.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing balloon_ghast.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing balloon_pig.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing barrel_explosive.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing barrel_poison.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing barreleye_fish.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing blinding_love.bbmodel.
[04:25:47] [Craft Scheduler Thread - 37 - LuckyPouches/INFO]: Pouch 》 There is a new version available, Your version 1.3.7 new version 1.4.0
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing boulder.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bubble_burst.bbmodel.
[04:25:47] [Craft Scheduler Thread - 33 - AdvancedEnderchest/INFO]: [AdvancedEnderchest] Database wait_timeout = 28800s
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bug_catcher.bbmodel.
[04:25:47] [Server thread/INFO]: [Iris]: Process Threads: 16
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bug_rock.bbmodel.
[04:25:47] [Server thread/INFO]: [Iris]: Process Memory: 31296 MB
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bug_rock_parts.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Server thread/INFO]: [Iris]: Free DiskSpace: 826 GB
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bunk_spiderling.bbmodel.
[04:25:47] [Server thread/INFO]: [Iris]: Bukkit version: 1.20.2-R0.1-SNAPSHOT
[04:25:47] [Server thread/INFO]: [Iris]: Java version: 17
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing butterfly.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing butterfly_2.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing butterfly_display.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_cavespider.bbmodel.
[04:25:47] [Server thread/INFO]: [Iris]: Custom Biomes: 165
[04:25:47] [Server thread/INFO]: [Iris]: Version Information: git-Paper-318 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
[04:25:47] [Server thread/INFO]: [Iris]: We recommend using Purpur for the best experience with Iris.
[04:25:47] [Server thread/INFO]: [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
[04:25:47] [Server thread/INFO]: [Iris]: Plugins that work on Spigot / Paper work on Purpur.
[04:25:47] [Server thread/INFO]: [Iris]: You can download it here: https://purpurmc.org
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_creeper.bbmodel.
[04:25:47] [Server thread/INFO]: [Iris]: Custom Dimensions: 2
[04:25:47] [Server thread/INFO]: [Iris]:   rrtoverworld v500
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_creeper_cactus.bbmodel.
[04:25:47] [Server thread/INFO]: [Iris]:   overworld v3900
[04:25:47] [Craft Scheduler Thread - 9 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[04:25:47] [Craft Scheduler Thread - 9 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[04:25:47] [Craft Scheduler Thread - 9 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.4.377
[04:25:47] [Craft Scheduler Thread - 9 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.4.402
[04:25:47] [Craft Scheduler Thread - 9 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_creeper_dripstone.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_creeper_grass.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_creeper_snow.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_creeper_stone.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_skeleton.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_skeleton_gibs.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_spider.bbmodel.
[04:25:47] [Server thread/INFO]: [Iris]: 

            @@@@@@@@@@@@@@@@@
         @@&&&&&&&&&&&&&&&   .(((()))).                     
        @@@&&&&&&&&&&&&&  .((((((())))))).                  
        @@@&&&&&&&&&&&&  ((((((((()))))))))                @
        @@@&&&&@@@@@&    ((((((((-)))))))))               @@
        @@@&&            ((((((({ }))))))))            &&@@@     Iris
        @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
        @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v3.2.0-1.19.2-1.20.4
                          '((((((()))))))'  &&&&&&&&&&&&&@@@
                             '(((())))'   &&&&&&&&&&&&&&&@@
                                       @@@@@@@@@@@@@@@@@

[04:25:47] [Server thread/INFO]: [Iris]: Iris is running Stable
[04:25:47] [Server thread/INFO]: [Iris]: 2 World: Main | Generator: rrtoverworld
[04:25:47] [Server thread/INFO]: [Iris]: Preparing Spawn for Main' using Iris:rrtoverworld...
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bv_spiderjockey.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing cacti.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing camel.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_aqua.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_bone.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_forest.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_golden.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_ice.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_light.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_magma.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_shadow.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_wind.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing chest_wooden.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing claymore.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing coily.bbmodel.
[04:25:47] [Craft Scheduler Thread - 35 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.0.7] New update available. Your version: 3.2.0.7, latest version: 3.2.1.1
[04:25:47] [Craft Scheduler Thread - 35 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.0.7] Download plugin here: https://groupez.dev/resources/1
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing colorful_explosion.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing colossalaxolotl.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing concussion.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -9.541664367526768E-15 ]
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -9.541664367526768E-15 ]
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing cracko.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing digital_disintegration.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dirtdevil.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing display_firefly.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dissolve_into_ash.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_sentinel.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_sentinel_dragonform.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_sentinel_pet.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dung_beetle.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dung_beetle_display.bbmodel.
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:47] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing earth_crate.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing employee.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing empty_display.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing energy_dissipation.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing eyeless_pup.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing feather_scatter.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing fire_crate.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -1.5902773592947552E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone4 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - 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. [ -1.5902773592947552E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone5 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone7 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -1.5902773592947552E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone6 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing fireaxolotl.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing firefly.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing fish_school.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing football_fish.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ghost_girl.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing giantzombie.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_banner.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_chair.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_chandelier.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_chandelier_big.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_dinner_table.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_lamp.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_stool.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_table.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_throne.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_torch.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_vase.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_vase_big.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glacial_wardrobe.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing glass_shatter.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing hammerhead_shark.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing heavenly_punishment.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing hoarding_grub.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing hornytoad.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_shatter.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing jacky.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_annihilation.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_area_51.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_beep_beep.bbmodel.
[04:25:48] [Server thread/INFO]: -------- World Settings For [Main] --------
[04:25:48] [Server thread/INFO]: View Distance: 10
[04:25:48] [Server thread/INFO]: Item Merge Radius: 2.5
[04:25:48] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:25:48] [Server thread/INFO]: Mob Spawn Range: 6
[04:25:48] [Server thread/INFO]: Item Despawn Rate: 6000
[04:25:48] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:25:48] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:25:48] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:25:48] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[04:25:48] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[04:25:48] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[04:25:48] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[04:25:48] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[04:25:48] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:25:48] [Server thread/INFO]: Max TNT Explosions: 100
[04:25:48] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:25:48] [Server thread/INFO]: Simulation Distance: 7
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_black_bone.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names head.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_crushing_fist.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_great_extinction.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_hazardous_solution.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_peace_out.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_smith_recipe.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names head.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kfx_space_trip.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ladybug.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone body has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 67.5 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone body has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ladybug_display.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bug has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 67.5 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bug has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ladybug_parts.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone body has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 67.5 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone body has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing log.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_evoker.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_evoker_fang.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_pillager.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_ravager.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_vindicator.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_witch.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_yukio.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_yukio_damage.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_yukio_egg.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_yukio_falling_ice.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_yukio_iceshards.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_yukio_pet.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lunartic_execution.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing manta_ray.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing marlin.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mega_warden.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mega_warden_damage.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mega_warden_hidden.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mega_warden_pet.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mega_warden_rocks.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mimic.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing moth_atlas.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing moth_atlas_display.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mudkipaxolotl.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nautilus.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing oar_fish.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_copper.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_diamond.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_dragonite.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_emerald.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_gold.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_iron.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_ruby.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_sapphire.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ore_topaz.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing pebbles_1.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing pebbles_2.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing pharaoh.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing plague.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing praying_mantis.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing praying_mantis_display.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing praying_mantis_parts.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing rattler.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing runestone_heal.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing runestone_resistance.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing runestone_speed.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing runestone_strength.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sand_dissolve.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing scarab.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sea_horse_pink.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sea_horse_purple.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sea_horse_red.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sea_horse_teal.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sea_horse_yellow.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shock_bees.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing slimeling.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing snail.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing snail_display.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing snare_grub.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing tarantula.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing tarantula_display.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing thumpling.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_ender_dragon.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone left_head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_pool.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_skull.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone left_head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_skull_2ndphase.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_still.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone left_head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_terror.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing tumbleweed.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vase_common.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vase_small.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vase_tall.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vulture.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing water_crate.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wendigo.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wendigo_cow.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wendigo_heart.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wheelchair.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wind_crate.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wormy.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing zebra_turkey_fish.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing zombie.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing zombie_ground.bbmodel.
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:48] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing zombie_parts.bbmodel.
[04:25:49] [Server thread/INFO]: [Iris]: Mantle Size: 29 Chunks
[04:25:49] [Server thread/INFO]: [Iris]:   Object Mantle Size: 113 (8)
[04:25:49] [Server thread/INFO]: [Iris]:   Jigsaw Mantle Size: 143 (9)
[04:25:49] [Server thread/INFO]: [Iris]:   Carving Mantle Size: 460 (29)
[04:25:49] [Server thread/INFO]: [Iris]: Loaded Prefetch Cache to reduce generation disk use.
[04:25:49] [Server thread/INFO]: [Iris]: Initializing Engine: Main/rrtoverworld (IrisRange(min=-64.0, max=1024.0) height) Seed: 1337
[04:25:49] [Server thread/INFO]: [Iris]: Injected Iris Biome Source into Main
[04:25:49] [Server thread/INFO]: Preparing start region for dimension minecraft:main
[04:25:49] [Server thread/INFO]: Time elapsed: 633 ms
[04:25:49] [Server thread/INFO]: [WorldGuard] (Main) TNT ignition is PERMITTED.
[04:25:49] [Server thread/INFO]: [WorldGuard] (Main) Lighters are PERMITTED.
[04:25:49] [Server thread/INFO]: [WorldGuard] (Main) Lava fire is PERMITTED.
[04:25:49] [Server thread/INFO]: [WorldGuard] (Main) Fire spread is UNRESTRICTED.
[04:25:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Main'
[04:25:49] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
[04:25:49] [Server thread/INFO]: [QuickShop] Loading shops from the database...
[04:25:49] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
[04:25:49] [Server thread/INFO]: [QuickShop] Total           shops: 0
[04:25:49] [Server thread/INFO]: [QuickShop] Valid           shops: 0
[04:25:49] [Server thread/INFO]: [QuickShop] Pending              : 0
[04:25:49] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
[04:25:49] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 0
[04:25:49] [Server thread/INFO]: [QuickShop] Done! Used 0ms to loaded shops in database.
[04:25:49] [Server thread/INFO]: [Iris]: Loaded Main!
[04:25:49] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[04:25:50] [Server thread/INFO]: [TownyChat] -******* TownyChat enabled *******-
[04:25:50] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[04:25:50] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[04:25:50] [Server thread/WARN]: Cannot load file: /contents/samurai/configs/samurai_items/items.yml
[04:25:50] [Server thread/WARN]: [ItemsAdder] Error: while parsing a block mapping
 in 'reader', line 32, column 5:
        Kama_name: 》KA1 《
        ^
expected <block end>, but found '<anchor>'
 in 'reader', line 32, column 23:
        Kama_name: 》KA1 《
                          ^

[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet1. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET1' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet2. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET2' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet3. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET3' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet4. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET4' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet5. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET5' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet6. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET6' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet7. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET7' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet8. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET8' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-helmet9. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_HELMET9' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate1. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE1' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate2. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE2' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate3. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE3' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate4. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE4' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate5. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE5' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate6. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE6' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate7. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE7' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate8. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE8' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:50] [Server thread/ERROR]: [ItemsAdder] Error loading MMOItems integration for item samurai:samurai_items-chestplate9. Please check if the MMOItem of type 'ARMOR' and id 'SAMURAI_CHESTPLATE9' exists in MMOItems plugin. File: /contents/samurai/configs/samurai_items/armor.yml
[04:25:51] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'generic' for item mtno:neon_dagger
[04:25:51] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'generic' for item mtno:neon_sickle
[04:25:51] [Server thread/INFO]: [BigDoors] Checking for updates...
[04:25:51] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (CMIEconomy)
[04:25:51] [Server thread/INFO]: [Chunky] No tasks to continue.
[04:25:51] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
[04:25:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [1.0.0]
[04:25:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.14.2-3345d07]
[04:25:51] [ForkJoinPool.commonPool-worker-15/INFO]: [BigDoors] No new updates available.
[04:25:51] [Server thread/INFO]: [Quests] 35 task types have been registered.
[04:25:51] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[04:25:51] [Server thread/INFO]: [Quests] 984 quests have been registered.
[04:25:52] [Server thread/INFO]: Can't find player with this name! ([name])
[04:25:52] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[04:25:52] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[04:25:52] [Server thread/ERROR]: [Citizens] An exception occurred while the trait meg_model was spawning for NPC ID 79.
[04:25:52] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "com.ticxo.modelengine.api.utils.data.io.SavedData.getString(String)" because "data" is null
[04:25:52] [Server thread/WARN]:     at ModelEngine-4.0.5.jar//com.ticxo.modelengine.core.data.DataUpdater.convertToSavedData(DataUpdater.java:32)
[04:25:52] [Server thread/WARN]:     at ModelEngine-4.0.5.jar//com.ticxo.modelengine.core.citizens.ModelTrait.onSpawn(ModelTrait.java:62)
[04:25:52] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.CitizensNPC$1.accept(CitizensNPC.java:377)
[04:25:52] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.CitizensNPC$1.accept(CitizensNPC.java:344)
[04:25:52] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:420)
[04:25:52] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:189)
[04:25:52] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[04:25:52] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:606)
[04:25:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[04:25:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[04:25:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1097)
[04:25:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[04:25:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:840)
[04:25:52] [Server thread/INFO]: [Citizens] Loaded 39 NPCs.
[04:25:52] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'selff': Failed to load custom targeter SELFF
[04:25:52] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[04:25:52] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[04:25:52] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition lasthitbox
[04:25:52] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: lasthitbox{h=headbox}
[04:25:52] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[04:25:52] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[04:25:52] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition lasthitbox
[04:25:52] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: lasthitbox{h=headbox}
[04:25:52] [Server thread/INFO]: [QuickShop] Using economy system: CMIEconomy
[04:25:53] [Server thread/INFO]: Can't find player with this name! ([name])
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iris [3.2.0-1.19.2-1.20.4]
[04:25:53] [Server thread/INFO]: [KixsChatGames Updater] You are running the latest version of KixsChatGames.
[04:25:53] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.9.3, you're on: 4.9.2
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: Animations [1.0.5]
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[04:25:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[04:25:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[04:25:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to a missing plugin: VotingPlugin
[04:25:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion gpflags due to a missing plugin: GriefPreventionFlags
[04:25:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion multiverse due to a missing plugin: Multiverse-Core
[04:25:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion craftconomy due to a missing plugin: Craftconomy3
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0]
[04:25:53] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion mcmmo. Identifier is already in use.
[04:25:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion mcmmo due to an unknown issue.
[04:25:53] [Server thread/INFO]: 5 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[04:25:53] [Server thread/INFO]: Done (61.337s)! For help, type "help"
[04:25:53] [Server thread/INFO]: Timings Reset
[04:25:53] [Server thread/INFO]: [CMI] DiscordSRV found. (Loaded: true)
[04:25:53] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (2 methods)
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Loaded 516 items
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 97/6608 font_images
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 26 categories
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[04:25:53] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://213.170.135.34:8255/generated.zip
[04:25:53] [Server thread/INFO]: Can't find player with this name! ([name])
[04:25:53] [Server thread/INFO]: Can't find player with this name! ([name])
[04:25:53] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled ItemsAdder hook...
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[04:25:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[04:25:53] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
[04:25:53] [Server thread/INFO]: [ItemsAdder] Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
[04:25:53] [Server thread/INFO]: [Mythic] Reloading plugin...
[04:25:54] [Server thread/INFO]: [MythicMobs] Loading Packs...
[04:25:54] [Server thread/INFO]: [MythicMobs] Loading Items...
[04:25:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item yukio_head
[04:25:54] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/yukio.yml
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Error Message: Material type 'INC_SAC' not found
[04:25:54] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[04:25:54] [Server thread/INFO]: [MythicMobs] Loading Skills...
[04:25:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mob yukio_sword
[04:25:54] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/yukio.yml
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not load MythicMob yukio_sword! No Type specified.
[04:25:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mob yukio_egg
[04:25:54] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/yukio.yml
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not load MythicMob yukio_egg! No Type specified.
[04:25:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mob yukio_head
[04:25:54] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/yukio.yml
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not load MythicMob yukio_head! No Type specified.
[04:25:54] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[04:25:54] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[04:25:54] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[04:25:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Skill: YUKIO_sword_ability_fx | File: /home/container/plugins/MythicMobs/Skills/yukio_items.yml
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=YUKIO_itemiceshard;a=1;r=1;s=true}
[04:25:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Skill: YUKIO_itemiceshards | File: /home/container/plugins/MythicMobs/Skills/yukio_items.yml
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill YUKIO_iceshards_damage
[04:25:54] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=YUKIO_iceshards_damage}
[04:25:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 179 mobs.
[04:25:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 19 vanilla mob overrides.
[04:25:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[04:25:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 852 skills.
[04:25:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 94 random spawns.
[04:25:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 277 mythic items.
[04:25:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 19 drop tables.
[04:25:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 12 mob spawners.
[04:25:55] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[04:25:56] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[04:25:56] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Loading inventories in progress...
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory auction !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory buyconfirm !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory removeconfirm !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory expire !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory buying !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory items !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory categories !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory sell !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory sellshow !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory category !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory adminremove !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory search !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Successful loading of the inventory show !
[04:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.2.0.7] Inventories loading complete.
[04:25:56] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled HeadDatabase hook...
[04:25:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
[04:25:56] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading item stock provider...
[04:25:56] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading limited selling provider...
[04:25:56] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading all items...
[04:25:56] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Rotating items inside shop BlackMarket now because the rotation interval ended at 2024-03-22 04:24:36 when server was offline...
[04:25:56] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully enabled rotating shop BlackMarket, with a rotating interval of 10s
[04:25:56] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed delayed loading.
[04:25:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.27.0]
[04:25:56] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7151ms or 143 ticks behind
[04:25:56] [Server thread/INFO]: Can't find player with this name! ([name])
[04:25:56] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[04:25:56] [Server thread/INFO]: Can't find player with this name! ([name])
[04:25:56] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'selff': Failed to load custom targeter SELFF
[04:25:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[04:25:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[04:25:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition lasthitbox
[04:25:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: lasthitbox{h=headbox}
[04:25:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[04:25:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[04:25:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition lasthitbox
[04:25:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: lasthitbox{h=headbox}
[04:25:56] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "MEGAWARDEN_pet_despawn" to the pet "MegaWarden", because this skill doesn't exist.
[04:25:56] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "PILLAGERS_ravager_mount_despawn" to the pet "PILLAGERS_ravager_mount", because this skill doesn't exist.
[04:25:56] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "YUKIO_pet_despawn" to the pet "Yukio", because this skill doesn't exist.
[04:25:57] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib, mcMMO, AdvancedEnchantments, WorldGuard, PlaceholderAPI, MythicMobs, Towny, CMI, LuckPerms, Vault, ItemsAdder.
[04:25:57] [Server thread/INFO]: [AdvancedItems] Successfully hooked into ProtocolLib, mcMMO, AdvancedEnchantments, WorldGuard, PlaceholderAPI, MythicMobs, Towny, CMI, ItemsAdder.
[04:25:57] [Server thread/INFO]: Can't find player with this name! ([name])
[04:25:57] [Server thread/INFO]: [LootChest] Loading chests...
[04:25:57] [Server thread/INFO]: [LootChest] Loaded 8 Lootchests in 5 miliseconds
[04:25:57] [Server thread/INFO]: [LootChest] Starting LootChest timers asynchronously...
[04:25:57] [Server thread/INFO]: [LootChest] Plugin loaded
[04:25:57] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[04:25:57] [Craft Scheduler Thread - 20 - DeluxeCombat/INFO]: [DeluxeCombat] Checking for new updates...
[04:25:57] [Craft Scheduler Thread - 20 - DeluxeCombat/INFO]: [DeluxeCombat] You're running the newest version of DeluxeCombat
[04:25:57] [Server thread/INFO]: Could not register recipe for crafting book: Recipe of name 'recipe_parkaleggings_shaped_parkaleggings_shaped' already registered.
[04:25:57] [Server thread/INFO]: Could not register recipe for crafting book: Recipe of name 'recipe_parkahelmet_shaped_parkahelmet_shaped' already registered.
[04:25:57] [Server thread/INFO]: Could not register recipe for crafting book: Recipe of name 'recipe_parkaboots_shaped_parkaboots_shaped' already registered.
[04:25:57] [Server thread/INFO]: Could not register recipe for crafting book: Recipe of name 'recipe_parkachestplate_shaped_parkachestplate_shaped' already registered.
[04:25:57] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[04:25:57] [Server thread/INFO]: [MythicMobs] Loaded 277 items.
[04:25:57] [Craft Scheduler Thread - 54 - Iris/INFO]: [Iris]: Checking Data Packs...
[04:25:58] [Craft Scheduler Thread - 54 - Iris/INFO]: [Iris]: Data Packs Setup!
[04:26:01] [Server thread/INFO]: [Generation] Starting Pack Generator...
[04:26:01] [Server thread/INFO]: [Generation] Processing ModelEngine Pack...
[04:26:01] [Server thread/INFO]: [Generation] Generating Custom Blocks...
[04:26:01] [Server thread/INFO]: [Generation] Generating Items...
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/minecraft/textures/item/armor/parka_leggings.png.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/item/armor/pillager_armor_leggings.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/item/armor/pillager_armor_chestplate.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/minecraft/texturesitem/armor/parka_boots.png.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/minecraft/texturesitem/armor/parka_chestplate.png.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/item/armor/pillager_armor_boots.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/minecraft/textures/item/armor/parka_leggings.png.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Duplicate Model Detected on Item ParkaLeggings: LEATHER_LEGGINGS:10013
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/item/armor/pillager_armor_leggings.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Duplicate Model Detected on Item PillagerLeggings: IRON_LEGGINGS:102
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/item/armor/pillager_armor_chestplate.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Duplicate Model Detected on Item PillagerChestplate: IRON_CHESTPLATE:101
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/minecraft/texturesitem/armor/parka_boots.png.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Duplicate Model Detected on Item ParkaBoots: LEATHER_BOOTS:10013
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/minecraft/texturesitem/armor/parka_chestplate.png.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Duplicate Model Detected on Item ParkaChestplate: LEATHER_CHESTPLATE:10013
[04:26:01] [Server thread/WARN]: [MythicMobs] Texture File /home/container/plugins/MythicMobs/assets/textures/item/armor/pillager_armor_boots.png not found
[04:26:01] [Server thread/WARN]: [MythicMobs] Duplicate Model Detected on Item PillagerBoots: IRON_BOOTS:103
[04:26:01] [Server thread/INFO]: [Generation] Generating Optifine Armor...
[04:26:01] [Server thread/INFO]: [Generation] Assigning Materials...
[04:26:01] [Server thread/INFO]: [Generation] Generating Sounds...
[04:26:01] [Server thread/INFO]: [Generation] Linking Custom Blocks...
[04:26:01] [Server thread/INFO]: [Generation] Generating Atlas...
[04:26:01] [Server thread/INFO]: [Generation] Zipping Pack...
[04:26:02] [Server thread/INFO]: [Generation] Generation Completed in 1642ms
[04:26:03] [Server thread/INFO]: [DeluxeCombat] Addon CMI Addon (v.1.0.4, timderspieler) has been installed successfully!
[04:26:03] [Server thread/INFO]: [DeluxeCombat] Hook CMI (9.5.0.9, Combat Hook) has been registered.
[04:26:03] [Server thread/INFO]: [DeluxeCombat] Addon mcMMO Addon (v.1.0.0, timderspieler) has been installed successfully!
[04:26:03] [Server thread/INFO]: [DeluxeCombat] Hook mcMMO (2.1.219, Common Hook) has been registered.
[04:26:03] [Server thread/INFO]: [DeluxeCombat] Addon WorldGuard Addon (v.1.0.2, timderspieler) has been installed successfully!
[04:26:03] [Server thread/INFO]: [DeluxeCombat] Hook WorldGuard Addon (>=7.0.0, WorldGuard Implementation) has been registered.
[04:26:03] [Server thread/INFO]: [DeluxeCombat] Hooked into Towny, DeluxeCombatFlags, CMI, AdvancedEnchantments, MMOItems, ProtocolLib, LibsDisguises, PlaceholderAPI, Citizens, BetterRTP, Vault, mcMMO, Vault and WorldGuard.
[04:26:42] [User Authenticator #0/INFO]: UUID of player ProjectJerqo is 7f94a4ec-3324-4020-a440-ec2819f5cae5
[04:26:43] [Server thread/INFO]: ProjectJerqo[/73.37.60.54:45042] logged in with entity id 3572 at ([Island]-41.65253672535196, 58.15656836181947, -35.53238971283533)
[04:26:43] [Server thread/INFO]: [ChatItem] Loading ViaVersion support ...
[04:26:55] [Server thread/INFO]: ProjectJerqo issued server command: /pl
[04:27:12] [Server thread/INFO]: ProjectJerqo issued server command: /version Denizen
[04:27:13] [Server thread/INFO]: ProjectJerqo issued server command: /version Denizen
[04:27:15] [Server thread/INFO]: ProjectJerqo issued server command: /version Denizen
[04:27:15] [Server thread/INFO]: ProjectJerqo issued server command: /version Denizen
[04:27:16] [Server thread/INFO]: ProjectJerqo issued server command: /version Denizen
[04:27:26] [Server thread/INFO]: ProjectJerqo issued server command: /plugman check Denizen
[04:27:48] [Server thread/INFO]: ProjectJerqo issued server command: /plugman reload Denizen
[04:27:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[04:27:49] [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
[04:27:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[04:27:49] [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
[04:27:49] [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
[04:27:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[04:27:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[04:27:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[04:27:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[04:27:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[04:27:49] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[04:27:49] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[04:27:49] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1374), impl for Spigot v1.3.0-SNAPSHOT (build 1803-REL) 
[04:27:49] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.10 
[04:27:49] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[04:27:49] [Server thread/ERROR]: Error occurred while enabling Denizen v1.3.0-SNAPSHOT (build 1803-REL) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_20_R3/inventory/CraftInventoryCustom
    at com.denizenscript.denizen.nms.v1_20.Handler.<clinit>(Handler.java:276) ~[Denizen-1.3.0-b1803-REL.jar:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:375) ~[?:?]
    at com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:55) ~[Denizen-1.3.0-b1803-REL.jar:?]
    at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:154) ~[Denizen-1.3.0-b1803-REL.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.2.jar:git-Paper-318]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at com.rylinaux.plugman.util.PaperPluginUtil.load(PaperPluginUtil.java:421) ~[PlugManX (3).jar:?]
    at com.rylinaux.plugman.util.PaperPluginUtil.load(PaperPluginUtil.java:374) ~[PlugManX (3).jar:?]
    at com.rylinaux.plugman.util.PaperPluginUtil.reload(PaperPluginUtil.java:526) ~[PlugManX (3).jar:?]
    at com.rylinaux.plugman.command.ReloadCommand.execute(ReloadCommand.java:125) ~[PlugManX (3).jar:?]
    at com.rylinaux.plugman.PlugManCommandHandler.onCommand(PlugManCommandHandler.java:97) ~[PlugManX (3).jar:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.dispatchCommand(CraftServer.java:991) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.craftbukkit.v1_20_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.20.2.jar:git-Paper-318]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:265) ~[paper-1.20.2.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:330) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:314) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2208) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$19(ServerGamePacketListenerImpl.java:2168) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1324) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1301) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1294) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1272) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1160) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-318]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_20_R3.inventory.CraftInventoryCustom
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 40 more
[04:27:49] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[04:36:53] [Votifier epoll worker/ERROR]: [Votifier] Unable to process vote from /45.83.65.135:21150
com.vexsoftware.votifier.io.netty.handler.codec.DecoderException: com.vexsoftware.votifier.util.QuietException: Could not decrypt data from /45.83.65.135:21150 as it is too long. Attack?
    at com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:471) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.handlerRemoved(ByteToMessageDecoder.java:253) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:508) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:440) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:792) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:475) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:378) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[nuvotifier.jar:?]
    at com.vexsoftware.votifier.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[nuvotifier.jar:?]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: com.vexsoftware.votifier.util.QuietException: Could not decrypt data from /45.83.65.135:21150 as it is too long. Attack?