Paste #133423: my beautiful logs but very long

Date: 2025/05/17 14:34:06 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[23:31:50] [ServerMain/INFO]: [bootstrap] Running Java 21 (Java HotSpot(TM) 64-Bit Server VM 21.0.2+13-LTS-58; Oracle Corporation null) on Windows 11 10.0 (amd64)
[23:31:50] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.3-83-ver/1.21.3@d6c81da (2025-03-28T15:57:09Z) for Minecraft 1.21.3
[23:31:51] [ServerMain/WARN]: [oshi.driver.windows.perfmon.PerfmonDisabled] Invalid registry value type detected for PerfOS counters. Should be REG_DWORD. Ignoring: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfOS\Performance\Disable Performance Counters.
[23:31:51] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[23:31:52] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[23:31:52] [ServerMain/INFO]: [PluginInitializerManager] Initialized 57 plugins
[23:31:52] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - EconomyShopGUI (6.12.2)
[23:31:52] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (56):
 - AlonsoLevels (2.3.2-BETA), AlonsoTags (2.2.1-BETA), AnimationsCore (2.3.2), AxTrade (1.14.1), AxiomPaper (4.0.3+1.21.3), BattlePass (4.8.18), BetterProfiles (1.6-BETA), ChatManager (3.7.7), Citizens (2.0.37-SNAPSHOT (build 3645)), Codex (2.3.3), DeluxeMenus (1.14.0-Release), Essentials (2.20.1), EssentialsSpawn (2.20.1), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1104;c0d1ea6), FriendSystemGUI (4.9.8), GriefPrevention (16.18), ItemJoin (6.1.2-RELEASE-b1076), ItemsAdder (4.0.10-hotfix-1), JSEngine (3.2.2), LM_Items (1.2.11), LibsDisguises (11.0.5-SNAPSHOT), LogoutAvatars (2.0.0), LoneLibs (1.0.65), LuckPerms (5.4.40), MCPets (4.1.2), MIReplacer (3.2.2), MMOCore (1.13), MMOItems (6.10), MiniMOTD (2.1.5), ModelEngine (R4.0.8), Multiverse-Core (4.3.16), MythicHUD (1.2.2-SNAPSHOT), MythicLib (1.7.1-SNAPSHOT), MythicMobs (5.8.2-6a2683d7), MythicMobsGUI (1.11.0), NBTAPI (2.14.1), OpenAudioMc (6.10.6), PlaceholderAPI (2.11.6), PlayerAuctions (1.30.2), PlayerPoints (3.2.6), ProtocolLib (5.4.0-SNAPSHOT-747), RPGInventory (1.6.4), Resources (2.9.1), Sentinel (2.9.0-SNAPSHOT (build 522)), TAB (5.0.3), TrMenu (3.3.0b-SNAPSHOT), TradeSystem (2.6.3), Vault (1.7.3-b131), VoxelSniper (8.12.2), Waves (1.1.21), WorldGuard (7.0.13+82fdc65), ajLeaderboards (2.7.0), goBrush (3.8.0-75), packetevents (2.8.0), packetevents (2.8.0+0931f7c9e-SNAPSHOT), zAuctionHouseV3 (3.2.3.1)
[23:31:55] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[23:31:56] [ServerMain/INFO]: Loaded 1337 recipes
[23:31:56] [ServerMain/INFO]: Loaded 1448 advancements
[23:31:56] [Server thread/INFO]: Starting minecraft server version 1.21.3
[23:31:56] [Server thread/INFO]: Loading properties
[23:31:56] [Server thread/INFO]: This server is running Paper version 1.21.3-83-ver/1.21.3@d6c81da (2025-03-28T15:57:09Z) (Implementing API version 1.21.3-R0.1-SNAPSHOT)
[23:31:57] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[23:31:57] [Server thread/INFO]: Server Ping Player Sample Count: 12
[23:31:57] [Server thread/INFO]: Using 4 threads for Netty based IO
[23:31:57] [Server thread/INFO]: [MoonriseCommon] Paper is using 3 worker threads, 1 I/O threads
[23:31:57] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[23:31:58] [Server thread/INFO]: Default game type: SURVIVAL
[23:31:58] [Server thread/INFO]: Generating keypair
[23:31:58] [Server thread/INFO]: Starting Minecraft server on *:25565
[23:31:58] [Server thread/INFO]: Using default channel type
[23:31:58] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[23:31:58] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[23:31:58] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'packetevents' for files 'plugins\packetevents-spigot-2.8.0.jar' and 'plugins\packetevents-spigot-2.7.0.jar' in 'plugins'
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[23:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\ch\ethz\globis\phtree\phtree\2.8.1\phtree-2.8.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-api\4.14.0\adventure-api-4.14.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-key\4.14.0\adventure-key-4.14.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-gson\4.14.0\adventure-text-serializer-gson-4.14.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-json\4.14.0\adventure-text-serializer-json-4.14.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.0\adventure-text-serializer-bungeecord-4.3.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-legacy\4.13.0\adventure-text-serializer-legacy-4.13.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\beer\devs\FastNbt-jar\1.4.7\FastNbt-jar-1.4.7.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\apache\httpcomponents\httpmime\4.5.14\httpmime-4.5.14.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\commons-codec\commons-codec\1.11\commons-codec-1.11.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\apache\commons\commons-math3\3.6.1\commons-math3-3.6.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\sourceforge\streamsupport\speedy-math\1.0.0\speedy-math-1.0.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\fusesource\jansi\jansi\2.4.1\jansi-2.4.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-api\4.20.0\adventure-api-4.20.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-key\4.20.0\adventure-key-4.20.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\jetbrains\annotations\26.0.2\annotations-26.0.2.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-gson\4.20.0\adventure-text-serializer-gson-4.20.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-json\4.20.0\adventure-text-serializer-json-4.20.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\option\1.1.0\option-1.1.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\jspecify\jspecify\1.0.0\jspecify-1.0.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\google\auto\service\auto-service-annotations\1.1.1\auto-service-annotations-1.1.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-commons\4.20.0\adventure-text-serializer-commons-4.20.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.20.0\adventure-text-serializer-gson-legacy-impl-4.20.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-json-legacy-impl\4.20.0\adventure-text-serializer-json-legacy-impl-4.20.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-minimessage\4.20.0\adventure-text-minimessage-4.20.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-bukkit\4.3.4\adventure-platform-bukkit-4.3.4.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-api\4.3.4\adventure-platform-api-4.3.4.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.4\adventure-text-serializer-bungeecord-4.3.4.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-facet\4.3.4\adventure-platform-facet-4.3.4.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\kyori\adventure-platform-viaversion\4.3.4\adventure-platform-viaversion-4.3.4.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\alibaba\fastjson\2.0.43\fastjson-2.0.43.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\alibaba\fastjson2\fastjson2-extension\2.0.43\fastjson2-extension-2.0.43.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\alibaba\fastjson2\fastjson2\2.0.43\fastjson2-2.0.43.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\jayway\jsonpath\json-path\2.8.0\json-path-2.8.0.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\minidev\json-smart\2.4.10\json-smart-2.4.10.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\net\minidev\accessors-smart\2.4.9\accessors-smart-2.4.9.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\ow2\asm\asm\9.3\asm-9.3.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\jeff-media\armor-equip-event\1.0.3\armor-equip-event-1.0.3.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\fr\skytasul\glowingentities\1.4.3\glowingentities-1.4.3.jar
[23:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\fr\skytasul\reflection-remapper\1.0.0\reflection-remapper-1.0.0.jar
[23:32:00] [Server thread/INFO]: [SpigotLibraryLoader] [Waves] Loading 1 libraries... please wait
[23:32:00] [Server thread/INFO]: [SpigotLibraryLoader] [Waves] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\zaxxer\HikariCP\5.1.0\HikariCP-5.1.0.jar
[23:32:00] [Server thread/INFO]: [SpigotLibraryLoader] [Waves] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[23:32:00] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib-common:1.9.23
[23:32:00] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0
[23:32:00] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib:1.9.23
[23:32:00] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0
[23:32:00] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains:annotations:13.0
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library redis.clients:jedis:4.2.3
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.apache.commons:commons-pool2:2.11.1
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.json:json:20211205
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.openjdk.nashorn:nashorn-core:15.4
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.ow2.asm:asm-commons:7.3.1
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.ow2.asm:asm-tree:7.3.1
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.ow2.asm:asm:7.3.1
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.ow2.asm:asm-util:7.3.1
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.yaml:snakeyaml:2.2
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.typesafe:config:1.4.3
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.electronwill.night-config:core:3.6.7
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.electronwill.night-config:toml:3.6.7
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.electronwill.night-config:json:3.6.7
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.typesafe:config:1.4.2
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.electronwill.night-config:hocon:3.6.7
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.apache.commons:commons-jexl3:3.2.1
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.slf4j:slf4j-api:2.0.8
[23:32:02] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.zaxxer:HikariCP:4.0.3
[23:32:03] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[23:32:03] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\fusesource\jansi\jansi\2.4.1\jansi-2.4.1.jar
[23:32:03] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[23:32:09] [Server thread/WARN]: Legacy plugin FriendSystemGUI v4.9.8 does not specify an api-version.
[23:32:09] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loading 3 libraries... please wait
[23:32:09] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[23:32:09] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\com\zaxxer\HikariCP\3.4.5\HikariCP-3.4.5.jar
[23:32:09] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library C:\Users\Lucas\Documents\Dev\1.21.3\libraries\org\slf4j\slf4j-api\1.7.25\slf4j-api-1.7.25.jar
[23:32:10] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[23:32:10] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[23:32:10] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-747
[23:32:10] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1104;c0d1ea6
[23:32:11] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@38905c81]
[23:32:11] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[23:32:11] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.8.0
[23:32:12] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[23:32:12] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.16
[23:32:12] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.5-SNAPSHOT
[23:32:12] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.2-6a2683d7
[23:32:12] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[23:32:12] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[23:32:12] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.7.1-SNAPSHOT
[23:32:12] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.7.1-20250413.145302-21 (2).jar'
[23:32:12] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_21_R2
[23:32:12] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[23:32:12] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3645)
[23:32:12] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.13
[23:32:12] [Server thread/INFO]: [MMOCore] Plugin file is called 'MMOCore-1.13 (1) (1).jar'
[23:32:12] [Server thread/ERROR]: [MMOCore] Error initializing plugin 'MMOCore-1.13 (1) (1).jar' in folder 'plugins\.paper-remapped' (Is it up to date?)
java.lang.NoSuchMethodError: 'io.lumine.mythic.lib.manager.ModifierManager io.lumine.mythic.lib.MythicLib.getModifiers()'
    at MMOCore-1.13 (1) (1).jar/net.Indyuce.mmocore.MMOCore.onLoad(MMOCore.java:119) ~[MMOCore-1.13 (1) (1).jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:561) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:289) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:12] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18
[23:32:12] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[23:32:12] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.8
[23:32:12] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.10
[23:32:12] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.10 (1).jar'
[23:32:12] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[23:32:12] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[23:32:12] [Server thread/ERROR]: [MMOItems] Error initializing plugin 'MMOItems-6.10 (1).jar' in folder 'plugins\.paper-remapped' (Is it up to date?)
java.lang.NoSuchMethodError: 'java.lang.Object io.lumine.mythic.lib.UtilityMethods.resolveEnumField(java.util.function.Function, java.util.function.Supplier, java.lang.String[])'
    at MMOItems-6.10 (1).jar/net.Indyuce.mmoitems.stat.HidePotionEffects.<clinit>(HidePotionEffects.java:29) ~[MMOItems-6.10 (1).jar:?]
    at MMOItems-6.10 (1).jar/net.Indyuce.mmoitems.ItemStats.<clinit>(ItemStats.java:224) ~[MMOItems-6.10 (1).jar:?]
    at java.base/jdk.internal.misc.Unsafe.ensureClassInitialized0(Native Method) ~[?:?]
    at java.base/jdk.internal.misc.Unsafe.ensureClassInitialized(Unsafe.java:1160) ~[?:?]
    at java.base/jdk.internal.reflect.MethodHandleAccessorFactory.ensureClassInitialized(MethodHandleAccessorFactory.java:300) ~[?:?]
    at java.base/jdk.internal.reflect.MethodHandleAccessorFactory.newFieldAccessor(MethodHandleAccessorFactory.java:140) ~[?:?]
    at java.base/jdk.internal.reflect.ReflectionFactory.newFieldAccessor(ReflectionFactory.java:145) ~[?:?]
    at java.base/java.lang.reflect.Field.acquireFieldAccessor(Field.java:1185) ~[?:?]
    at java.base/java.lang.reflect.Field.getFieldAccessor(Field.java:1164) ~[?:?]
    at java.base/java.lang.reflect.Field.get(Field.java:442) ~[?:?]
    at MMOItems-6.10 (1).jar/net.Indyuce.mmoitems.manager.StatManager.loadBuiltins(StatManager.java:72) ~[MMOItems-6.10 (1).jar:?]
    at MMOItems-6.10 (1).jar/net.Indyuce.mmoitems.MMOItems.onLoad(MMOItems.java:121) ~[MMOItems-6.10 (1).jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:561) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:289) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:12] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[23:32:12] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[23:32:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[23:32:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[23:32:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[23:32:12] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.10-hotfix-1
[23:32:12] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.12.2
[23:32:12] [Server thread/INFO]: [JSEngine] Loading server plugin JSEngine v3.2.2
[23:32:12] [Server thread/INFO]: [AlonsoTags] Loading server plugin AlonsoTags v2.2.1-BETA
[23:32:12] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.3.1
[23:32:12] [Server thread/INFO]: [Waves] Loading server plugin Waves v1.1.21
[23:32:12] [Thread-6/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[23:32:12] [Thread-6/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.14.1' Newest Version: 2.15.0'
[23:32:12] [Thread-6/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[23:32:14] [Server thread/INFO]: [VoxelSniper] Loading server plugin VoxelSniper v8.12.2
[23:32:14] [Server thread/INFO]: [TrMenu] Loading server plugin TrMenu v3.3.0b-SNAPSHOT
[23:32:14] [Server thread/WARN]: me.arasple.mc.trmenu.taboolib.common.inject.ClassVisitException: class me.arasple.mc.trmenu.taboolib.module.nms.MinecraftVersion#init: VisitorGroup{priority=0, list=[AwakeFunction(lifeCycle=NONE), AwakeFunction(lifeCycle=CONST), AwakeFunction(lifeCycle=INIT), AwakeFunction(lifeCycle=LOAD), AwakeFunction(lifeCycle=ENABLE), AwakeFunction(lifeCycle=ACTIVE), AwakeFunction(lifeCycle=DISABLE), me.arasple.mc.trmenu.taboolib.module.kether.KetherLoader@65bfdf34, me.arasple.mc.trmenu.taboolib.common.platform.command.SimpleCommandRegister@315c97ed, me.arasple.mc.trmenu.taboolib.platform.compat.PlaceholderExpansion$PlaceholderRegister@7fa34085]} (LOAD)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.inject.VisitorHandler.visitMethod(VisitorHandler.java:146)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.inject.VisitorHandler.inject(VisitorHandler.java:114)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.inject.VisitorHandler.injectAll(VisitorHandler.java:77)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.inject.VisitorHandler.lambda$init$0(VisitorHandler.java:44)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.TabooLib$1.run(TabooLib.java:79)
[23:32:14] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.TabooLib.lambda$lifeCycle$0(TabooLib.java:56)
[23:32:14] [Server thread/WARN]:     at java.base/java.util.Optional.ifPresent(Optional.java:178)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.TabooLib.lifeCycle(TabooLib.java:56)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.platform.BukkitPlugin.onLoad(BukkitPlugin.java:73)
[23:32:14] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59)
[23:32:14] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18)
[23:32:14] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39)
[23:32:14] [Server thread/WARN]:     at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40)
[23:32:14] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:561)
[23:32:14] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:289)
[23:32:14] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[23:32:14] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[23:32:14] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[23:32:14] [Server thread/WARN]: Caused by: java.lang.IllegalStateException: Unsupported Minecraft version, plugin disabled
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.module.nms.MinecraftVersion.init(MinecraftVersion.kt:206)
[23:32:14] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:733)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.library.reflex.JavaClassMethod.invoke(JavaClassMethod.kt:31)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.platform.AwakeFunction.visit(AwakeFunction.kt:13)
[23:32:14] [Server thread/WARN]:     at TrMenu-3.3.0b-SNAPSHOT.jar//me.arasple.mc.trmenu.taboolib.common.inject.VisitorHandler.visitMethod(VisitorHandler.java:144)
[23:32:14] [Server thread/WARN]:     ... 18 more
[23:32:14] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.3
[23:32:14] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
[23:32:14] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.9.0-SNAPSHOT (build 522)
[23:32:14] [Server thread/INFO]: [Resources] Loading server plugin Resources v2.9.1
[23:32:14] [Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.30.2
[23:32:15] [Server thread/INFO]: [OpenAudioMc] Loading server plugin OpenAudioMc v6.10.6
[23:32:15] [Server thread/INFO]: [MythicMobsGUI] Loading server plugin MythicMobsGUI v1.11.0
[23:32:15] [Server thread/INFO]: [MythicHUD] Loading server plugin MythicHUD v1.2.2-SNAPSHOT
[23:32:15] [Server thread/INFO]: [RPGInventory] Loading server plugin RPGInventory v1.6.4
[23:32:15] [Server thread/INFO]: [MIReplacer] Loading server plugin MIReplacer v3.2.2
[23:32:15] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.5
[23:32:15] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.2
[23:32:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[23:32:15] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[23:32:15] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[23:32:15] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[23:32:15] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[23:32:15] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.65
[23:32:15] [Server thread/INFO]: [LogoutAvatars] Loading server plugin LogoutAvatars v2.0.0
[23:32:15] [Server thread/INFO]: [LM_Items] Loading server plugin LM_Items v1.2.11
[23:32:15] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v6.1.2-RELEASE-b1076
[23:32:15] [Server thread/INFO]: [goBrush] Loading server plugin goBrush v3.8.0-75
[23:32:15] [Server thread/INFO]: [FriendSystemGUI] Loading server plugin FriendSystemGUI v4.9.8
[23:32:15] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.1
[23:32:15] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[23:32:15] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[23:32:15] [Server thread/INFO]: [Codex] Loading server plugin Codex v2.3.3
[23:32:15] [Server thread/INFO]: [ChatManager] Loading server plugin ChatManager v3.7.7
[23:32:15] [Server thread/INFO]: [BetterProfiles] Loading server plugin BetterProfiles v1.6-BETA
[23:32:15] [Server thread/INFO]: [BetterProfiles] Hex colors are available!
[23:32:15] [Server thread/INFO]: [BetterProfiles] Inventory title with support for more than 32 characters. Skipping..
[23:32:15] [Server thread/INFO]: [BetterProfiles] Old constructor for HoverEvent found! Using it..
[23:32:15] [Server thread/INFO]: [BetterProfiles] New sendTitle method found! Using it..
[23:32:15] [Server thread/INFO]: [BetterProfiles] New getItemInMainHand method found! Using it..
[23:32:15] [Server thread/INFO]: [BetterProfiles] WorldGuard found! Registering custom flag(s)..
[23:32:15] [Server thread/INFO]: [BetterProfiles] WorldGuard v7.x or newer detected. Using new methods..
[23:32:15] [Server thread/INFO]: [BetterProfiles] [WorldGuard] Successfully registered 'betterprofiles-can-view-profile' flag!
[23:32:15] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v4.8.18
[23:32:15] [Server thread/INFO]: [AxTrade] Loading server plugin AxTrade v1.14.1
[23:32:15] [Server thread/INFO]: [AxTrade] Loading library commons-math3
[23:32:15] [Server thread/INFO]: [AxTrade] Loading library caffeine
[23:32:15] [Server thread/INFO]: [AxTrade] Loading library snakeyaml
[23:32:15] [Server thread/INFO]: [AxiomPaper] Loading server plugin AxiomPaper v4.0.3+1.21.3
[23:32:15] [Server thread/INFO]: [AnimationsCore] Loading server plugin AnimationsCore v2.3.2
[23:32:15] [Server thread/INFO]: [AlonsoLevels] Loading server plugin AlonsoLevels v2.3.2-BETA
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.7.0
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[23:32:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[23:32:15] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[23:32:15] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[23:32:15] [Server thread/INFO]:         __    
[23:32:15] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[23:32:15] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[23:32:15] [Server thread/INFO]: 
[23:32:15] [Server thread/INFO]: [LuckPerms] Loading configuration...
[23:32:16] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[23:32:16] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[23:32:16] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[23:32:17] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2197ms)
[23:32:17] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[23:32:17] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[23:32:17] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[23:32:17] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[23:32:17] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[23:32:17] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-747
[23:32:17] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1104;c0d1ea6
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[23:32:17] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[23:32:17] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[23:32:17] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[23:32:17] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[23:32:17] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[23:32:18] [Server thread/WARN]: 
**********************************************
** This FastAsyncWorldEdit version does not fully support your version of Bukkit.
** You can fix this by:
** - Updating your server version (Check /version to see how many versions you are behind)
** - Updating FAWE
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**********************************************

[23:32:18] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.world.block.BlockTypesCache.<clinit>(BlockTypesCache.java:237)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.world.block.BlockTypes.init(BlockTypes.java:2281)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.world.block.BlockTypes.<clinit>(BlockTypes.java:48)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.world.block.BlockState.get(BlockState.java:156)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.world.block.BlockState.get(BlockState.java:132)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.world.registry.LegacyMapper.loadFromResource(LegacyMapper.java:124)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.world.registry.LegacyMapper.<init>(LegacyMapper.java:84)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.world.registry.LegacyMapper.getInstance(LegacyMapper.java:329)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.WorldEdit.loadMappings(WorldEdit.java:428)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:294)
[23:32:18] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:264)
[23:32:18] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[23:32:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[23:32:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[23:32:18] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[23:32:18] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[23:32:18] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[23:32:18] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290)
[23:32:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[23:32:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[23:32:18] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[23:32:18] [Server thread/WARN]: Failed to load the built-in legacy id registry
java.lang.ExceptionInInitializerError: null
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.block.BlockTypes.init(BlockTypes.java:2281) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.block.BlockTypes.<clinit>(BlockTypes.java:48) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.block.BlockState.get(BlockState.java:156) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.block.BlockState.get(BlockState.java:132) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.registry.LegacyMapper.loadFromResource(LegacyMapper.java:124) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.registry.LegacyMapper.<init>(LegacyMapper.java:84) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.registry.LegacyMapper.getInstance(LegacyMapper.java:329) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.WorldEdit.loadMappings(WorldEdit.java:428) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:294) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:264) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.RuntimeException: java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.block.BlockTypesCache.<clinit>(BlockTypesCache.java:278) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    ... 20 more
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar/com.sk89q.worldedit.world.block.BlockTypesCache.<clinit>(BlockTypesCache.java:237) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1104.jar:?]
    ... 20 more
[23:32:18] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.8
[23:32:18] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[23:32:18] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[23:32:18] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[23:32:18] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[23:32:18] [Server thread/INFO]: [JSEngine] Enabling JSEngine v3.2.2
[23:32:18] [Server thread/INFO]: [JSEngine] JSEngine version 3.2.2 is Enabled
[23:32:18] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.65
[23:32:18] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v6.1.2-RELEASE-b1076
[23:32:18] [Server thread/INFO]: Preparing level "world"
[23:32:18] [Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[23:32:18] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[23:32:18] [Server thread/INFO]: Preparing spawn area: 0%
[23:32:19] [Paper Common Worker #1/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[23:32:19] [Paper Common Worker #1/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 205,3ms
[23:32:19] [Server thread/INFO]: Preparing spawn area: 20%
[23:32:19] [Server thread/INFO]: Time elapsed: 822 ms
[23:32:19] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[23:32:19] [Server thread/INFO]: Preparing spawn area: 0%
[23:32:19] [Server thread/INFO]: Time elapsed: 74 ms
[23:32:19] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[23:32:19] [Server thread/INFO]: Preparing spawn area: 0%
[23:32:19] [Server thread/INFO]: Time elapsed: 49 ms
[23:32:19] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[23:32:19] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[23:32:19] [Server thread/INFO]: [packetevents] Enabling packetevents v2.8.0
[23:32:19] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[23:32:19] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[23:32:20] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.8.0)
[23:32:20] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[23:32:20] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[23:32:20] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[23:32:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[23:32:20] [Server thread/INFO]: [WorldGuard] Loading region data...
[23:32:20] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.16
[23:32:20] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.16" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[23:32:20] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: LobbyDragonhold
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: DarkCastleDungeon
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: PVPArena200x200
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Training
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: medievaltownbreaddd
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: floor1
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test123
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: dungeontownbr
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: ImperialKingdom
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: DjRaidVillage
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: sao
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: TheLostUnderground
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: MmoRPG
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: dungeontownbread
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: flatroom
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: map2
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: sao1201
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: KingdomHub
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: saomapp1
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: LL04
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: puzzledungeon
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: SacredGardens
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: bigmap1
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: colosseumbread
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:32:20] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[23:32:20] [Server thread/INFO]: [Multiverse-Core-Debug] Created AsyncPlayerChatEvent listener.
[23:32:20] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[23:32:20] [Server thread/INFO]: [Multiverse-Core-Debug] Metrics enabled.
[23:32:20] [Server thread/INFO]: [Multiverse-Core] Version 4.3.16 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[23:32:20] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.5-SNAPSHOT
[23:32:20] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[23:32:20] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R2) (MC: 1.21.3)
[23:32:20] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1589
[23:32:20] [Server thread/INFO]: [LibsDisguises] Build Date: 30/04/2025 03:39
[23:32:20] [Server thread/ERROR]: [LibsDisguises] You are running an outdated version of Minecraft, you are currently using 1.21.3, you should update to a minimum of 1.21.4
[23:32:20] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[23:32:20] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[23:32:20] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'SCALED', LD will scale down (when possible) oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[23:32:21] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_2/16...
[23:32:21] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_2/16 in 180.7988ms
[23:32:22] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[23:32:22] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[23:32:22] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[23:32:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[23:32:22] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[23:32:22] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[23:32:22] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.2-6a2683d7
[23:32:22] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.3)...
[23:32:22] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[23:32:23] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[23:32:23] [Server thread/INFO]: [MythicMobs] Mythic GriefPrevention Support has been enabled!
[23:32:23] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[23:32:23] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[23:32:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[23:32:23] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[23:32:23] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[23:32:23] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[23:32:24] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\data
[23:32:24] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\data\worlds
[23:32:25] [Server thread/INFO]: [MythicMobs] Loading Packs...
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to load pin mine1 - world may be unloaded
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to load pin garde1 - world may be unloaded
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to load pin garde2 - world may be unloaded
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to load pin farm3 - world may be unloaded
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to load pin farm4 - world may be unloaded
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to load pin lumberjack1 - world may be unloaded
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to load pin lumberjack2 - world may be unloaded
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to load pin farmer2 - world may be unloaded
[23:32:26] [Server thread/INFO]: [MythicMobs] Loading Items...
[23:32:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item ItemTheGreatTurtleKey
[23:32:26] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\items\TheGreatTurtleItemsMEG.yml
[23:32:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Material type 'SCUTE' not found
[23:32:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item ItemTheGreatTurtleTsunami
[23:32:26] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\items\TheGreatTurtleItemsMEG.yml
[23:32:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Material type 'SCUTE' not found
[23:32:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item ItemTheGreatTurtleBarnacle
[23:32:26] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\items\TheGreatTurtleItemsMEG.yml
[23:32:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Material type 'SCUTE' not found
[23:32:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item ItemTheGreatTurtleWaterBlast
[23:32:26] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\items\TheGreatTurtleItemsMEG.yml
[23:32:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Material type 'SCUTE' not found
[23:32:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item ItemTheGreatTurtleUrchin
[23:32:26] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\items\TheGreatTurtleItemsMEG.yml
[23:32:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Material type 'SCUTE' not found
[23:32:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item ItemTheGreatTurtleUrchinSpike
[23:32:26] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\items\TheGreatTurtleItemsMEG.yml
[23:32:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Material type 'SCUTE' not found
[23:32:26] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[23:32:26] [Server thread/INFO]: [MythicMobs] Loading Skills...
[23:32:26] [Server thread/WARN]: [MythicMobs] Failed to construct mechanic matchrotation @target
[23:32:26] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[23:32:26] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:72)
[23:32:26] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
[23:32:26] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:339)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.skills.MetaSkill.lambda$new$1(MetaSkill.java:79)
[23:32:26] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.skills.MetaSkill.lambda$new$2(MetaSkill.java:75)
[23:32:26] [Server thread/WARN]:     at java.base/java.util.HashMap.forEach(HashMap.java:1429)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.skills.MetaSkill.<init>(MetaSkill.java:67)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:115)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:454)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:185)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[23:32:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[23:32:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[23:32:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[23:32:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[23:32:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[23:32:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[23:32:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[23:32:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[23:32:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[23:32:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[23:32:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[23:32:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[23:32:26] [Server thread/WARN]: Caused by: java.lang.NullPointerException: Cannot invoke "String.substring(int)" because "strTarget" is null
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.skills.SkillExecutor.getTargeter(SkillExecutor.java:428)
[23:32:26] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.skills.mechanics.MatchRotationMechanic.<init>(MatchRotationMechanic.java:28)
[23:32:26] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
[23:32:26] [Server thread/WARN]:     ... 24 more
[23:32:29] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[23:32:29] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[23:32:29] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[23:32:29] [Server thread/ERROR]: Cannot load C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\spawners\rer.yml
org.bukkit.configuration.InvalidConfigurationException: unacceptable code point ' ' (0x0) special characters are not allowed
in "'reader'", position 0
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:112) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:310) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:43) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.core.spawning.spawners.SpawnerManager.loadSpawners(SpawnerManager.java:71) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.core.spawning.spawners.SpawnerManager.load(SpawnerManager.java:53) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:460) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:185) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81) ~[MythicMobs-5.8.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.yaml.snakeyaml.reader.ReaderException: special characters are not allowed
    at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:208) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:173) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:168) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:123) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:1204) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:320) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:210) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:152) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:156) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:105) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[23:32:29] [Server thread/ERROR]: Cannot load C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\spawners\sanglier1.yml
org.bukkit.configuration.InvalidConfigurationException: unacceptable code point ' ' (0x0) special characters are not allowed
in "'reader'", position 0
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:112) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:310) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:43) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.core.spawning.spawners.SpawnerManager.loadSpawners(SpawnerManager.java:71) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.core.spawning.spawners.SpawnerManager.load(SpawnerManager.java:53) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:460) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:185) ~[MythicMobs-5.8.2.jar:?]
    at MythicMobs-5.8.2.jar/io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81) ~[MythicMobs-5.8.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.yaml.snakeyaml.reader.ReaderException: special characters are not allowed
    at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:208) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:173) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:168) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:123) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:1204) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:320) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:210) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:152) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:156) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:105) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Skill: spawner_wanderers_1 | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path1
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path1;delay=20}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Skill: spawner_wanderers_2 | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path2
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path2;delay=20}
[23:32:29] [Server thread/ERROR]: [MythicMobs] Badly configured enchantment
[23:32:29] [Server thread/ERROR]: [MythicMobs] Badly configured enchantment
[23:32:29] [Server thread/ERROR]: [MythicMobs] Badly configured enchantment
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: NPCGREETFX | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\littleroom\NPC.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill NPCgreetfx
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=NPCgreetfx}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic: scene_wanderer_backpack:teleport | File: Unknown
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsinradius{radius=0.3;amount=>0;types=scene_guard_walk_test}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_backpack | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_1_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_1_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_backpack | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_2_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_2_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic: scene_wanderer_stick:teleport | File: Unknown
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsinradius{radius=0.3;amount=>0;types=scene_guard_walk_test}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_stick | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_1_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_1_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_stick | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_2_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_2_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic: scene_wanderer_default:teleport | File: Unknown
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsinradius{radius=0.3;amount=>0;types=scene_guard_walk_test}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_default | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_1_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_1_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_default | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_2_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_2_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic: scene_wanderer_horse_walk:teleport | File: Unknown
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsinradius{radius=0.3;amount=>0;types=scene_guard_walk_test}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_horse_walk | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_1_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_1_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_horse_walk | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_2_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_2_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic: scene_wanderer_horse_trot:teleport | File: Unknown
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsinradius{radius=0.3;amount=>0;types=scene_guard_walk_test}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_horse_trot | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_1_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_1_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: scene_wanderer_horse_trot | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\mobs\Scenes\Scenes Wanderers Vol 1\scene_wanderers_1.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill path_2_follow
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{skill=path_2_follow}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-MidnightLord | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-MidnightLord
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>MidnightLord}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-HellGate | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-HellGate
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>HellGate}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-RagdollPossession | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-RagdollPossession
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>RagdollPossession}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-CadaverCurse | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-CadaverCurse
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>CadaverCurse}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-RisenDread | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-RisenDread
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>RisenDread}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-MidnightLord | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-MidnightLord
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>MidnightLord}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-HellGate | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-HellGate
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>HellGate}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-RagdollPossession | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-RagdollPossession
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>RagdollPossession}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-CadaverCurse | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-CadaverCurse
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>CadaverCurse}
[23:32:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-RisenDread | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\Packs\EliteAnimations-v1_Halloween\mobs\MobsFile_EA-Halloween.yml
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-RisenDread
[23:32:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>RisenDread}
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 683 mobs.
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 33 vanilla mob overrides.
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3606 skills.
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 83 random spawns.
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 428 mythic items.
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 12 drop tables.
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 7 mob spawners.
[23:32:29] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[23:32:29] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[23:32:29] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.8.2 ( build 6a2683d7 ) has been successfully loaded!
[23:32:30] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[23:32:30] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[23:32:30] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.7.1-SNAPSHOT
[23:32:30] [Server thread/INFO]: [MythicLib] Hooked onto TextDisplays (holograms)
[23:32:30] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[23:32:30] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[23:32:30] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[23:32:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.7.1-SNAPSHOT]
[23:32:30] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[23:32:30] [Server thread/WARN]: [MythicLib] Found a dependency cycle! Please make sure that the plugins involved load with no errors.
[23:32:30] [Server thread/WARN]: [MythicLib] Plugin dependency cycle: [zAuctionHouseV3, PlayerAuctions, zAuctionHouseV3]
[23:32:30] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3645)
[23:32:30] [Server thread/INFO]: [Citizens] La langue du système détectée est: [[fr]]. Si vous le souhaitez, vous pouvez contribuer à la traduction de Citizens sur notre Discord! https://discord.gg/Q6pZGSR
[23:32:30] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[23:32:30] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3645) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
    at citizens-2.0.37-SNAPSHOT.jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2719) ~[citizens-2.0.37-SNAPSHOT.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at citizens-2.0.37-SNAPSHOT.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:171) ~[citizens-2.0.37-SNAPSHOT.jar:?]
    at citizens-2.0.37-SNAPSHOT.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:176) ~[citizens-2.0.37-SNAPSHOT.jar:?]
    at citizens-2.0.37-SNAPSHOT.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:322) ~[citizens-2.0.37-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[23:32:30] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3645)
[23:32:30] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.13
[23:32:30] [Server thread/INFO]: [MMOCore] Hooked onto Vault
[23:32:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmocore [1.13]
[23:32:30] [Server thread/INFO]: [MMOCore] Hooked onto PlaceholderAPI
[23:32:30] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[23:32:30] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[23:32:30] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'acid-spray.yml': Could not find skill handler with ID 'ACID_SPRAY'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'adaptive-first.yml': Could not find skill handler with ID 'ADAPTIVE_FIRST'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'adaptive-second.yml': Could not find skill handler with ID 'ADAPTIVE_SECOND'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'adaptive-third.yml': Could not find skill handler with ID 'ADAPTIVE_THIRD'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'agile-strike.yml': Could not find skill handler with ID 'AGILE_STRIKE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'ancestral-power.yml': Could not find skill handler with ID 'ANCESTRAL_POWER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'arcane-missile.yml': Could not find skill handler with ID 'ARCANE_MISSILE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'arcanic-adapt-on-damaged.yml': Could not find skill handler with ID 'ARCANIC_ADAPT_ON_DAMAGED'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'arcanic-adapt-on-hit.yml': Could not find skill handler with ID 'ARCANIC_ADAPT_ON_HIT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'arcanic-adapt.yml': Could not find skill handler with ID 'ARCANIC_ADAPT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'assassins-blade.yml': Could not find skill handler with ID 'ASSASSINS_BLADE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'backstep.yml': Could not find skill handler with ID 'BACKSTEP'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'banish-u.yml': Could not find skill handler with ID 'BANISH_U'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'banish.yml': Could not find skill handler with ID 'BANISH'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'basher.yml': Could not find skill handler with ID 'BASHER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'berserk.yml': Could not find skill handler with ID 'BERSERK'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'blade-dance.yml': Could not find skill handler with ID 'BLADE_DANCE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'blade-slash.yml': Could not find skill handler with ID 'BLADE_SLASH'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'blazing.yml': Could not find skill handler with ID 'BLAZING'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'blink-.yml': Could not find skill handler with ID 'BLINK_'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'blood-for-blood.yml': Could not find skill handler with ID 'BLOOD_FOR_BLOOD'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'bloodburst.yml': Could not find skill handler with ID 'BLOODBURST'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'bloodthirst-activate.yml': Could not find skill handler with ID 'BLOODTHIRST_ACTIVATE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'bloodthirst-initiate.yml': Could not find skill handler with ID 'BLOODTHIRST_INITIATE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'bloodthirst.yml': Could not find skill handler with ID 'BLOODTHIRST'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'brutal-strike.yml': Could not find skill handler with ID 'BRUTAL_STRIKE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'calamitous-ray.yml': Could not find skill handler with ID 'CALAMITOUS_RAY'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'calamitousray-hit.yml': Could not find skill handler with ID 'CALAMITOUSRAY_HIT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'calamitousray-tick.yml': Could not find skill handler with ID 'CALAMITOUSRAY_TICK'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'celestial-aid.yml': Could not find skill handler with ID 'CELESTIAL_AID'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'chain-hook.yml': Could not find skill handler with ID 'CHAIN_HOOK'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'chance-dictator.yml': Could not find skill handler with ID 'CHANCE_DICTATOR'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'charge.yml': Could not find skill handler with ID 'CHARGE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'close-call.yml': Could not find skill handler with ID 'CLOSE_CALL'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'cobra-curse.yml': Could not find skill handler with ID 'COBRA_CURSE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'comet.yml': Could not find skill handler with ID 'COMET'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'convergence.yml': Could not find skill handler with ID 'CONVERGENCE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'cosmic-ally.yml': Could not find skill handler with ID 'COSMIC_ALLY'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'dagger-throw.yml': Could not find skill handler with ID 'DAGGER_THROW'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'dark-matter.yml': Could not find skill handler with ID 'DARK_MATTER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'dark-ritual.yml': Could not find skill handler with ID 'DARK_RITUAL'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'dash.yml': Could not find skill handler with ID 'DASH'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'deadly-javelin.yml': Could not find skill handler with ID 'DEADLY_JAVELIN'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'deadly-squash.yml': Could not find skill handler with ID 'DEADLY_SQUASH'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'divine-intervention.yml': Could not find skill handler with ID 'DIVINE_INTERVENTION'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'doomsday.yml': Could not find skill handler with ID 'DOOMSDAY'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'doomslayer.yml': Could not find skill handler with ID 'DOOMSLAYER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'doppelganger.yml': Could not find skill handler with ID 'DOPPELGANGER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'double-strike.yml': Could not find skill handler with ID 'DOUBLE_STRIKE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'dragon-piercer.yml': Could not find skill handler with ID 'DRAGON_PIERCER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'dragon-slayer.yml': Could not find skill handler with ID 'DRAGON_SLAYER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'earth-pound.yml': Could not find skill handler with ID 'EARTH_POUND'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'earth-quake.yml': Could not find skill handler with ID 'EARTH_QUAKE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'elixir-earth.yml': Could not find skill handler with ID 'ELIXIR_EARTH'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'elixir-fire.yml': Could not find skill handler with ID 'ELIXIR_FIRE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'elixir-water.yml': Could not find skill handler with ID 'ELIXIR_WATER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'elixir-wind.yml': Could not find skill handler with ID 'ELIXIR_WIND'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'essence-theft-upgraded.yml': Could not find skill handler with ID 'ESSENCE_THEFT_UPGRADED'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'essence-theft.yml': Could not find skill handler with ID 'ESSENCE_THEFT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'evasion.yml': Could not find skill handler with ID 'EVASION'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'execute.yml': Could not find skill handler with ID 'EXECUTE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'fire-ball.yml': Could not find skill handler with ID 'FIRE_BALL'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'firelord-u.yml': Could not find skill handler with ID 'FIRELORD_U'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'focus.yml': Could not find skill handler with ID 'FOCUS'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'frost-nova.yml': Could not find skill handler with ID 'FROST_NOVA'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'frostburn.yml': Could not find skill handler with ID 'FROSTBURN'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'frozen-tomb.yml': Could not find skill handler with ID 'FROZEN_TOMB'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'ghostblades.yml': Could not find skill handler with ID 'GHOSTBLADES'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'greed.yml': Could not find skill handler with ID 'GREED'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'heal-beam.yml': Could not find skill handler with ID 'HEAL_BEAM'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'healing-totem.yml': Could not find skill handler with ID 'HEALING_TOTEM'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'hellfire-attack-upgraded.yml': Could not find skill handler with ID 'HELLFIRE_ATTACK_UPGRADED'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'hellfire-attack.yml': Could not find skill handler with ID 'HELLFIRE_ATTACK'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'hellfire.yml': Could not find skill handler with ID 'HELLFIRE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'hellwraith.yml': Could not find skill handler with ID 'HELLWRAITH'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'hemmorhage.yml': Could not find skill handler with ID 'HEMMORHAGE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'high-ground.yml': Could not find skill handler with ID 'HIGH_GROUND'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'howl.yml': Could not find skill handler with ID 'HOWL'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'hunters-focus.yml': Could not find skill handler with ID 'HUNTERS_FOCUS'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'ice-fury.yml': Could not find skill handler with ID 'ICE_FURY'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'ice-reaper.yml': Could not find skill handler with ID 'ICE_REAPER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'incinerator-charge.yml': Could not find skill handler with ID 'INCINERATOR_CHARGE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'incinerator.yml': Could not find skill handler with ID 'INCINERATOR'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'inferno-chains.yml': Could not find skill handler with ID 'INFERNO_CHAINS'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'intimidate.yml': Could not find skill handler with ID 'INTIMIDATE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'judgement.yml': Could not find skill handler with ID 'JUDGEMENT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'justice-served.yml': Could not find skill handler with ID 'JUSTICE_SERVED'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'leap-of-faith.yml': Could not find skill handler with ID 'LEAP_OF_FAITH'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'light-beam.yml': Could not find skill handler with ID 'LIGHT_BEAM'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'lord-of-the-night.yml': Could not find skill handler with ID 'LORD_OF_THE_NIGHT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'mana-potion-eternal.yml': Could not find skill handler with ID 'MANA_POTION_ETERNAL'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'mana-potion-large.yml': Could not find skill handler with ID 'MANA_POTION_LARGE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'mana-potion-minor.yml': Could not find skill handler with ID 'MANA_POTION_MINOR'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'mana-potion-small.yml': Could not find skill handler with ID 'MANA_POTION_SMALL'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'mana-potion-superior.yml': Could not find skill handler with ID 'MANA_POTION_SUPERIOR'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'meteor.yml': Could not find skill handler with ID 'METEOR'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'multi-strike.yml': Could not find skill handler with ID 'MULTI_STRIKE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'muscle-memory.yml': Could not find skill handler with ID 'MUSCLE_MEMORY'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'nature-force.yml': Could not find skill handler with ID 'NATURE_FORCE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'necromancy.yml': Could not find skill handler with ID 'NECROMANCY'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'nurture.yml': Could not find skill handler with ID 'NURTURE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'oceanborne.yml': Could not find skill handler with ID 'OCEANBORNE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'orichalcum.yml': Could not find skill handler with ID 'ORICHALCUM'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'overloaded-sphere.yml': Could not find skill handler with ID 'OVERLOADED_SPHERE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'owtv.yml': Could not find skill handler with ID 'OWTV'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'pathfinder.yml': Could not find skill handler with ID 'PATHFINDER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'plague.yml': Could not find skill handler with ID 'PLAGUE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'potion-eternal.yml': Could not find skill handler with ID 'POTION_ETERNAL'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'potion-large.yml': Could not find skill handler with ID 'POTION_LARGE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'potion-minor.yml': Could not find skill handler with ID 'POTION_MINOR'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'potion-small.yml': Could not find skill handler with ID 'POTION_SMALL'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'potion-superior.yml': Could not find skill handler with ID 'POTION_SUPERIOR'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'quick-shot.yml': Could not find skill handler with ID 'QUICK_SHOT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'radiation.yml': Could not find skill handler with ID 'RADIATION'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'rampage.yml': Could not find skill handler with ID 'RAMPAGE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'reposition.yml': Could not find skill handler with ID 'REPOSITION'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'respite.yml': Could not find skill handler with ID 'RESPITE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'scroll-common.yml': Could not find skill handler with ID 'SCROLL_COMMON'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'scroll-epic.yml': Could not find skill handler with ID 'SCROLL_EPIC'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'scroll-rare.yml': Could not find skill handler with ID 'SCROLL_RARE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'scroll-return.yml': Could not find skill handler with ID 'SCROLL_RETURN'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'scroll-teleport.yml': Could not find skill handler with ID 'SCROLL_TELEPORT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'self-recovery.yml': Could not find skill handler with ID 'SELF_RECOVERY'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'shadow-walk.yml': Could not find skill handler with ID 'SHADOW_WALK'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'shield-barrier.yml': Could not find skill handler with ID 'SHIELD_BARRIER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'simultaneous.yml': Could not find skill handler with ID 'SIMULTANEOUS'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'soul-harvester-on-hit.yml': Could not find skill handler with ID 'SOUL_HARVESTER_ON_HIT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'soul-harvester.yml': Could not find skill handler with ID 'SOUL_HARVESTER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'starborn-convert.yml': Could not find skill handler with ID 'STARBORN_CONVERT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'starborn-initiate.yml': Could not find skill handler with ID 'STARBORN_INITIATE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'starborn.yml': Could not find skill handler with ID 'STARBORN'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'starmarked.yml': Could not find skill handler with ID 'STARMARKED'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'stellar-strike.yml': Could not find skill handler with ID 'STELLAR_STRIKE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'sudden-strike.yml': Could not find skill handler with ID 'SUDDEN_STRIKE'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'titanium.yml': Could not find skill handler with ID 'TITANIUM'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'totem-form.yml': Could not find skill handler with ID 'TOTEM_FORM'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'tradeoff.yml': Could not find skill handler with ID 'TRADEOFF'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'tread.yml': Could not find skill handler with ID 'TREAD'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'ultimatum.yml': Could not find skill handler with ID 'ULTIMATUM'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'undead-slayer.yml': Could not find skill handler with ID 'UNDEAD_SLAYER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'uppercut.yml': Could not find skill handler with ID 'UPPERCUT'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'warden-blessing-upgraded.yml': Could not find skill handler with ID 'WARDEN_BLESSING_UPGRADED'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'whirlwind.yml': Could not find skill handler with ID 'WHIRLWIND'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'whispering-talon.yml': Could not find skill handler with ID 'WHISPERING_TALON'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'windrazor.yml': Could not find skill handler with ID 'WINDRAZOR'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load skill from file 'wither-slayer.yml': Could not find skill handler with ID 'WITHER_SLAYER'
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load custom mining condition 'region{name="example_region,example_region2,__global__"}': Could not match any condition to 'region' in database
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load custom mining condition 'region{name="example_region,example_region2,__global__"}': Could not match any condition to 'region' in database
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load condition 'region{name="swamp,second-region"}' from fishing drop table 'overriding-drop-table': Could not match any condition to 'region' in database
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load item 'mmoitem{type=CONSUMABLE;id=SUSHI_ROLL;tugs=4-5;experience=1-6} 1 1-1 9' from fishing drop table 'overriding-drop-table': Could not match any drop item to 'mmoitem' in database
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load item 'mmoitem{type=GEM_STONE;id=SPITEFUL_OPAQUE_DIAMOND;tugs=10-15;experience=20-30} 1 1-1 1' from fishing drop table 'overriding-drop-table': Could not match any drop item to 'mmoitem' in database
[23:32:30] [Server thread/WARN]: [MMOCore] Could not load fishing drop table overriding-drop-table: The item list must not be empty.
[23:32:31] [Server thread/WARN]: [MMOCore] Could not load objective '2' from quest 'adv-begins': Could not match any objective to 'talkto' in database
[23:32:31] [Server thread/WARN]: [MMOCore] Could not load objective '2' from quest 'fetch-mango': Could not match any objective to 'getitem' in database
[23:32:31] [Server thread/WARN]: [MMOCore] Could not load objective '3' from quest 'tutorial': Could not match any objective to 'getitem' in database
[23:32:31] [Server thread/WARN]: [MMOCore] Could not load objective '4' from quest 'tutorial': Could not match any objective to 'talkto' in database
[23:32:31] [Server thread/WARN]: [MMOCore] Could not load objective '5' from quest 'tutorial': Could not match any objective to 'killmythicmob' in database
[23:32:31] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[23:32:31] [Server thread/WARN]: [MMOCore] Could not post-load perm set 'STONE_PICKAXE': Could not match any block type to 'mmoitems' in database
[23:32:31] [Server thread/INFO]: [MMOCore] Hooked parties onto MMOCore
[23:32:31] [Server thread/INFO]: [MMOCore] Hooked guilds onto MMOCore
[23:32:31] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18
[23:32:31] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[23:32:31] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
[23:32:31] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[23:32:31] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[23:32:31] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[23:32:31] [Server thread/INFO]: [GriefPrevention] Boot finished.
[23:32:31] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[23:32:31] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[23:32:31] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[23:32:31] [Server thread/INFO]: [Essentials] No kits found to migrate.
[23:32:31] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[23:32:31] [Server thread/INFO]: [Essentials] Using locale fr_FR
[23:32:31] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[23:32:32] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[23:32:32] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[23:32:32] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[23:32:32] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.10
[23:32:32] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[23:32:32] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[23:32:32] [Server thread/INFO]: [MMOItems] Now using MMOCore as RPG core plugin
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Hellfire': Could not load set bonus 'ability-1': Could not find ability called 'HELLFIRE'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Inferno': Could not load set bonus 'ability-1': Could not find ability called 'HELLFIRE'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Overseer': Could not load set bonus 'ability-2': Could not find ability called 'WARDEN_BLESSING_UPGRADED'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Apollo': Could not load set bonus 'ability-1': Could not find ability called 'BANISH'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Nirvana': Could not load set bonus 'ability-1': Could not find ability called 'BANISH_U'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Apocalypse': Could not load set bonus 'ability-1': Could not find ability called 'DOOMSLAYER'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Quinerus': Could not load set bonus 'ability-1': Could not find ability called 'DOOMSLAYER'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Caeletus': Could not load set bonus 'ability-1': Could not find ability called 'DOOMSLAYER'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Mortos': Could not load set bonus 'ability-1': Could not find ability called 'DOOMSLAYER'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Hexim': Could not load set bonus 'ability-1': Could not find ability called 'DOOMSLAYER'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Mythril': Could not load set bonus 'ability-1': Could not find ability called 'ADAPTIVE_FIRST'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Orichalcum': Could not load set bonus 'ability-1': Could not find ability called 'ORICHALCUM'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Titanium': Could not load set bonus 'ability-1': Could not find ability called 'TITANIUM'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Permafrost': Could not load set bonus 'ability-1': Could not find ability called 'ICE_REAPER'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Starborn': Could not load set bonus 'ability-1': Could not find ability called 'STARBORN_INITIATE'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Crimson': Could not load set bonus 'ability-1': Could not find ability called 'BLOODTHIRST_INITIATE'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Death': Could not load set bonus 'ability-1': Could not find ability called 'ESSENCE_THEFT'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Reaper': Could not load set bonus 'ability-1': Could not find ability called 'ESSENCE_THEFT_UPGRADED'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Uranium': Could not load set bonus 'defense': Could not find stat called 'DEFENSE'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Nurse': Could not load set bonus 'ability-1': Could not find ability called 'NURTURE'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Dryad': Could not load set bonus 'ability-1': Could not find ability called 'NATURE_FORCE'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Angel': Could not load set bonus 'ability-1': Could not find ability called 'DIVINE_INTERVENTION'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Insanity': Could not load set bonus 'ability-1': Could not find ability called 'BERSERK'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Nocturnal': Could not load set bonus 'ability-1': Could not find ability called 'LORD_OF_THE_NIGHT'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Blaze': Could not load set bonus 'ability-1': Could not find ability called 'BLAZING'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'FrostyBlaze': Could not load set bonus 'ability-1': Could not find ability called 'FROSTBURN'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Werewolf': Could not load set bonus 'ability-1': Could not find ability called 'HOWL'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Arcane': Could not load set bonus 'ability-1': Could not find ability called 'ARCANIC_ADAPT'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Damned': Could not load set bonus 'ability-1': Could not find ability called 'SOUL_HARVESTER_ON_HIT'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Cosmic': Could not load set bonus 'ability-1': Could not find ability called 'DARK_MATTER'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Midas': Could not load set bonus 'ability-1': Could not find ability called 'GREED'
[23:32:32] [Server thread/ERROR]: [MMOItems] Could not load item set 'Lost': Could not load set bonus 'damage-reduction': Could not find stat called 'DAMAGE_REDUCTION'
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template loyal] Stat 'ATTACK_DAMAGE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template loyal] Stat 'CRITICAL_STRIKE_POWER' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template loyal] Stat 'DEFENSE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template loyal] Stat 'MOVEMENT_SPEED' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template loyal] Stat 'MAX_HEALTH' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template loyal] Stat 'SKILL_DAMAGE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template loyal] Stat 'PROJECTILE_DAMAGE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template loyal] Stat 'WEAPON_DAMAGE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template damned] Stat 'ATTACK_DAMAGE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template damned] Stat 'CRITICAL_STRIKE_POWER' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template damned] Stat 'DEFENSE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template damned] Stat 'MOVEMENT_SPEED' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template damned] Stat 'MAX_HEALTH' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template damned] Stat 'SKILL_DAMAGE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template damned] Stat 'PROJECTILE_DAMAGE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Upgrade Template damned] Stat 'WEAPON_DAMAGE' not found.
[23:32:32] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[23:32:32] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[23:32:32] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[23:32:32] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j1' from crafting station 'alchemist': Could not load ingredient 'mmoitem{type=MATERIAL,id=DETACHED_EYE,amount=2}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j2' from crafting station 'alchemist': Could not load ingredient 'mmoitem{type=MATERIAL,id=DETACHED_EYE,amount=5}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j3' from crafting station 'alchemist': Could not load ingredient 'mmoitem{type=MATERIAL,id=DETACHED_EYE,amount=15}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j4' from crafting station 'alchemist': Could not load ingredient 'mmoitem{type=MATERIAL,id=DETACHED_EYE,amount=32}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'm1' from crafting station 'alchemist': Could not load ingredient 'mmoitem{type=MATERIAL,id=TEAL_MUSHROOM,amount=2}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'm2' from crafting station 'alchemist': Could not load ingredient 'mmoitem{type=MATERIAL,id=TEAL_MUSHROOM,amount=5}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'm3' from crafting station 'alchemist': Could not load ingredient 'mmoitem{type=MATERIAL,id=TEAL_MUSHROOM,amount=15}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'm4' from crafting station 'alchemist': Could not load ingredient 'mmoitem{type=MATERIAL,id=TEAL_MUSHROOM,amount=32}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade1' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=32}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade2' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=32}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade3' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=32}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade4' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade5' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade6' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade7' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade8' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade9' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade10' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade11' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade12' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade13' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade14' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade15' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade16' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade17' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade18' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'upgrade19' from crafting station 'dungeoneering': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITCH_BLOOD,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j9' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=LOST_SOUL,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j10' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=LOST_SOUL,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j11' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=LOST_SOUL,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j1' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=10}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j2' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=15}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j3' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=15}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j4' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=20}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j5' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=25}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j6' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=25}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j7' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=25}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j12' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=LOST_SOUL,amount=32}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j13' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=ACCESSORY,id=NECKLACE_OF_THE_DAMNED,amount=1}': Could not find item type with ID 'ACCESSORY'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j14' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=ACCESSORY,id=PENDANT_OF_THE_DAMNED,amount=1}': Could not find item type with ID 'ACCESSORY'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'j8' from crafting station 'jeweler': Could not load ingredient 'mmoitem{type=MATERIAL,id=VOID_GEM,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge6' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=BROKEN_HANDLE,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge7' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=BROKEN_BOW,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge8' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=BROKEN_STAFF,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge9' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=NIGHTMARE_BAR,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge10' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=NIGHTMARE_BAR,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge11' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=NIGHTMARE_BAR,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge12' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=NIGHTMARE_BAR,amount=16}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge15' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=10}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge16' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=10}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge18' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=10}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge19' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=10}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge20' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=10}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge21' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=10}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge22' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=10}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge23' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=25}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge28' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=25}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge24' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=15}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge25' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=15}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge26' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=15}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge27' from crafting station 'the-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM,amount=15}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge1' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=LOST_BLUEPRINT,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge2' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=LOST_BLUEPRINT,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge3' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=LOST_BLUEPRINT,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge3_1' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=LOST_BLUEPRINT,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge4' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=MYTHRIL_INGOT,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge5' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=EXO_STONE,amount=1}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge13' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=URANIUM_DEBRIS,amount=8}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge14' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_SHARD,amount=8}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'forge17' from crafting station 'the-smelter': Could not load ingredient 'mmoitem{type=MATERIAL,id=IRIDIUM_CRYSTAL,amount=20}': Could not find item type with ID 'MATERIAL'
[23:32:32] [Server thread/INFO]: [MMOItems] Hooked onto RPGInventory
[23:32:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.10]
[23:32:32] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[23:32:32] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[23:32:32] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[23:32:32] [Server thread/INFO]: [NBTAPI] Checking bindings...
[23:32:32] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[23:32:32] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[23:32:32] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[23:32:32] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[23:32:32] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.10-hotfix-1
[23:32:32] [Server thread/WARN]: [ItemsAdder] LoneLibs is enabled. This plugin is not needed anymore and it's recommended to remove it (if you are not using it for other plugins).
[23:32:32] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.10-hotfix-1
  ___  ___        __        __   __   ___  __      ProtocolLib 5.4.0-SNAPSHOT-747
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Paper 1.21.3-83-d6c81da (MC: 1.21.3)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-05-05_11.20.26
                                                   Java Version: 21.0.2
                                                   OS: Windows 11 10.0                                               
[23:32:32] [Server thread/INFO]: [ItemsAdder] Loading GlowingEntities API
[23:32:32] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.3
[23:32:32] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[23:32:32] [Server thread/ERROR]: [ItemsAdder] Failed to hook into Citizens. Please update make sure you're running a compatible version.
[23:32:32] [Server thread/WARN]: java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/Trait
[23:32:32] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass1(Native Method)
[23:32:32] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027)
[23:32:32] [Server thread/WARN]:     at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150)
[23:32:32] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243)
[23:32:32] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593)
[23:32:32] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
[23:32:32] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[23:32:32] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[23:32:32] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.register(SourceFile:40)
[23:32:32] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:343)
[23:32:32] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[23:32:32] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[23:32:32] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[23:32:32] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[23:32:32] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[23:32:32] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[23:32:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[23:32:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[23:32:32] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[23:32:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[23:32:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[23:32:32] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[23:32:32] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.Trait
[23:32:32] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[23:32:32] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[23:32:32] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[23:32:32] [Server thread/WARN]:     ... 22 more
[23:32:32] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 8163
[23:32:32] [Server thread/INFO]: [ItemsAdder] [SelfHost] Rate limiter: max 3 requests / 2s.
[23:32:32] [Server thread/INFO]: [ItemsAdder] [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[23:32:33] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[23:32:33] [Server thread/INFO]: [ItemsAdder] [Pack] Extracted 0 default files. No files changes detected.
[23:32:33] [Server thread/WARN]: [ItemsAdder] Detected legacy ItemsAdder pack (pre 3.3.0). You should migrate at some point.
[23:32:33] [Server thread/WARN]: [ItemsAdder] Guidelines: https://a.devs.beer/ia-new-guidelines-330
[23:32:33] [Server thread/ERROR]: [ItemsAdder] Missing namespace in file: /contents/mythichud/resourcepack/center.yml
[23:32:33] [Server thread/ERROR]: [ItemsAdder] Missing namespace in file: /contents/mythichud/resourcepack/death-message.yml
[23:32:33] [Server thread/INFO]: [ItemsAdder] Registered equipment 'turtle_armor_set' with layers: yungwilder:turtle_armor/turtle_armor, yungwilder:turtle_armor/turtle_armor_leggings. File: /contents/yungwilder/configs/armor.yml
[23:32:33] [Server thread/ERROR]: [ItemsAdder] Invalid character in folders/name of file: Roasted Chicken
[23:32:33] [Server thread/ERROR]: [ItemsAdder] Invalid character in folders/name of file: Roasted Pork
[23:32:33] [Server thread/ERROR]: [ItemsAdder] [Items] 'nether:nether_model-chestplate'. Error: Unknown custom_armor 'nether:nether_model'. File: /contents/nether/configs/nether/armor.yml
[23:32:33] [Server thread/ERROR]: [ItemsAdder] [Items] 'nether:nether_model-leggings'. Error: Unknown custom_armor 'nether:nether_model'. File: /contents/nether/configs/nether/armor.yml
[23:32:33] [Server thread/ERROR]: [ItemsAdder] [Items] 'nether:nether_model-boots'. Error: Unknown custom_armor 'nether:nether_model'. File: /contents/nether/configs/nether/armor.yml
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.12.2
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 14 shop sections.
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21.3...
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to DEFAULT in config
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using plugin default spawners...
[23:32:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
Please change the value manually to get rid of this message
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [WARN]: Item path in config.yml: sold-items-ignored-NBTtags
[23:32:34] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 221ms to complete
[23:32:34] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.2.1-BETA
[23:32:34] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Hex colors are available! Ready for RGB..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[23:32:34] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[23:32:34] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[23:32:34] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[23:32:34] [Server thread/INFO]:     _   _                 _____              Running v2.2.1-BETA
[23:32:34] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ ___ Server Paper v1.21.3-83-d6c81da (MC: 1.21.3)
[23:32:34] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-< Discord for support: https://alonsoaliaga.com/discord
[23:32:34] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/ Thanks for using my plugin ❤!
[23:32:34] [Server thread/INFO]:           Developed by AlonsoAliaga |___/
[23:32:34] [Server thread/INFO]: 
[23:32:34] [Server thread/INFO]: ==============================================================================================
[23:32:34] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Paper), plugin should work fine!
[23:32:34] [Server thread/INFO]: [AlonsoTags] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[23:32:34] [Server thread/INFO]: ==============================================================================================
[23:32:34] [Server thread/INFO]: 
[23:32:34] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[23:32:34] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[23:32:34] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[23:32:34] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[23:32:34] [Server thread/INFO]: [AlonsoTags] [SQLite] Attempting to create 'alonsotags' table..
[23:32:34] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsotags.db'!
[23:32:34] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.46.1
[23:32:34] [Server thread/INFO]: [SQLite] Successfully connected to database!
[23:32:34] [Server thread/INFO]: [AlonsoTags] [SQLite] Table 'alonsotags' has been created if didn't exist.
[23:32:34] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Database found! Everything is working as expected.
[23:32:34] [Server thread/INFO]: [AlonsoTags] Successfully loaded 1 books!
[23:32:34] [Server thread/INFO]: [AlonsoTags] Old ItemStack constructor is available!
[23:32:34] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwningPlayer method is available for heads.
[23:32:34] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwner method is available for heads.
[23:32:34] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[23:32:34] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[23:32:34] [Server thread/INFO]: [AlonsoTags] New setOwningPlayer method is available!
[23:32:34] [Server thread/INFO]: [AlonsoTags] Old Bukkit#getOfflinePlayer(String name) method is available!
[23:32:34] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Config files are (re)loading.. Timestamp: Negative | Negative
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-smile' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-heart' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-tiny-heart' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-star' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-moon' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-sun' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-cloud' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-umbrella' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-snowman' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Loading 'u-coin' tag..
[23:32:34] [Server thread/INFO]: [AlonsoTags] Successfully loaded 10 tags!
[23:32:34] [Server thread/INFO]: [AlonsoTags] PlaceholderAPI found! Hooking..
[23:32:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsotags [2.2.1-BETA]
[23:32:34] [Server thread/INFO]: [AlonsoTags] Bungee messaging system is allowed in this server. Enabling..
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.2.3.1
[23:32:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [3.2.3.1]
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] === ENABLE START ===
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Plugin Version V3.2.3.1
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of 4 price items
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] C:\Users\Lucas\Documents\Dev\1.21.3\plugins\zAuctionHouseV3\blacklistplayers.json loaded successfully !
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded config.yml
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of 3 tax items
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded 4 blacklist items
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded 0 whitelist items
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Examples category with 4 materials
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Blocks category with 1003 materials
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Potions category with 17 materials
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Tools category with 20 materials
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Weapons category with 13 materials
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading 3 inventories
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading 0 commands
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Load SQL...
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] 
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] ! Attention !
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] LOOK installation Guide on spigot: https://www.spigotmc.org/resources/63010/
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] You must install the zMenu plugin to run zAuctionHouse!
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Download here: https://www.spigotmc.org/resources/zmenu.110402/
[23:32:34] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] 
[23:32:34] [Server thread/INFO]: [Waves] Enabling Waves v1.1.21
[23:32:34] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[23:32:34] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v8.12.2
[23:32:34] [packetevents-update-check-thread/INFO]: [packetevents] There is an update available for PacketEvents! Your build: (2.7.0) | Latest release: (2.8.0)
[23:32:35] [Server thread/INFO]: [VoxelSniper] Registered 70 Sniper Brushes with 136 handles.
[23:32:35] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[23:32:35] [Thread-11/INFO]: Checking for updates...
[23:32:35] [Server thread/INFO]: [TrMenu] Enabling TrMenu v3.3.0b-SNAPSHOT
[23:32:35] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.3
[23:32:35] [Server thread/INFO]:  
[23:32:35] [Server thread/INFO]: __________________________________________________________
[23:32:35] [Server thread/INFO]:  
[23:32:35] [Server thread/INFO]:                        TradeSystem [2.6.3]
[23:32:35] [Server thread/INFO]:  
[23:32:35] [Server thread/INFO]: Status:
[23:32:35] [Server thread/INFO]:  
[23:32:35] [Server thread/INFO]: MC-Version: Paper (1.21.3)
[23:32:35] [Server thread/INFO]:  
[23:32:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[23:32:35] [Server thread/INFO]:   > Loading sounds
[23:32:35] [Server thread/INFO]:   > Loading blacklist
[23:32:35] [Server thread/INFO]:     ...got 1 blocked item(s)
[23:32:35] [Server thread/INFO]:   > Loading layouts
[23:32:35] [Server thread/INFO]:     ...got 5 layout(s)
[23:32:35] [Server thread/INFO]:   > Queuing database initializing task
[23:32:35] [Folia Async Scheduler Thread #5/INFO]: [TradeSystem] Database was started successfully.
[23:32:35] [Server thread/INFO]:  
[23:32:35] [Server thread/INFO]: Finished (489ms)
[23:32:35] [Server thread/INFO]:  
[23:32:35] [Server thread/INFO]: __________________________________________________________
[23:32:35] [Server thread/INFO]:  
[23:32:35] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
[23:32:35] [Server thread/INFO]: [TAB] Loaded NMS hook in 14ms
[23:32:36] [Server thread/INFO]: [TAB] Enabled in 140ms
[23:32:36] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.9.0-SNAPSHOT (build 522)
[23:32:36] [Server thread/INFO]: [Sentinel] Sentinel loading...
[23:32:36] [Server thread/INFO]: [Sentinel] Running on java version: 21.0.2
[23:32:36] [Server thread/WARN]: [Sentinel] You are running on an unrecognized (future?) minecraft version. Support channel be guaranteed. Check if there is a newer version of Sentinel available that supports your minecraft version.
[23:32:36] [Server thread/ERROR]: Error occurred while enabling Sentinel v2.9.0-SNAPSHOT (build 522) (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at Sentinel-2.9.0-SNAPSHOT-b522.jar/org.mcmonkey.sentinel.SentinelPlugin.onEnable(SentinelPlugin.java:318) ~[Sentinel-2.9.0-SNAPSHOT-b522.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 13 more
[23:32:36] [Server thread/INFO]: [Sentinel] Disabling Sentinel v2.9.0-SNAPSHOT (build 522)
[23:32:36] [Server thread/INFO]: [Sentinel] Sentinel unloading...
[23:32:36] [Server thread/INFO]: [Sentinel] Sentinel unloaded!
[23:32:36] [Server thread/INFO]: [Resources] Enabling Resources v2.9.1
[23:32:36] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.30.2
[23:32:36] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[23:32:37] [Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[23:32:39] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[23:32:39] [Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[23:32:39] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.10.6
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Starting OpenAudioMc, build 1502 by Mats
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Detected md_5 chat support, using default user adapter
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Skipped 45/45 migrations.
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] ModuleLoaderService: Loading modules from C:\Users\Lucas\Documents\Dev\1.21.3\plugins\OpenAudioMc\modules
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Using networking class com.craftmend.openaudiomc.generic.networking.DefaultNetworkingService
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Initializing connection service...
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Starting authentication module
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] This server already has an account, skipping sign up.
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Adding spigot tables
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Alias
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (alias<->Alias.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for ClientDataStore
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MojangProfile
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for RegionProperties
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Speaker
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for StoredWorldChunk
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for TimedRegionProperties
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MediaRule
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Initializing account details
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] The server is empty! ignoring voice chat.
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Loading aliases...
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 0 aliases
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Enabling the 1.13 speaker system
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Starting redstone speaker tick task with interval 5 ticks
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Playlist
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlists<->Playlist.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for PlaylistEntry
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlist_entries<->PlaylistEntry.java)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 0 media chunks from file.
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Enabling voicechat channel filter
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Loading static voice channels..
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: survival
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: off-topic
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: staff-chat
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 3 static voice channels
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Plugin Essentials is already enabled, running handler
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Plugin WorldGuard is already enabled, running handler
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Enabling the newer 1.13 regions
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Scanning 0 regions for duplicates (out of 0 total regions)
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] No duplicate regions found, skipping cleanup...
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Plugin PlaceholderAPI is already enabled, running handler
[23:32:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oa [1.0.0]
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] The legacy cdn exporter is disabled, skipping boot.
[23:32:39] [Server thread/INFO]: [OpenAudioMc] [info] Starting and loading took 36440MS
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] Enabling MythicMobsGUI v1.11.0
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] ----------------------[ Hooks Initializing ]----------------------
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] Citizens: Not Found!
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] DecentHolograms: Not Found!
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] HolographicDisplays: Not Found!
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] ItemsAdder: Success! version: 4.0.10-hotfix-1
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] LibsDisguises: Success! version: 11.0.5-SNAPSHOT
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] MMOCore: Success! version: 1.13
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] MMOItems: Success! version: 6.10
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] ModelEngine: Success! version: R4.0.8
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] MythicArtifacts: Not Found!
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] MythicCrucible: Not Found!
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] MythicMobs: Success! version: 5.8.2-6a2683d7
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] Oraxen: Not Found!
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] ProtocolLib: Success! version: 5.4.0-SNAPSHOT-747
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] Vault: Success! version: 1.7.3-b131
[23:32:39] [Server thread/INFO]: [MythicMobsGUI] WorldGuard: Success! version: 7.0.13+82fdc65
[23:32:40] [Server thread/INFO]: [MythicHUD] Enabling MythicHUD v1.2.2-SNAPSHOT
[23:32:40] [Server thread/INFO]: [MythicHUD] Mythic support detected.
[23:32:40] [Server thread/INFO]: [MythicHUD] PlaceholderAPI parser has been registered.
[23:32:40] [Server thread/INFO]: [MythicHUD] Generating resource pack for all versions
[23:32:41] [Server thread/INFO]: [MythicHUD] [ACF] Enabled Asynchronous Tab Completion Support!
[23:32:41] [Server thread/INFO]: [RPGInventory] Enabling RPGInventory v1.6.4
[23:32:41] [Server thread/INFO]: [RPGInventory] Successfully registered 8 inventory slots.
[23:32:41] [Server thread/WARN]: [RPGInventory] Could not initialize custom level module: Plugin 'AURELIUMSKILLS'not installed
[23:32:41] [Server thread/INFO]: [RPGInventory] Hooked onto MMOItems
[23:32:41] [Server thread/INFO]: [MIReplacer] Enabling MIReplacer v3.2.2
[23:32:41] [Server thread/WARN]: [MIReplacer] Couldn't find the type specified... Does it exist? (MATERIAL)
[23:32:41] [Server thread/WARN]: [MIReplacer] Couldn't find the type specified... Does it exist? (SWORD)
[23:32:41] [Server thread/WARN]: [MIReplacer] Couldn't find the type specified... Does it exist? (SWORD)
[23:32:41] [Server thread/WARN]: [MIReplacer] Couldn't find the type specified... Does it exist? (MISCELLANEOUS)
[23:32:41] [Server thread/WARN]: [MIReplacer] Couldn't find the type specified... Does it exist? (AXE)
[23:32:41] [Server thread/WARN]: [MIReplacer] Couldn't find the type specified... Does it exist? (AXE)
[23:32:41] [Server thread/WARN]: [MIReplacer] Couldn't find the type specified... Does it exist? (AXE)
[23:32:41] [Server thread/WARN]: [MIReplacer] Weighted List was empty, ignoring entry: IRON_AXE
[23:32:41] [Server thread/WARN]: [MIReplacer] Couldn't find the type specified... Does it exist? (CONSUMABLE)
[23:32:41] [Server thread/INFO]: [MIReplacer] Loading furnace recipes...
[23:32:41] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.5
[23:32:42] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.2
[23:32:42] [Server thread/INFO]: [MCPets] : Language file reloaded.
[23:32:42] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[23:32:42] [Server thread/INFO]: Loading pets... 
[23:32:42] [Server thread/INFO]:   - cubee-desert loaded succesfully.
[23:32:42] [Server thread/INFO]:   - cubee-jungle loaded succesfully.
[23:32:42] [Server thread/INFO]:   - cubee-lush loaded succesfully.
[23:32:42] [Server thread/INFO]:   - cubee-mushroom loaded succesfully.
[23:32:42] [Server thread/INFO]:   - cubee-plains loaded succesfully.
[23:32:42] [Server thread/INFO]:   - cubee-savanna loaded succesfully.
[23:32:42] [Server thread/INFO]:   - cubee-snow loaded succesfully.
[23:32:42] [Server thread/INFO]:   - cubee-swamps loaded succesfully.
[23:32:42] [Server thread/INFO]: [MCPets] : 8 pets registered successfully !
[23:32:42] [Server thread/INFO]: [MCPets] : 1 categories registered successfully !
[23:32:42] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[23:32:42] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[23:32:42] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[23:32:42] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[23:32:42] [Server thread/INFO]:       Plugin made by Nocsy
[23:32:42] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[23:32:42] [Server thread/INFO]: -=- Launching Flags -=-
[23:32:42] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[23:32:42] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[23:32:42] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[23:32:42] [Server thread/INFO]: 3 flags launched.
[23:32:42] [Server thread/INFO]: [LogoutAvatars] Enabling LogoutAvatars v2.0.0
[23:32:42] [Server thread/INFO]: [LM_Items] Enabling LM_Items v1.2.11
[23:32:42] [Server thread/INFO]: LM_Items: start-up complete, took 2 ms
[23:32:42] [Server thread/INFO]: [goBrush] Enabling goBrush v3.8.0-75
[23:32:43] [Server thread/INFO]: [FriendSystemGUI] Enabling FriendSystemGUI v4.9.8*
[23:32:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: friendsystem [4.9.8]
[23:32:43] [Server thread/INFO]: [FriendSystem] Loaded FriendSystem-Spigot plugin!
[23:32:43] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1
[23:32:43] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[23:32:43] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[23:32:43] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[23:32:43] [Server thread/INFO]: [DeluxeMenus] 46 GUI menus loaded!
[23:32:43] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[23:32:43] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[23:32:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[23:32:43] [Server thread/INFO]: [Codex] Enabling Codex v2.3.3
[23:32:43] [Server thread/INFO]: [WorldGuard] Registering session handler cx.ajneb97.managers.dependencies.worldguard.WorldGuardEntryManager
[23:32:43] [Server thread/INFO]: [Codex] ERROR ENABLING THE PLUGIN!
[23:32:43] [Server thread/INFO]: Your current config is not supported by the newer
[23:32:43] [Server thread/INFO]: versions of the plugin. More information on the
[23:32:43] [Server thread/INFO]: following link: https://www.spigotmc.org/resources/90371/
[23:32:43] [Server thread/INFO]: [Codex] Disabling Codex v2.3.3
[23:32:43] [Server thread/INFO]: [Codex] Has been disabled! Version: 2.3.3
[23:32:43] [Server thread/INFO]: [ChatManager] Enabling ChatManager v3.7.7
[23:32:43] [Server thread/INFO]: [ChatManager] Hooked into: PlaceholderAPI v2.11.6
[23:32:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatmanager [3.7.7]
[23:32:43] [Server thread/INFO]: [ChatManager] Hooked into: Essentials v2.20.1
[23:32:43] [Server thread/INFO]: [ChatManager] Hooked into: Vault v1.7.3-b131
[23:32:43] [Server thread/INFO]: [ChatManager] Hooked into: LuckPerms v5.4.40
[23:32:43] [Server thread/INFO]: [ChatManager] Plugin is up to date - v3.7.7
[23:32:43] [Server thread/INFO]: [ChatManager] Starting Metrics.
[23:32:43] [Server thread/INFO]: =========================
[23:32:43] [Server thread/INFO]: Chat Manager
[23:32:43] [Server thread/INFO]: Version 3.7.7
[23:32:43] [Server thread/INFO]: Author: H1DD3NxN1NJA
[23:32:43] [Server thread/INFO]: =========================
[23:32:43] [Server thread/INFO]: [BetterProfiles] Enabling BetterProfiles v1.6-BETA
[23:32:43] [Server thread/INFO]:   ___      _   _           ___          __ _ _          Running v1.6-BETA (v1_21)
[23:32:43] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ \_ _ ___ / _(_) |___ ___  Server Paper v1.21.3-83-d6c81da (MC: 1.21.3)
[23:32:43] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_|  _/ '_/ _ \  _| | / -_|_-<  Discord for support: https://alonsoaliaga.com/discord
[23:32:43] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |_| |_| \___/_| |_|_\___/__/  Thanks for using my plugin ❤!
[23:32:43] [Server thread/INFO]:           Developed by AlonsoAliaga
[23:32:43] [Server thread/INFO]: 
[23:32:43] [Server thread/INFO]: ==============================================================================================
[23:32:43] [Server thread/INFO]: [BetterProfiles] You are using a Paper fork (Paper), plugin should work fine!
[23:32:43] [Server thread/INFO]: [BetterProfiles] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[23:32:43] [Server thread/INFO]: ==============================================================================================
[23:32:43] [Server thread/INFO]: 
[23:32:43] [Server thread/INFO]: [Auto-update] Configuration items.yml is up-to-date!
[23:32:43] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[23:32:43] [Server thread/INFO]: [BetterProfiles] BungeeCord action bar available. Hooking..
[23:32:43] [Server thread/INFO]: [BetterProfiles] ProtocolLib found! Checking..
[23:32:43] [Server thread/INFO]: [BetterProfiles] ================================================================================
[23:32:43] [Server thread/INFO]: [BetterProfiles] This is not an error! AlonsoLib is required for some commands command
[23:32:43] [Server thread/INFO]: [BetterProfiles] modifiers like [JSON] and related ones. These modifiers won't be available.
[23:32:43] [Server thread/INFO]: [BetterProfiles] Download latest version of AlonsoLib in https://alonsoaliaga.com/AlonsoLib
[23:32:43] [Server thread/INFO]: [BetterProfiles] For more questions join us on https://alonsoaliaga.com/discord
[23:32:43] [Server thread/INFO]: [BetterProfiles] Plugin will continue working without issues. Only those features won't work.
[23:32:43] [Server thread/INFO]: [BetterProfiles] ================================================================================
[23:32:43] [Server thread/INFO]: [BetterProfiles] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[23:32:43] [Server thread/INFO]: [BetterProfiles] [SQLite] Attempting to create 'betterprofiles' table..
[23:32:43] [Server thread/INFO]: [SQLite] Connecting to database 'database-betterprofiles.db'!
[23:32:43] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.46.1
[23:32:43] [Server thread/INFO]: [SQLite] Successfully connected to database!
[23:32:43] [Server thread/INFO]: [BetterProfiles] [SQLite] Table 'betterprofiles' has been created if didn't exist.
[23:32:43] [Server thread/INFO]: [BetterProfiles] Successfully loaded 1 books!
[23:32:43] [Server thread/INFO]: [BetterProfiles] Offline command is disabled. Skipping..
[23:32:43] [Server thread/INFO]: [BetterProfiles] Enabling real time update profile..
[23:32:43] [Server thread/INFO]: [BetterProfiles] PlayerSwapHandItemsEvent class found. Enabling..
[23:32:43] [Server thread/INFO]: [BetterProfiles] Real time profile update is enabled.
[23:32:43] [Server thread/INFO]: [BetterProfiles] Enabled profile on right click.
[23:32:43] [Server thread/INFO]: [BetterProfiles] Loaded 3 items for 3 slots!
[23:32:43] [Server thread/INFO]: [BetterProfiles] PlaceholderAPI found! Hooking..
[23:32:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterprofiles [1.6-BETA]
[23:32:43] [Server thread/INFO]: [BetterProfiles] Bungee messaging system is allowed in this server. Enabling..
[23:32:43] [Server thread/INFO]: [BattlePass] Enabling BattlePass v4.8.18
[23:32:43] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[23:32:43] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[23:32:43] [Server thread/INFO]: [BattlePass] Finished loading the week-pool quests. All quests loaded successfully.
[23:32:43] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[23:32:43] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[23:32:43] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[23:32:44] [Server thread/INFO]: [EconomyShopGUI] Hooked into EconomyShopGUI
[23:32:44] [Server thread/INFO]: [MythicMobs] Using internal version as PluginVersion{major=5, minor=8, bugfix=2} for loading MythicMobs.
[23:32:44] [Server thread/INFO]: [MythicMobs] Hooked into MythicMobs
[23:32:44] [Server thread/INFO]: [MMOCore] Hooked into MMOCore
[23:32:44] [Server thread/INFO]: [MMOItems] Hooked into MMOItems
[23:32:44] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[23:32:44] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[23:32:44] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[23:32:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: battlepass [1.1]
[23:32:44] [Server thread/INFO]: [AxTrade] Enabling AxTrade v1.14.1
[23:32:44] [Server thread/INFO]: [AxTrade] Hooked into Vault!
[23:32:44] [Server thread/INFO]: [AxTrade] Hooked into PlayerPoints!
[23:32:44] [Server thread/INFO]: [AxTrade] Loaded plugin!
[23:32:44] [Server thread/INFO]: [AxiomPaper] Enabling AxiomPaper v4.0.3+1.21.3
[23:32:44] [Server thread/INFO]: [AnimationsCore] Enabling AnimationsCore v2.3.2
[23:32:45] [Server thread/INFO]: [AnimationsCore] animcore and emote commands registered with executor and completer.
[23:32:45] [Server thread/INFO]: [AnimationsCore] AnimationsCore plugin has been enabled.
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Enabling AlonsoLevels v2.3.2-BETA
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Max health Attribute check found. Using it..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Inventory title with support for more than 32 characters. Skipping..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Hex colors are available! Ready for RGB..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Old constructor for HoverEvent found! Using it..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] New sendTitle method found! Using it..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] New setUnbreakable method found! Using it..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] New isUnbreakable method found! Using it..
[23:32:45] [Server thread/INFO]:     _   _                  _                _     Running v2.3.2-BETA (v1_21)
[23:32:45] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___| |   _____ _____| |___ Server Paper v1.21.3-83-d6c81da (MC: 1.21.3)
[23:32:45] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ |__/ -_) V / -_) (_-< Discord for support: https://alonsoaliaga.com/discord
[23:32:45] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/____\___|\_/\___|_/__/ Thanks for purchasing my plugin ❤!
[23:32:45] [Server thread/INFO]:                  Developed by AlonsoAliaga
[23:32:45] [Server thread/INFO]: 
[23:32:45] [Server thread/INFO]: ==============================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] You are using a Paper fork (Paper), plugin should work fine!
[23:32:45] [Server thread/INFO]: [AlonsoLevels] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[23:32:45] [Server thread/INFO]: ==============================================================================================
[23:32:45] [Server thread/INFO]: 
[23:32:45] [Server thread/INFO]: [AlonsoLevels] BungeeCord action bar available. Hooking..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] ProtocolLib found! Checking..
[23:32:45] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[23:32:45] [Server thread/INFO]: [AlonsoLevels] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] [SQLite] Attempting to create 'alonsolevels' table..
[23:32:45] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsolevels.db'!
[23:32:45] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.46.1
[23:32:45] [Server thread/INFO]: [SQLite] Successfully connected to database!
[23:32:45] [Server thread/INFO]: [AlonsoLevels] [SQLite] Table 'alonsolevels' has been created if didn't exist.
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Database found! Everything is working as expected.
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Old ItemStack constructor is available!
[23:32:45] [Server thread/INFO]: [AlonsoLevels] SkullMeta#setOwningPlayer method is available for heads.
[23:32:45] [Server thread/INFO]: [AlonsoLevels] SkullMeta#setOwner method is available for heads.
[23:32:45] [Server thread/INFO]: [AlonsoLevels] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] New setUnbreakable method found! Using it..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] New setOwningPlayer method is available!
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Old Bukkit#getOfflinePlayer(String name) method is available!
[23:32:45] [Server thread/INFO]: [AlonsoLevels] New isUnbreakable method found! Using it..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Server name has been selected as 'Lobby'
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Config files are (re)loading.. Timestamp: Negative | Negative
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Formula for experience is enabled! Loading..
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Failed to load 'JavaScript' (1).
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Failed to load 'JavaScript' (2).
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Failed to load 'graal.js' (1).
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Failed to load 'graal.js' (2).
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Failed to load 'js' (1).
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Failed to load 'js' (2).
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Failed to load 'nashorn' (1).
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Failed to load 'nashorn' (2).
[23:32:45] [Server thread/INFO]: ===========================================================================================
[23:32:45] [Server thread/INFO]: JSEngine found! Getting and assigning JavaScript engine..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Successfully loaded 30 levels!
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Loaded 20 normal rewards in 1 pages.
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Veteran section is not enabled in configuration. Skipping veteran rewards..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Section for 'Normal multipliers' called 'Normal' in multipliers.yml is invalid. Skipping..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Loaded 0 normal multipliers.
[23:32:45] [Server thread/INFO]: [AlonsoLevels] Veteran section is not enabled in configuration. Skipping veteran multipliers..
[23:32:45] [Server thread/INFO]: [AlonsoLevels] PlaceholderAPI found! Hooking..
[23:32:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsolevels [2.3.2-BETA]
[23:32:45] [Server thread/INFO]: [AlonsoLevels] VaultMultiplier wasn't found! Skipping..
[23:32:45] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.7.0
[23:32:45] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[23:32:45] [Server thread/INFO]: [ajLeaderboards] The columns already exist for javascript_power. Canceling updater and bumping DB version.
[23:32:45] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mob_kills. Canceling updater and bumping DB version.
[23:32:45] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[23:32:45] [Server thread/INFO]: [ajLeaderboards] Loaded 3 boards
[23:32:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.7.0]
[23:32:45] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[23:32:45] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[23:32:45] [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!
[23:32:45] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0 by ajgeiss0702 enabled!
[23:32:46] [Server thread/INFO]: [spark] Starting background profiler...
[23:32:46] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[23:32:46] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[23:32:46] [Server thread/INFO]: Done preparing level "world" (27.690s)
[23:32:46] [Server thread/INFO]: Running delayed init tasks
[23:32:46] [Craft Scheduler Thread - 20 - Essentials/INFO]: [Essentials] Récupération des informations de version...
[23:32:46] [Craft Scheduler Thread - 13 - ItemJoin/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, PlaceholderAPI, ProtocolLib, Vault }
[23:32:46] [Craft Scheduler Thread - 8 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[23:32:46] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[23:32:46] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[23:32:46] [Craft Scheduler Thread - 24 - zAuctionHouseV3/INFO]: [zAuctionHouseV3] The database connection is valid ! (192.168.10.10)
[23:32:46] [Craft Scheduler Thread - 11 - PlayerPoints/INFO]: [RoseGarden] An update for PlayerPoints (v3.3.2) is available! You are running v3.2.6.
[23:32:46] [Craft Scheduler Thread - 29 - ItemJoin/INFO]: [ItemJoin] Checking for updates...
[23:32:46] [Craft Scheduler Thread - 32 - Vault/INFO]: [Vault] Checking for Updates ... 
[23:32:46] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[23:32:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[23:32:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[23:32:46] [Craft Scheduler Thread - 4 - BetterProfiles/INFO]: [BetterProfiles] Checking for updates...
[23:32:46] [Craft Scheduler Thread - 4 - BetterProfiles/INFO]: [BetterProfiles] Plugin up-to-date! You have the latest version!
[23:32:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[23:32:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[23:32:46] [Craft Scheduler Thread - 27 - BattlePass/WARN]: [BattlePass] Plugin BattlePass v4.8.18 generated an exception while executing task 11853
java.lang.IllegalStateException: Not a JSON Object: "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
    at com.google.gson.JsonElement.getAsJsonObject(JsonElement.java:101) ~[gson-2.10.1.jar:?]
    at BattlePass-4.8.18.jar/me.hyfe.simplespigot.storage.backends.FlatBackend.load(FlatBackend.java:41) ~[BattlePass-4.8.18.jar:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]
    at BattlePass-4.8.18.jar/me.hyfe.simplespigot.storage.backends.FlatBackend.loadAll(FlatBackend.java:65) ~[BattlePass-4.8.18.jar:?]
    at BattlePass-4.8.18.jar/me.hyfe.simplespigot.storage.storage.Storage.loadAll(Storage.java:63) ~[BattlePass-4.8.18.jar:?]
    at BattlePass-4.8.18.jar/io.github.battlepass.cache.UserCache.getAll(UserCache.java:102) ~[BattlePass-4.8.18.jar:?]
    at BattlePass-4.8.18.jar/io.github.battlepass.controller.LeaderboardController.getTierLeaderboard(LeaderboardController.java:41) ~[BattlePass-4.8.18.jar:?]
    at BattlePass-4.8.18.jar/io.github.battlepass.controller.LeaderboardController.lambda$new$0(LeaderboardController.java:33) ~[BattlePass-4.8.18.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.21.3.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: Soifroz (1268845)
[23:32:46] [Craft Scheduler Thread - 5 - RPGInventory/INFO]: [RPGInventory] A new build is available: 1.9 (you are running 1.6.4)
[23:32:46] [Craft Scheduler Thread - 5 - RPGInventory/INFO]: [RPGInventory] Download it here: https://www.spigotmc.org/resources/99445/
[23:32:46] [Craft Scheduler Thread - 32 - Vault/INFO]: [Vault] No new version available
[23:32:46] [Craft Scheduler Thread - 10 - MiniMOTD/INFO]: [MiniMOTD] Cannot look for updates: Server returned HTTP response code: 403 for URL: https://api.github.com/repos/jpenilla/MiniMOTD/releases
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/WARN]: [ItemsAdder] Can't find item 'minerals_pack_v2:tungsten' to load some settings. File '/contents/minerals_pack_v2/configs/minerals_pack_v2.yml'
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/WARN]: [ItemsAdder] Can't find item 'minerals_pack_v2:tungsten' to load some settings. File '/contents/minerals_pack_v2/configs/minerals_pack_v2.yml'
[23:32:46] [Craft Scheduler Thread - 24 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading items
[23:32:46] [Craft Scheduler Thread - 24 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading transactions
[23:32:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.2.6]
[23:32:46] [pool-52-thread-2/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of transactions successfully completed.
[23:32:46] [Craft Scheduler Thread - 29 - ItemJoin/INFO]: [ItemJoin] You are up to date!
[23:32:46] [pool-52-thread-1/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of items successfully completed.
[23:32:46] [Craft Scheduler Thread - 20 - Essentials/WARN]: [Essentials] Impossible de vérifier votre version ! S’agit-il d’une version auto-générée ? Informations de la build : id:'2.20.1' branch:'2.x' isDev:false.
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_barrel'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_barrel_big'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_cobble_path_a'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_cobble_path_b'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_cobble_path_c'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_fountain'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_notice_board'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_notice_board_dyeable'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_sack'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_sack_small'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_a_lightwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_a_normal'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_a_rustwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_b_lightwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_b_normal'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_b_rustwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_c_lightwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_c_normal'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_bench_c_rustwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_shelf_long_lightwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_shelf_long_normal'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_shelf_long_rustwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_shelf_short_lightwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_shelf_short_normal'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Craft Scheduler Thread - 23 - ItemsAdder/ERROR]: [ItemsAdder] Error loading furniture 'realms_village_2:furniture_wooden_shelf_short_rustwood'. 'display_transformation' is available only for 'item_display'. File /contents/realms_village_2/configs/realms_village_2/realms_village_2.yml
[23:32:46] [Server thread/INFO]: [ItemJoin] 1/1 Custom item(s) loaded!
[23:32:46] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing butcher.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing archer.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing avatar_shaman.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing avatar_mage.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing avatar_assassin.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing blacksmith.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing cactus.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing avatar_archer.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing artorias_greatsword.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing four_leaf_clover.bbmodel.
[23:32:46] [Server thread/INFO]:    >> Loaded 0 Layers
[23:32:46] [Server thread/INFO]:    >> Loaded 0 Loot Tables
[23:32:46] [Server thread/INFO]:    >> Loaded 0 Resources
[23:32:46] [Server thread/INFO]:    >> Loaded 0 Locations
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing avatar_summoner.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [Server thread/INFO]: Resources loaded files after Multiverse-Core loaded
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing death.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing avatar_warrior.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.30.2]
[23:32:46] [Server thread/INFO]: LM_Items: building API classes
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing flame_trap.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing farmer.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing gravelord_greatsword.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing deathbloom.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing death_spike.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing guardorange.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing guard.bbmodel.
[23:32:46] [Server thread/INFO]: LM_Items: Discovered MMOItems
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing guardcyan.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing fravager_axe.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [Server thread/INFO]: LM_Items: Discovered ItemsAdder
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing la_astral_model.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing guardpurple.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing la_sleep.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing healing_crystal.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing guardpink.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing guardyellow.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing la_beach_model.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing guardparts.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing magical_herb.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing leave_flyaway.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing mushroom_glowing.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing moonlight_greatsword.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing mob_ward.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing mushroom_red.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing la_elden_ring_reference.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing npc_blacksmith.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing la_epic_statue.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing npc_farmer.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing miner.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing npc_archer.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing npc_assassin.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing guardred.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing npc_healer.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing guardgreen.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing npc_merchant_blue.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing npc_merchant_green.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing npc_merchant_purple.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing npc_librarian.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing npcgreeting.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing npc_merchant_yellow.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing npc_guard.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing obsidian_greatsword.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing npc_merchant_black.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing npc_cook.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing quelaags_furysword.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing sawblade_trap_long.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing npc_mage.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing shamrock.bbmodel.
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing npc_merchant_red.bbmodel.
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing sawblade_trap_short.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing npc_miner.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing npc_shaman.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing spike_trap_pop_up.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing spike_trap_still.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing spike_ball_trap.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing npc_warrior.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing portal_round.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing npc_summoner.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing summoning_totem.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing tc_cyclops_spike.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing waystone.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing portal.bbmodel.
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing wild_berry.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing warp_pipe.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [Server thread/WARN]: [ajLeaderboards] An error occurred while loading a sign:
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getChunkAt(org.bukkit.Location)" because the return value of "org.bukkit.Location.getWorld()" is null
    at org.bukkit.Location.getChunk(Location.java:123) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.<init>(BoardSign.java:37) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.BoardSign.deserialize(BoardSign.java:141) ~[ajLeaderboards-2.7.0.jar:?]
    at ajLeaderboards-2.7.0.jar/us.ajg0702.leaderboards.displays.signs.SignManager.reload(SignManager.java:63) ~[ajLeaderboards-2.7.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1246) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing pirate.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_archer_arrow_impact.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing vfx_archer_arrow.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing tidal_wave.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_10.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_archer_hurricane_trail.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_12.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_2.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_3.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_4.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_5.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing stomp_shockwave.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_6.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_7.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_9.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_1.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_8.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing battleaxe.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing dagger.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing greatsword.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing claymore.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_11.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing rapier.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing straightsword.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing greataxe.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing wizard.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing nether_armor_layer_2.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scimitar.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing nether_armor_layer_1.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing urakumo.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing nether_crossbow_0.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nether_crossbow.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing uchigatana.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing nether_axe.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nether_crossbow_arrow.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing nether_crossbow_1.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing nether_hoe.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing nether_blocking_shield.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names tendrils. Naming bone with UUID 807e88ec-3671-8ca1-b509-683342c2484d
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nether_helmet.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names horn. Naming bone with UUID 435ec2ff-361d-5286-2289-60eee66d195c
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nether_shield.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names tendrils. Naming bone with UUID 807e88ec-3671-8ca1-b509-683342c2484d
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing nether_crossbow_2.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nether_shovel.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing nether_pickaxe.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing nether_crossbow_firework.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing nether_gun.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names right_leg. Naming bone with UUID f583235b-58d9-35f2-da7e-cbe7ce2f3f1c
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names right_leg. Naming bone with UUID 21454f0d-9eff-fab3-acf5-4f94b9f13dbb
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names left_leg. Naming bone with UUID a132e31f-2758-0ef2-3ae4-e8a0400becad
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names left_leg. Naming bone with UUID 11689d60-5e28-b2a7-8cfe-4a8e883bf9db
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names right_leg. Naming bone with UUID ae341a07-de81-fcaa-4be5-23a1f7c63068
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names right_leg. Naming bone with UUID 9751db32-13f5-0a43-7a60-740cbf732adf
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names right_leg. Naming bone with UUID 06412a9d-a2ba-6998-13e8-2a18dd40efc6
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names left_leg. Naming bone with UUID 0c56e0bd-1209-5d8d-0d90-e5e61191f46b
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names left_leg. Naming bone with UUID c7f3b16c-1f48-605d-def1-cea074fdb600
[23:32:46] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names left_leg. Naming bone with UUID c7f53480-bf71-bdb1-93d3-68f6dfd85dfd
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing nether_mace.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nether_sword.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing bear_trap.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing nether_shrimp.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing explosive_barrel.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing combat_dummy.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing dungeon_spike.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing slime_pit.bbmodel.
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Skill: GarrickCharge | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\ExampleSkills.yml
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic DASH
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: dash{velocity=1.5;duration=10}
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Skill: SyliaDash | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\ExampleSkills.yml
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic DASH
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: dash{velocity=2;duration=5}
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'nearbyplayers{r=3}': Failed to load custom targeter NEARBYPLAYERS
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'nearbyplayers{r=3}': Failed to load custom targeter NEARBYPLAYERS
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'nearbyplayers{r=4}': Failed to load custom targeter NEARBYPLAYERS
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'nearbyplayers{r=4}': Failed to load custom targeter NEARBYPLAYERS
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'nearbyplayers{r=4}': Failed to load custom targeter NEARBYPLAYERS
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'nearbyplayers{r=5}': Failed to load custom targeter NEARBYPLAYERS
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing turtlebig.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing dungeon_statue.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing em_dskeleton_variations.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing health_pack.bbmodel.
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Skill: rotatescene | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\Scenes\skill_scenes_npc.yml
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MATCHROTATION
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: matchrotation
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Skill: SmolderingShadowGrillFinishSkill | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\SmolderingShadowSkillsEC.yml
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic ENTITYGOGGLE
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: entitygoggle{duration=60}
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Skill: SmolderingShadowGrillFinishSkill | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\SmolderingShadowSkillsEC.yml
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic ENTITYLOOKIN
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: entitylookin{duration=60}
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Skill: SmolderingShadowEatFinishSkill | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\SmolderingShadowSkillsEC.yml
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic ENTITYGOGGLE
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: entitygoggle{duration=60}
[23:32:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Skill: SmolderingShadowEatFinishSkill | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\SmolderingShadowSkillsEC.yml
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic ENTITYLOOKIN
[23:32:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: entitylookin{duration=60}
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_dskeleton_footman.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing tc_cyclops.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing desktop.ini.
[23:32:46] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Error: Unknown format.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing em_dskeleton_swordman.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing soulknight.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing cpblood_ravagemarker.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing cpblood_shockwaveresources.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_dskeleton_wizard_death.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing corruptblood_resources.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing cpblood_supershockwave.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing cpblood_dusthit.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing Erocavontic_Frozen_Gateway.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing em_dskeleton_tank.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing Erocavontic_Lunar_Runestone.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing Erocavontic_Celestial_Nexus.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing fhero_fireexplosion.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing fhero_shockwave.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing fhero_shockwave2.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing fhero_supershockwave.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing em_dskeleton_archer.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing fravager_shockwaveresources.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing firexplosion_resources.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing smolderingshadow.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing ravager_fire_blade.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing Erocavontic_Candlelit_Passage.bbmodel.
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:46] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing ravage_effectus_xd.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing soldierplosion_reources.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing em_dskeleton_halberdier.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing fsoldier_fireexplosion.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing soldier_fireblade.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing v4fallen_shared_resources.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing ravager_fireblade2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing em_dskeleton_warrior.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing soldier_thrustblade.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing fallen_mauler3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing v4fallen_slashfx.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing ravagerstatue.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing hv_bone_boar.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing fallen_mauler_statue.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing fallen_mauler2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing hv_ender_boar.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing hv_ice_boar.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing hv_golden_boar.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing hv_sand_boar.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing hv_dead_boar.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing fallenravageress_rewnder.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing hv_stone_boar.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing lostasset_mob6_FlowerBee.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing hv_magma_boar.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing barrel_with_weapons.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing big_vase.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing bones.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing fallenravager2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing book_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing book_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing book_opened.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing bottle.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing bronze_coins.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing bottles.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing clock.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing cauldron.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing fruit_basket.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing basket.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing lostasset_mob6_FlowerDeer.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing gold_coins.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing globe.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID SWORD
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [Server thread/WARN]: [MMOItems] Could not load drop item: Could not find type with ID ARMOR
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing medium_vase.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing kettle.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing em_dskeleton_wizard.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing fallenravager3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing lostasset_mob6_FlowerCow.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing lostasset_mob6_FlowerBud.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing oak_log_pile_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing oak_log_pile_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing papers.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing oak_planks_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing oak_plank.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing potion_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing roasted_pork.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing roated_chicken.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing sack.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing scroll.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing scrolls.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [Server thread/INFO]: Done (57.511s)! For help, type "help"
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing scroll_opened.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing silver_coins.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skull.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skull_with_bones.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing small_vase.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing target.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing trophy.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing wooden_barrel.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing wooden_bucket.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing wooden_bucket_with_water.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing wooden_cup.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing lostasset_mob6_FlowerBud_Thorn.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing more_jar_of_honey.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing money.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing jar_of_honey.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing medieval_lamp.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing plate.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing wooden_cups.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing potion_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names group. Naming bone with UUID 8d9e48e5-cbdc-b0bd-1f68-d4b11edaeda1
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing fallen_mauler.bbmodel.
[23:32:47] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.SCUTE
[23:32:47] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[23:32:47] [Server thread/WARN]:     at org.bukkit.Material.valueOf(Material.java:137)
[23:32:47] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.core.skills.projectiles.bullet.ArmorStandPacketBullet.lambda$new$1(ArmorStandPacketBullet.java:92)
[23:32:47] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[23:32:47] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[23:32:47] [Server thread/WARN]:     at MythicMobs-5.8.2.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[23:32:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[23:32:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[23:32:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1804)
[23:32:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1665)
[23:32:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1330)
[23:32:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[23:32:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[23:32:47] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[23:32:47] [Server thread/WARN]: [MythicMobs] --| Skill: TheGreatTurtleUrchinProjectile | File: C:\Users\Lucas\Documents\Dev\1.21.3\plugins\MythicMobs\skills\TheGreatTurtleSkillsMEG.yml
[23:32:47] [Server thread/WARN]: [MythicMobs] --| Error Message: Specified bullet material does not exist
[23:32:47] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=TRACKING;bulletmaterial=scute;bulletModel=1000002;onTick=TheGreatTurtleUrchinProjectile<&da>Tick;onHit=TheGreatTurtleUrchinProjectile<&da>Hit;onEnd=TheGreatTurtleUrchinProjectile<&da>End;d=200;v=60;mr=50;i=1;hR=1;vR=1;sE=false;sB=true;hnp=true;syo=1;sfo=2}
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nm_owl_horned.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing nm_owl_barn.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing splash_spawn.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nm_owl_screech.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing magic_spawn.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing smoke_spawn.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing oak_log.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing nm_warthog.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing nm_squirrel_brown.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing soulknight_withhorse.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing meteor_spawn.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing em_firespirit.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing wooden_plate_with_cup.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_phspirifirefx1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing nm_squirrel_red.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing nm_squirrel_gray.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing em_phspirifirefx3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing wooden_plate.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing em_phfx1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_phspirifireprojectile_a.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing em_phspirifirefx2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing pb_rpg3-horizontal_fan.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing pb_rpg3-hanging_skeleton.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing pb_rpg3-barricade.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing pb_rpg3-jump_pad.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing pb_rpg3-lever.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing pb_rpg3-poison_emitter.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing pb_rpg3-shrine_binary.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing spirifire_resources.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing nm_warthog_baby.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing pb_rpg3-trigger_pad.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing pb_rpg3-speed_pad.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing barrel_explosive.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing pb_rpg3-streetlamp.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing boulder.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing pb_rpg3-vertical_fan.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing chest_aqua.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing pb_rpg3-shrine_elemental.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing potions-pot-materials.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing chest_bone.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing chest_golden.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing chest_light.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing chest_shadow.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing chest_magma.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing chest_ice.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing barrel_poison.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing chest_forest.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing ore_copper.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing log.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing pb_rpg3-cube.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing ore_dragonite.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing ore_gold.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing ore_diamond.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing chest_wooden.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing em_phwraith.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing ore_emerald.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing pebbles_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing ore_sapphire.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing pebbles_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing chest_wind.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing ore_iron.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing runestone_resistance.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing ore_ruby.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing runestone_strength.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vase_tall.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_beam_projectile.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_earthquake_rupture_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_earthquake_dust.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_earthquake_rupture_3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_earthquake_rupture_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_earthquake_rupture_5.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing runestone_heal.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing runestone_speed.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_12.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing nm_owl_long_eared.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_10.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing ore_topaz.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_earthquake_rupture_4.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_earthquake_wave.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_4.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_6.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_8.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_7.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_impact.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_ghost_blade.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing fallenravager.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_pierce_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_9.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_pierce_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_ghost_pierce_3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_pierce_5.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_pierce_7.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing vfx_ghost_pierce_6.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_4.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_6.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_7.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_8.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_5.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_9.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_spin.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_zigzag_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing vfx_ghost_pierce_4.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_11.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_zigzag_3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_zigzag_4.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing vfx_eruption_explosion_3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing vfx_ghost_slash_5.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_ghost_zigzag_7.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing vfx_ghost_zigzag_5.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_prismatic_shield_2.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing vase_common.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing vase_small.bbmodel.
[23:32:47] [Craft Scheduler Thread - 13 - AlonsoLevels/INFO]: [AlonsoLevels] Checking for updates...
[23:32:47] [Craft Scheduler Thread - 13 - AlonsoLevels/INFO]: [AlonsoLevels] Plugin up-to-date! You have the latest version!
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing vfx_prismatic_shield_5.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing vfx_ghost_zigzag_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing vfx_prismatic_shield_3.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vfx_prismatic_shield_4.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing vfx_ghost_zigzag_6.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing explosive_seed.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing vfx_ghost_zigzag_8.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing vfx_prismatic_shield_1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing nm_owl_snowy.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing vfx_prismatic_shield_7.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing vfx_warhammer.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing bug_swarm.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing vfx_ground_pound.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing mutant_flower_vine.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing chest_copper_animate_mm.bbmodel.
[23:32:47] [Craft Scheduler Thread - 33 - AlonsoTags/INFO]: [AlonsoTags] Checking for updates...
[23:32:47] [Craft Scheduler Thread - 33 - AlonsoTags/INFO]: [AlonsoTags] Plugin up-to-date! You have the latest version!
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing chest_silver_animate_mm.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing thorn_spitter.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing vfx_prismatic_shield_6.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing vine_guardian.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing gold_biome_box.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing mutant_flower.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing jungle_biome_box.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing legend_biome_box.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing snow_biome_box.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing nather_biome_box.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing chest_wood_animate_mm.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing oak_wood_biome_box.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing awakened_shrub.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing vine_root.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing em_phsnitch.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing mimic_box.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing em_leafvfx.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing underwater_biome_box.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing chest_gold_animate_mm.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing feysap_projectile.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing fey_venom_resources.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing sapspill_em_projectile.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing feywind_tornado.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing sapplosion1_resources.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing em_darkcrackleball.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing sapplosion1_marker.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing em_dyerftum1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing em_roccxd.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing em_kbwizard_fireprojectile.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing em_kbwizard_grinprojectile.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing em_kbwizard_projectile.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing em_crackleball.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing em_kbwizard_purprojectile.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing em_crackler.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing em_darkpebble.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_deepcrackler.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing em_pebble.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing em_kobold_archer.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing em_kobold_civil.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing vs_h_black.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing em_kobold_halberdier.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing em_dyerftum5.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vfx_ghost_pierce_8.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing vs_h_luckyluke.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing vs_h_brown_spots.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing vs_h_white.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing vs_h_brown.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing fey_venom_marker1.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing em_kobold_miner.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing cubee-desert.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing cubee-jungle.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing em_kobold_warrior.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing cubee-snow.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing em_dskeleton_firexplosion_marker.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing cubee-lush.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing em_dsw_fireball.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing em_dskeleton_fire_resources.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing cubee-mushroom.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing em_dyerftum4.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing em_dskeleton_wizardshield.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing cubee-swamps.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing anim-in-hellgate.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing cubee-savanna.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing anim-in-ragdollpossession.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing anim-in-risendread.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing anim-out-hellgate.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing desktop.ini.
[23:32:47] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Error: Unknown format.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_kobold_soldier.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing em_kobold_wizard.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing fs_treasures_beach_chest.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing fs_huntress.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing anim-out-ragdollpossession.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing anim-out-risendread.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing tower_skeleton_minion.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing tower_skeleton_parts.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing tower_skeleton_shield_break.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing tower_skeleton_slash_fx.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing tower_skeleton_summon_hole.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing fs_treasures_beach_crate.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing fs_treasures_beach_bottle.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing anim-in-cadavercurse.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing anim-out-cadavercurse.bbmodel.
[23:32:47] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:47] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing tower_skeleton_chest.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing anim-in-midnightlord.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing scenes_pigeon1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing crackler_dustplosionmarker.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_big_throwable_rocc.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scenes_pigeon2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_darkbig_throwable_rocc.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing em_throwable_rocc.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing em_darkthrowable_rocc.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scenes_vine_2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing anim-out-midnightlord.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scene_farmer.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing tower_skeleton_throne.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing cubee-plains.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scene_guards.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing scene_guards2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing scenes_pigeon3.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scene_lumberjack_interactive.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing scene_lumberjack_saw.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing scenes_vine.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing tower_skeleton.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names cape_1. Naming bone with UUID bd981c5d-c931-dd17-c8c5-27a8dcc26b3a
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names cape_4. Naming bone with UUID 6bfb2c1b-6f82-5458-b86a-9264d737824c
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names cape_2. Naming bone with UUID 8a482b10-261b-0c71-9874-73e4c200c9be
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names cape_5. Naming bone with UUID b3fc8290-ccb5-9c56-f235-2aa750a213e5
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names cape_3. Naming bone with UUID 7cef2a40-7e3e-95af-4255-b650d2f58194
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing scene_blacksmith_5_interactive.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing scene_blacksmith_4.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scene_blacksmith_2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing scene_townsfolk_1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing scene_townsfolk_2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing scene_blacksmith_3.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing scene_fishermen.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing scene_blacksmith_1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing em_dyerftum2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing em_dyerftum3.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing scene_townsfolk_5_pose_3.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing scene_townsfolk_5_pose_6.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing scene_townsfolk_5_pose_1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing scenes_pigeon.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing scene_townsfolk_5_pose_2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing scene_townsfolk_5_pose_5.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing scene_townsfolk_5_pose_4.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing scene_townsfolk_5_pose_7.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scene_townsfolk_3.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing scene_townsfolk_vol3_beggar.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing scene_townsfolk_vol3_mug.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing scene_townsfolk_vol3_writer.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing apron.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing scene_townsfolk_vol3_readers.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing scene_townsfolk_vol3_swing.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing scene_townsfolk_vol3_swing_mount.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing guard_armor.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scene_wanderers_1_vol1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing ear_muffs.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing santa_hat.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing scene_townsfolk_4.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing right_gloves.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing horse_black.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing scarf.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing horse_chestnut.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing horse_creamy.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing horse_darkbrown.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing horse_gray.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing horse_white.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing traveler_backpack.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing skin_10.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing left_gloves.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_11.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing scenes_pigeons_fly.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_13.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_15.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skin_16.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_17.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_18.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing horse_brown.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skin_19.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing straw_hat.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_21.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skin_22.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skin_25.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing skin_23.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing skin_12.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing skin_14.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_24.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_20.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skin_26.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_30.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_3.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_32.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing scene_wanderers_2_vol1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_35.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing skin_28.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing scenes_pigeons_ground.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_34.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing scene_lumberjack.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_37.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_4.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing skin_29.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_33.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing skin_38.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_41.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing skin_43.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing skin_39.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing skin_45.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing skin_36.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing skin_27.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skin_31.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_44.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_42.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_46.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing skin_47.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_53.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skin_51.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_52.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing skin_5.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_56.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing skin_55.bbmodel.
[23:32:48] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing skin_48.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing skin_50.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_6.bbmodel.
[23:32:48] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing skin_62.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_63.bbmodel.
[23:32:48] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing skin_64.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_65.bbmodel.
[23:32:48] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing skin_60.bbmodel.
[23:32:48] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing skin_66.bbmodel.
[23:32:48] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing skin_40.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing skin_49.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing skin_8.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing skin_7.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing scene_townsfolk_vol3.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing skin_68.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing skin_61.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing skin_59.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skin_58.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing naked.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skin_67.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skin_54.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing skin_57.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing skinundead9.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing skinundead8.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing skinundead7.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing skinundead6.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing skinundead5.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing skinundead4.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing skinundead3.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing skinundead2.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing skinundead10.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing skinundead1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing skin_9.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing wanderer_15.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing wanderer_14.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing wanderer_13.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing wanderer_12.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing wanderer_11.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing wanderer_10.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing wanderer_1.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing wanderer.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:48] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing wanderer_19.bbmodel.
[23:32:48] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing wanderer_2.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing wanderer_18.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing wanderer_16.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing wanderer_20.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing wanderer_17.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing skin.bbmodel.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing wanderer_9.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing wanderer_8.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing wanderer_4.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing wanderer_7.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing wanderer_21.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing wanderer_3.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-12/INFO]: [ModelEngine] [A] Importing wanderer_6.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[23:32:49] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing wanderer_5.bbmodel.
[23:32:49] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing skinundead.bbmodel.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[23:32:49] [Craft Scheduler Thread - 26 - AxTrade/INFO]: AxTrade » There is a new version of the plugin available! (current: 1.14.1 | latest: 1.16.3)
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion changeoutput. Identifier is already in use.
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion changeoutput due to an unknown issue.
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.2]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: griefprevention [1.6.0]
[23:32:50] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 1 script loaded!
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.0]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] There was an issue with loading an expansion.
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: plugin [1.1.0]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: replace [2.0.0]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: tinify [2]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[23:32:50] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 1 script loaded!
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion javascript. Identifier is already in use.
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion javascript due to an unknown issue.
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion math. Identifier is already in use.
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion math due to an unknown issue.
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion player. Identifier is already in use.
[23:32:50] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion player due to an unknown issue.
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: string [1.0.6]
[23:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: utils [1.0.9]
[23:32:50] [Server thread/INFO]: 19 placeholder hook(s) registered! 6 placeholder hook(s) have an update available.
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 1195 items
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Used Blocks IDs:
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder]  - REAL 0/188
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_NOTE 83/750
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_TRANSPARENT 0/63
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder]  - FIRE 0/14
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Used Font Images: 388/6608
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 14 categories
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] [Content] Contents loaded successfully!
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] ResourcePack
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder]  - Path: /1.21.3/plugins/ItemsAdder/output/generated.zip
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder]  - Download: http://127.0.0.1:8163/generated.zip
[23:32:52] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder]  - Size: 16 MB/250 MB (6%)
[23:32:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[23:32:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[23:32:53] [Server thread/INFO]: [AlonsoTags] [ItemsAdder] ItemsAdder items were updated. Reloading tags..
[23:32:53] [Server thread/ERROR]: Could not pass event ItemsAdderLoadDataEvent to ItemsAdder v4.0.10-hotfix-1
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at ItemsAdder_4.0.10-hotfix-1.jar/dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:85) ~[ItemsAdder_4.0.10-hotfix-1.jar:?]
    at ItemsAdder_4.0.10-hotfix-1.jar/itemsadder.m.bc.a(SourceFile:430) ~[ItemsAdder_4.0.10-hotfix-1.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at ItemsAdder_4.0.10-hotfix-1.jar/itemsadder.m.ahi.a(SourceFile:75) ~[ItemsAdder_4.0.10-hotfix-1.jar:?]
    at ItemsAdder_4.0.10-hotfix-1.jar/itemsadder.m.a.e(SourceFile:966) ~[ItemsAdder_4.0.10-hotfix-1.jar:?]
    at ItemsAdder_4.0.10-hotfix-1.jar/itemsadder.m.afb.f(SourceFile:130) ~[ItemsAdder_4.0.10-hotfix-1.jar:?]
    at ItemsAdder_4.0.10-hotfix-1.jar/itemsadder.m.a.a(SourceFile:964) ~[ItemsAdder_4.0.10-hotfix-1.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1804) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1665) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1330) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-83-d6c81da]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 19 more
[23:32:55] [Server thread/INFO]: [AlonsoTags] Config files are (re)loading.. Timestamp: Negative | Negative
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-smile' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-heart' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-tiny-heart' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-star' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-moon' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-sun' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-cloud' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-umbrella' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-snowman' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Loading 'u-coin' tag..
[23:32:55] [Server thread/INFO]: [AlonsoTags] Successfully loaded 10 tags!
[23:32:58] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[23:32:58] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[23:32:58] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Generator Profiled:
[23:32:58] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Import Phase: 2 897,4ms
[23:32:58] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Assets Phase: 2 755,2ms
[23:32:58] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Zipping Phase: 6 512,7ms
[23:33:16] [Server thread/INFO]: [AlonsoLevels] Leaderboard is disabled! Skipping..
[23:33:25] [Server thread/INFO]: Stopping server
[23:33:25] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.7.0
[23:33:25] [pool-73-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[23:33:25] [pool-73-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[23:33:25] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[23:33:25] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[23:33:25] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0 disabled.
[23:33:25] [Server thread/INFO]: [AlonsoLevels] Disabling AlonsoLevels v2.3.2-BETA
[23:33:25] [Server thread/INFO]: [SQLite] Forcing connection close..
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: [AlonsoLevels] Plugin has been disabled!
[23:33:25] [Server thread/INFO]: [AlonsoLevels] Thank you for using my plugin!
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: [AnimationsCore] Disabling AnimationsCore v2.3.2
[23:33:25] [Server thread/INFO]: [AnimationsCore] AnimationsCore plugin has been disabled.
[23:33:25] [Server thread/INFO]: [AxiomPaper] Disabling AxiomPaper v4.0.3+1.21.3
[23:33:25] [Server thread/INFO]: [AxTrade] Disabling AxTrade v1.14.1
[23:33:25] [Server thread/INFO]: [BattlePass] Disabling BattlePass v4.8.18
[23:33:25] [Server thread/INFO]: [BetterProfiles] Disabling BetterProfiles v1.6-BETA
[23:33:25] [Server thread/INFO]: [SQLite] Forcing connection close..
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: [BetterProfiles] Plugin has been disabled!
[23:33:25] [Server thread/INFO]: [BetterProfiles] Thank you for using my plugin!
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: [ChatManager] Disabling ChatManager v3.7.7
[23:33:25] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion chatmanager
[23:33:25] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ChatManager was disabled.
[23:33:25] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.14.0-Release
[23:33:25] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.20.1
[23:33:25] [Server thread/INFO]: [FriendSystemGUI] Disabling FriendSystemGUI v4.9.8
[23:33:25] [Server thread/INFO]: [goBrush] Disabling goBrush v3.8.0-75
[23:33:25] [Server thread/INFO]: [ItemJoin] Disabling ItemJoin v6.1.2-RELEASE-b1076
[23:33:25] [Server thread/INFO]: [LM_Items] Disabling LM_Items v1.2.11
[23:33:25] [Server thread/INFO]: [LogoutAvatars] Disabling LogoutAvatars v2.0.0
[23:33:25] [Server thread/INFO]: [LogoutAvatars] LogoutAvatars disabled
[23:33:25] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.65
[23:33:25] [Server thread/INFO]: [MCPets] Disabling MCPets v4.1.2
[23:33:25] [Server thread/INFO]: -=-=-=-= MCPets disable =-=-=-=-
[23:33:25] [Server thread/INFO]:           See you soon
[23:33:25] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[23:33:25] [Server thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.1.5
[23:33:25] [Server thread/INFO]: [MIReplacer] Disabling MIReplacer v3.2.2
[23:33:25] [Server thread/INFO]: [RPGInventory] Disabling RPGInventory v1.6.4
[23:33:25] [Server thread/INFO]: [MythicHUD] Disabling MythicHUD v1.2.2-SNAPSHOT
[23:33:25] [Server thread/INFO]: [MythicMobsGUI] Disabling MythicMobsGUI v1.11.0
[23:33:25] [Server thread/INFO]: [OpenAudioMc] Disabling OpenAudioMc v6.10.6
[23:33:25] [Server thread/INFO]: [OpenAudioMc] [info] Shutting down
[23:33:25] [Server thread/INFO]: [OpenAudioMc] [info] Saving world cache...
[23:33:25] [Server thread/INFO]: [OpenAudioMc] [info] Saved 0 media chunks to db.
[23:33:25] [Server thread/INFO]: [OpenAudioMc] [info] Stopped OpenAudioMc. Goodbye.
[23:33:25] [Server thread/INFO]: [PlayerAuctions] Disabling PlayerAuctions v1.30.2
[23:33:25] [Server thread/INFO]: [Resources] Disabling Resources v2.9.1
[23:33:25] [Server thread/INFO]: Resources saved to files successfully
[23:33:25] [Server thread/INFO]: [TAB] Disabling TAB v5.0.3
[23:33:25] [Server thread/INFO]: [TAB] Disabled in 1ms
[23:33:25] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.6.3
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: __________________________________________________________
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]:                        TradeSystem [2.6.3]
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: Status:
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: MC-Version: Paper (1.21.3)
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]:   > Cancelling all active trades
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: Finished (1ms)
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: __________________________________________________________
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: [TrMenu] Disabling TrMenu v3.3.0b-SNAPSHOT
[23:33:25] [Server thread/INFO]: [VoxelSniper] Disabling VoxelSniper v8.12.2
[23:33:25] [Server thread/INFO]: [Waves] Disabling Waves v1.1.21
[23:33:25] [Server thread/INFO]: [zAuctionHouseV3] Disabling zAuctionHouseV3 v3.2.3.1
[23:33:25] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] === DISABLE START ===
[23:33:25] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] === DISABLE DONE (0ms) ===
[23:33:25] [Server thread/INFO]: [AlonsoTags] Disabling AlonsoTags v2.2.1-BETA
[23:33:25] [Server thread/INFO]: [SQLite] Forcing connection close..
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: [AlonsoTags] Plugin has been disabled!
[23:33:25] [Server thread/INFO]: [AlonsoTags] Thank you for using my plugin!
[23:33:25] [Server thread/INFO]:  
[23:33:25] [Server thread/INFO]: [JSEngine] Disabling JSEngine v3.2.2
[23:33:25] [Server thread/INFO]: [EconomyShopGUI] Disabling EconomyShopGUI v6.12.2
[23:33:25] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v4.0.10-hotfix-1
[23:33:25] [pool-51-thread-1/INFO]: [ItemsAdder] [Host] Stopped self-host webserver on port: 8163
[23:33:26] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.14.1
[23:33:26] [Server thread/INFO]: [PlayerPoints] Disabling PlayerPoints v3.2.6
[23:33:26] [Server thread/INFO]: [MMOItems] Disabling MMOItems v6.10
[23:33:26] [Server thread/INFO]: [MMOItems] Waiting for other threads, please wait...
[23:33:26] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR4.0.8
[23:33:26] [Server thread/INFO]: [Essentials] Disabling Essentials v2.20.1
[23:33:26] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[23:33:26] [Server thread/INFO]: [GriefPrevention] Disabling GriefPrevention v16.18
[23:33:26] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion griefprevention
[23:33:26] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin GriefPrevention was disabled.
[23:33:26] [Server thread/INFO]: [GriefPrevention] GriefPrevention disabled.
[23:33:26] [Server thread/INFO]: [MMOCore] Disabling MMOCore v1.13
[23:33:26] [Server thread/INFO]: [MMOCore] Waiting for other threads, please wait...
[23:33:26] [Server thread/INFO]: [MythicLib] Disabling MythicLib v1.7.1-SNAPSHOT
[23:33:26] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.8.2-6a2683d7
[23:33:26] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[23:33:26] [Server thread/INFO]: [MythicMobs] - 
[23:33:26] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[23:33:26] [Server thread/INFO]: [MythicMobs] - 
[23:33:26] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[23:33:26] [Server thread/INFO]: [MythicMobs] - Spawners saved and unloaded...
[23:33:26] [Server thread/INFO]: [MythicMobs] - Mobs saved and unloaded...
[23:33:26] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[23:33:26] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[23:33:26] [Server thread/INFO]: [MythicMobs] - Variables saved...
[23:33:26] [Server thread/INFO]: [MythicMobs] - All active settings have been saved!
[23:33:26] [Server thread/INFO]: [MythicMobs] - Mythic has been unloaded!
[23:33:26] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[23:33:26] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[23:33:26] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[23:33:26] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v11.0.5-SNAPSHOT
[23:33:26] [Server thread/INFO]: [LibsDisguises] Outdated mappings cache, will rebuild.
[23:33:26] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion multiverse
[23:33:26] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Multiverse-Core was disabled.
[23:33:26] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.13+82fdc65
[23:33:26] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[23:33:26] [Server thread/INFO]: [packetevents] Disabling packetevents v2.8.0
[23:33:26] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[23:33:26] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1104;c0d1ea6
[23:33:26] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[23:33:26] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.4.0-SNAPSHOT-747
[23:33:26] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[23:33:26] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.40
[23:33:26] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[23:33:26] [Server thread/INFO]: [LuckPerms] Closing storage...
[23:33:26] [Server thread/INFO]: [LuckPerms] Goodbye!
[23:33:26] [Server thread/INFO]: Saving players
[23:33:26] [Server thread/INFO]: Saving worlds
[23:33:26] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[23:33:26] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[23:33:26] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[23:33:26] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[23:33:26] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world' in 0,25s
[23:33:26] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world'
[23:33:26] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world'
[23:33:26] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[23:33:26] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[23:33:26] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'