Paste #134294: Error

Date: 2025/06/24 12:15:50 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


[22:09:03] [ServerMain/INFO]: [bootstrap] Running Java 22 (OpenJDK 64-Bit Server VM 22.0.2+9; Azul Systems, Inc. Zulu22.32+15-CA) on Linux 6.8.0-60-generic (amd64)
[22:09:03] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.6-24-main@e714de6 (2025-06-21T11:23:36Z) for Minecraft 1.21.6
[22:09:03] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[22:09:04] [ServerMain/INFO]: [PluginInitializerManager] Initialized 67 plugins
[22:09:04] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - BKCommonLib (1.21.5-v1), FartherViewDistance (10.1.3)
[22:09:04] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (65):
 - Altenizen (1.0-SNAPSHOT), AnimationsCore (2.2.0), AntiCloneTool (1.4-b5), AstralBiomes (1.0), BannerLayer (1.1.0), BigDoors (Alpha 0.1.8.59), BreweryX (3.3.4), CMI (9.7.14.4), CMIEInjector (1.0.2.4), CMILib (1.5.4.4), Citizens (2.0.38-SNAPSHOT (build 3820)), CommandAPI (10.1.0), CommandRemover (1.0), CoreProtect (23.2-RC2), CoreProtectTNT (2.3.1), DeluxeMenus (1.14.0-Release), Denizen (1.3.1-SNAPSHOT (build 7176-DEV)), Depenizen (2.1.1 (build 865)), DiscordSRV (1.29.0), DodaLock (1.1), Drugs (1.1), EasyPayments (2.4.0), EffectLib (9.0), EnderaLib (1.2.0), EntityDetection (1.2.0 (build #23)), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1119;228b1d5), GSit (2.4.0), InventoryRollbackPlus (1.7.4), ItemsAdder (4.0.11), JiCanvas (1.0), LiteFarm (3.10.5), LiteFish (4.12.0), LoneLibs (1.0.65), LuckPerms (5.4.145), MCPets (4.1.5-SNAPSHOT), MagicCosmetics (3.1.1), ModelEngine (R4.0.9), MultiSignBook (1.2), MyCommand (5.7.5), MythicMobs (5.9.2-SNAPSHOT-db5ccf92), NoChatReports (2.4.0), PlaceholderAPI (2.11.6), PlasmoVoice (2.1.1), PlayerParticles (8.8), ProtocolLib (5.4.0-SNAPSHOT-750), RHLeafDecay (1.21_R1), RoyaleSpec (1.0), ScreenEffects (1.0.19), Shopkeepers (2.23.8), SkinsRestorer (15.7.1), TAB (5.2.1), TAB-Bridge (6.0.2), Vault (1.7.3-CMI), WorldGuard (7.0.14+2339-43997ec), WorldGuardExtraFlags (4.2.4-SNAPSHOT), dDiscordBot (0.7 (build 303)), emotecraft (2.2.5), emotes_command_extension (0.2.0), pv-addon-discs (1.1.3), pv-addon-groups (1.1.0), pv-addon-lavaplayer-lib (1.1.6-SNAPSHOT), pv-addon-sculk (1.1.0), pv-addon-whisper (1.1.0), squaremap (1.3.2), squaremarker (1.0.6)
[22:09:07] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[22:09:08] [ServerMain/INFO]: Loaded 1407 recipes
[22:09:08] [ServerMain/INFO]: Loaded 1535 advancements
[22:09:08] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[22:09:09] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 325.0ms
[22:09:09] [Server thread/INFO]: Starting minecraft server version 1.21.6
[22:09:09] [Server thread/INFO]: Loading properties
[22:09:09] [Server thread/INFO]: This server is running Paper version 1.21.6-24-main@e714de6 (2025-06-21T11:23:36Z) (Implementing API version 1.21.6-R0.1-SNAPSHOT)
[22:09:09] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[22:09:09] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:09:09] [Server thread/INFO]: Using 4 threads for Netty based IO
[22:09:10] [Server thread/INFO]: [MoonriseCommon] Paper is using 3 worker threads, 1 I/O threads
[22:09:10] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[22:09:10] [Server thread/INFO]: Default game type: SURVIVAL
[22:09:10] [Server thread/INFO]: Generating keypair
[22:09:10] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:21488
[22:09:10] [Server thread/INFO]: Using epoll channel type
[22:09:10] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[22:09:10] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[22:09:10] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/beer/devs/FastNbt-jar/1.4.8/FastNbt-jar-1.4.8.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-api/4.20.0/adventure-api-4.20.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-key/4.20.0/adventure-key-4.20.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.20.0/adventure-text-serializer-gson-4.20.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.20.0/adventure-text-serializer-json-4.20.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-commons/4.20.0/adventure-text-serializer-commons-4.20.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.20.0/adventure-text-serializer-gson-legacy-impl-4.20.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.20.0/adventure-text-serializer-json-legacy-impl-4.20.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.20.0/adventure-text-minimessage-4.20.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/ow2/asm/asm/9.3/asm-9.3.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[22:09:11] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.14.17/byte-buddy-1.14.17.jar
[22:09:11] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [EasyPayments] Loading 2 libraries... please wait
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [EasyPayments] Loaded library /home/container/libraries/org/postgresql/postgresql/42.3.3/postgresql-42.3.3.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [EasyPayments] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [EasyPayments] Loaded library /home/container/libraries/com/h2database/h2/2.1.210/h2-2.1.210.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loading 1 libraries... please wait
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.10/kotlin-stdlib-jdk8-1.9.10.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.9.10/kotlin-stdlib-1.9.10.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.10/kotlin-stdlib-jdk7-1.9.10.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loading 4 libraries... please wait
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loaded library /home/container/libraries/beer/devs/FastNbt-jar/1.4.8/FastNbt-jar-1.4.8.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loaded library /home/container/libraries/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar
[22:09:17] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loaded library /home/container/libraries/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar
[22:09:17] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.145
[22:09:18] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[22:09:18] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1119;228b1d5
[22:09:18] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7a095b3f]
[22:09:18] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-750
[22:09:18] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.6) has not yet been tested! Proceed with caution.
[22:09:18] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.14+2339-43997ec
[22:09:18] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[22:09:18] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3820)
[22:09:18] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.9.2-SNAPSHOT-db5ccf92
[22:09:18] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[22:09:18] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[22:09:18] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.4.4
[22:09:18] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.9
[22:09:18] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7176-DEV)
[22:09:18] [Server thread/INFO]: [PlasmoVoice] Loading server plugin PlasmoVoice v2.1.1
[22:09:18] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.14.4
[22:09:18] [Server thread/INFO]: [EnderaLib] Loading server plugin EnderaLib v1.2.0
[22:09:18] [Server thread/INFO]: [CommandAPI] Loading server plugin CommandAPI v10.1.0
[22:09:18] [Server thread/INFO]: [CommandAPI] Loaded platform NMS_1_21_R5 > NMS_Common > CommandAPIBukkit
[22:09:18] [Server thread/INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[22:09:18] [Server thread/INFO]: [CommandAPI] Hooked into Adventure for AdventureChat/AdventureChatComponents
[22:09:18] [Server thread/INFO]: [CommandAPI] Hooked into Paper for paper-specific API implementations
[22:09:19] [Server thread/INFO]: [emotecraft] Loading server plugin emotecraft v2.2.5
[22:09:19] [Server thread/WARN]: [ProtocolLib] Error filtering reports: java.lang.IllegalArgumentException: Cannot find report name for Plugin %s tried to register listener for unknown packet %s [direction: from %s]
[22:09:19] [Server thread/WARN]: [ProtocolLib] [OutboundPacketListenerSet] Plugin emotecraft tried to register listener for unknown packet NAMED_ENTITY_SPAWN[PLAY, SERVER, 235, classNames: [net.minecraft.network.protocol.game.PacketPlayOutNamedEntitySpawn, net.minecraft.network.protocol.game.ClientboundNamedEntitySpawnPacket, PacketPlayOutNamedEntitySpawn, ClientboundNamedEntitySpawnPacket, NamedEntitySpawn, net.minecraft.network.play.server.SPacketSpawnPlayer] (unregistered)] [direction: from SERVER]
[22:09:19] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.11
[22:09:19] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.8
[22:09:19] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (348 ms).
[22:09:19] [Server thread/INFO]: [Shopkeepers] Compatibility provider loaded: 1_21_R6_paper
[22:09:19] [Server thread/INFO]: [Shopkeepers] Loading config.
[22:09:19] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[22:09:19] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[22:09:19] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[22:09:19] [Server thread/INFO]: [pv-addon-lavaplayer-lib] Loading server plugin pv-addon-lavaplayer-lib v1.1.6-SNAPSHOT
[22:09:19] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.21.5-v1
[22:09:19] [Server thread/WARN]: [BKCommonLib] [Developer] Class mappings file has no mappings for this Minecraft version. Build problem?
[22:09:19] [Server thread/WARN]: [BKCommonLib] > Fetching JSON from Mojang servers: https://hub.spigotmc.org/versions/1.21.6.json
[22:09:20] [Server thread/WARN]: [BKCommonLib] > Fetching Minecraft - Bukkit 1.21.6 class mappings from Mojang servers: https://hub.spigotmc.org/stash/projects/SPIGOT/repos/builddata/raw/mappings/bukkit-1.21.6-cl.csrg?at=281ac0de7a76d808753ede97d11b034bc801b63d
[22:09:20] [Server thread/WARN]: [BKCommonLib] > Download metadata has no checksum, no file verification will be performed
[22:09:20] [Server thread/WARN]: [BKCommonLib] > Minecraft - Bukkit 1.21.6 class mappings download completed!
[22:09:20] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.7.1
[22:09:20] [Server thread/INFO]: [squaremap] Loading server plugin squaremap v1.3.2
[22:09:20] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.2-RC2
[22:09:20] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.59
[22:09:20] [Server thread/INFO]: [Effect Library] Loading server plugin EffectLib v9.0
[22:09:20] [Server thread/INFO]: [CMIEInjector] Loading server plugin CMIEInjector v1.0.2.4
[22:09:20] [Server thread/INFO]: [AntiCloneTool] Loading server plugin AntiCloneTool v1.4-b5
[22:09:20] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[22:09:20] [Server thread/INFO]: [EntityDetection] Loading server plugin EntityDetection v1.2.0 (build #23)
[22:09:20] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.8
[22:09:20] [Server thread/INFO]: [LiteFish] Loading server plugin LiteFish v4.12.0
[22:09:20] [Server thread/INFO]: [emotes_command_extension] Loading server plugin emotes_command_extension v0.2.0
[22:09:20] [Server thread/INFO]: [FartherViewDistance] Loading server plugin FartherViewDistance v10.1.3
[22:09:20] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[22:09:20] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[22:09:20] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.65
[22:09:20] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.5-SNAPSHOT
[22:09:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[22:09:20] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[22:09:20] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[22:09:20] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[22:09:20] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[22:09:20] [Server thread/INFO]: [dDiscordBot] Loading server plugin dDiscordBot v0.7 (build 303)
[22:09:20] [Server thread/INFO]: [Altenizen] Loading server plugin Altenizen v1.0-SNAPSHOT
[22:09:20] [Server thread/INFO]: [Drugs] Loading server plugin Drugs v1.1
[22:09:20] [Server thread/INFO]: [TAB-Bridge] Loading server plugin TAB-Bridge v6.0.2
[22:09:20] [Server thread/INFO]: [AnimationsCore] Loading server plugin AnimationsCore v2.2.0
[22:09:20] [Server thread/INFO]: [RoyaleSpec] Loading server plugin RoyaleSpec v1.0
[22:09:20] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.1
[22:09:20] [Server thread/INFO]: [AstralBiomes] Loading server plugin AstralBiomes v1.0
[22:09:20] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.7.4
[22:09:20] [Server thread/INFO]: [EasyPayments] Loading server plugin EasyPayments v2.4.0
[22:09:20] [Server thread/INFO]: [BreweryX] Loading server plugin BreweryX v3.3.4
[22:09:20] [Server thread/INFO]: [RHLeafDecay] Loading server plugin RHLeafDecay v1.21_R1
[22:09:20] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.4.0
[22:09:20] [Server thread/INFO]: [pv-addon-discs] Loading server plugin pv-addon-discs v1.1.3
[22:09:20] [Server thread/INFO]: [DodaLock] Loading server plugin DodaLock v1.1
[22:09:20] [Server thread/INFO]: [JiCanvas] Loading server plugin JiCanvas v1.0
[22:09:20] [Server thread/INFO]: [pv-addon-whisper] Loading server plugin pv-addon-whisper v1.1.0
[22:09:20] [Server thread/INFO]: [pv-addon-sculk] Loading server plugin pv-addon-sculk v1.1.0
[22:09:20] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[22:09:20] [Server thread/INFO]: [ScreenEffects] Loading server plugin ScreenEffects v1.0.19
[22:09:20] [Server thread/INFO]: [LiteFarm] Loading server plugin LiteFarm v3.10.5
[22:09:20] [Server thread/INFO]: [MagicCosmetics] Loading server plugin MagicCosmetics v3.1.1
[22:09:20] [Server thread/INFO]: [pv-addon-groups] Loading server plugin pv-addon-groups v1.1.0
[22:09:20] [Server thread/INFO]: [NoChatReports] Loading server plugin NoChatReports v2.4.0
[22:09:20] [Server thread/INFO]: [squaremarker] Loading server plugin squaremarker v1.0.6
[22:09:20] [Server thread/INFO]: [BannerLayer] Loading server plugin BannerLayer v1.1.0
[22:09:20] [Server thread/INFO]: [CoreProtectTNT] Loading server plugin CoreProtectTNT v2.3.1
[22:09:20] [Server thread/INFO]: [MultiSignBook] Loading server plugin MultiSignBook v1.2
[22:09:20] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.1.1 (build 865)
[22:09:20] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.5
[22:09:20] [Server thread/INFO]: [CommandRemover] Loading server plugin CommandRemover v1.0
[22:09:20] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:09:20] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.145
[22:09:21] [Server thread/INFO]:         __    
[22:09:21] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.145
[22:09:21] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[22:09:21] [Server thread/INFO]: 
[22:09:21] [Server thread/INFO]: [LuckPerms] Loading configuration...
[22:09:21] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[22:09:21] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[22:09:21] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[22:09:21] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1219ms)
[22:09:21] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[22:09:21] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[22:09:22] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[22:09:22] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[22:09:22] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[22:09:22] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1119;228b1d5
[22:09:22] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[22:09:22] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[22:09:22] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[22:09:22] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[22:09:22] [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.
**********************************************

[22:09:22] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.world.block.BlockTypesCache.<clinit>(BlockTypesCache.java:237)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.world.block.BlockTypes.init(BlockTypes.java:2281)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.world.block.BlockTypes.<clinit>(BlockTypes.java:48)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.world.block.BlockState.get(BlockState.java:156)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.world.block.BlockState.get(BlockState.java:132)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.world.registry.LegacyMapper.loadFromResource(LegacyMapper.java:124)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.world.registry.LegacyMapper.<init>(LegacyMapper.java:84)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.world.registry.LegacyMapper.getInstance(LegacyMapper.java:329)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.WorldEdit.loadMappings(WorldEdit.java:428)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:294)
[22:09:22] [Server thread/WARN]:     at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:264)
[22:09:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:236)
[22:09:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:22] [Server thread/WARN]: Failed to load the built-in legacy id registry
java.lang.ExceptionInInitializerError: null
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.block.BlockTypes.init(BlockTypes.java:2281) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.block.BlockTypes.<clinit>(BlockTypes.java:48) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.block.BlockState.get(BlockState.java:156) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.block.BlockState.get(BlockState.java:132) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.registry.LegacyMapper.loadFromResource(LegacyMapper.java:124) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.registry.LegacyMapper.<init>(LegacyMapper.java:84) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.registry.LegacyMapper.getInstance(LegacyMapper.java:329) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.WorldEdit.loadMappings(WorldEdit.java:428) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:294) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:264) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:236) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.RuntimeException: java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.block.BlockTypesCache.<clinit>(BlockTypesCache.java:278) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    ... 20 more
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
    at FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar/com.sk89q.worldedit.world.block.BlockTypesCache.<clinit>(BlockTypesCache.java:237) ~[FastAsyncWorldEdit-Paper-2.13.1-SNAPSHOT-1119.jar:?]
    ... 20 more
[22:09:22] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-750
[22:09:22] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.9
[22:09:22] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[22:09:22] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[22:09:22] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[22:09:22] [Server thread/WARN]:     at ModelEngine-R4.0.9 2148.jar//com.ticxo.modelengine.api.utils.ReflectionUtils.call(ReflectionUtils.java:121)
[22:09:22] [Server thread/WARN]:     at ModelEngine-R4.0.9 2148.jar//com.ticxo.modelengine.core.java21.Java21Access.call(Java21Access.java:54)
[22:09:22] [Server thread/WARN]:     at ModelEngine-R4.0.9 2148.jar//com.ticxo.modelengine.core.ModelEngine.configureNMSHandler(ModelEngine.java:293)
[22:09:22] [Server thread/WARN]:     at ModelEngine-R4.0.9 2148.jar//com.ticxo.modelengine.core.ModelEngine.onEnable(ModelEngine.java:102)
[22:09:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:236)
[22:09:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:22] [Server thread/WARN]: Caused by: java.lang.RuntimeException: Unsupported NMS Version: 1.21.6
[22:09:22] [Server thread/WARN]:     at ModelEngine-R4.0.9 2148.jar//com.ticxo.modelengine.core21.Java21Helper.createNMSHandler(Java21Helper.java:34)
[22:09:22] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
[22:09:22] [Server thread/WARN]:     ... 15 more
[22:09:22] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[22:09:22] [Server thread/ERROR]: Error occurred while enabling ModelEngine vR4.0.9 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "com.ticxo.modelengine.api.nms.NMSHandler.createParsers()" because the return value of "com.ticxo.modelengine.api.ModelEngineAPI.getNMSHandler()" is null
    at ModelEngine-R4.0.9 2148.jar/com.ticxo.modelengine.api.model.ModelUpdaters.<init>(ModelUpdaters.java:45) ~[ModelEngine-R4.0.9 2148.jar:?]
    at ModelEngine-R4.0.9 2148.jar/com.ticxo.modelengine.core.ModelEngine.configureTicker(ModelEngine.java:263) ~[ModelEngine-R4.0.9 2148.jar:?]
    at ModelEngine-R4.0.9 2148.jar/com.ticxo.modelengine.core.ModelEngine.onEnable(ModelEngine.java:111) ~[ModelEngine-R4.0.9 2148.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:236) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:22] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR4.0.9
[22:09:22] [Server thread/ERROR]: Error occurred while disabling ModelEngine vR4.0.9
java.lang.NullPointerException: Cannot invoke "com.ticxo.modelengine.api.model.ModelUpdaters.end()" because the return value of "com.ticxo.modelengine.api.ModelEngineAPI.getModelUpdaters()" is null
    at ModelEngine-R4.0.9 2148.jar/com.ticxo.modelengine.api.utils.ticker.DualTicker.stop(DualTicker.java:93) ~[ModelEngine-R4.0.9 2148.jar:?]
    at ModelEngine-R4.0.9 2148.jar/com.ticxo.modelengine.core.ModelEngine.onDisable(ModelEngine.java:131) ~[ModelEngine-R4.0.9 2148.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:236) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:22] [Server thread/INFO]: [PlasmoVoice] Enabling PlasmoVoice v2.1.1
[22:09:22] [Server thread/INFO]: [PlasmoVoice] LuckPerms permissions listener attached
[22:09:22] [Server thread/INFO]: [PlasmoVoice] pv-addon-groups v1.1.0 by KPidS loaded
[22:09:22] [Server thread/INFO]: [PlasmoVoice] pv-addon-lavaplayer-lib v1.1.6-SNAPSHOT by Apehum loaded
[22:09:22] [Server thread/INFO]: [PlasmoVoice] pv-addon-sculk v1.1.0 by Apehum loaded
[22:09:22] [Server thread/INFO]: [PlasmoVoice] pv-addon-discs v1.1.3 by KPidS, Apehum loaded
[22:09:22] [Server thread/INFO]: [PlasmoVoice] pv-addon-whisper v1.1.0 by Apehum loaded
[22:09:22] [Server thread/INFO]: [PlasmoVoice] UDP server is started on /[0:0:0:0:0:0:0:0]:25633
[22:09:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plasmovoice [2.1.1]
[22:09:22] [Server thread/INFO]: [pv-addon-lavaplayer-lib] Enabling pv-addon-lavaplayer-lib v1.1.6-SNAPSHOT
[22:09:22] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.21.5-v1
[22:09:22] [Server thread/ERROR]: [BKCommonLib] This version of BKCommonLib is not compatible with: Paper (1.21.6-24-e714de6 | mojmap) : (Unknown) (Minecraft 1.21.6)
[22:09:22] [Server thread/ERROR]: [BKCommonLib] It could be that BKCommonLib has to be updated, as the current version is built for MC 1.8 to 1.20.6, 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4 and 1.21.5
[22:09:22] [Server thread/ERROR]: [BKCommonLib] Please look for a new updated BKCommonLib version that is compatible:
[22:09:22] [Server thread/ERROR]: [BKCommonLib] https://www.spigotmc.org/resources/bkcommonlib.39590/
[22:09:22] [Server thread/ERROR]: [BKCommonLib] Unstable development builds for MC 1.21.6 may be found on our continuous integration server:
[22:09:22] [Server thread/ERROR]: [BKCommonLib] https://ci.mg-dev.eu/job/BKCommonLib/
[22:09:22] [Server thread/ERROR]: [BKCommonLib] BKCommonLib and all depending plugins will now disable...
[22:09:22] [Server thread/INFO]: [BKCommonLib] null
[22:09:22] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.7.1
[22:09:23] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[22:09:23] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[22:09:23] [Server thread/INFO]: [SkinsRestorer] You have to put the same config.yml on all servers and on the proxy.
[22:09:23] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[22:09:23] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[22:09:23] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.6.
[22:09:23] [Server thread/WARN]: [SkinsRestorer] Proxy mode API is enabled (server.proxyMode.api), but MySQL is not set up, this is not supported. You must configure MySQL on all servers and on the proxy and use the same database.
[22:09:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.7.1]
[22:09:23] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[22:09:23] [Server thread/INFO]: [squaremap] Enabling squaremap v1.3.2
[22:09:23] [Server thread/WARN]: [squaremap] 
**********************************************
** This squaremap jar is built for Minecraft 1.21.1.
** It will attempt to load even though the current Minecraft version is 1.21.6
** as the environment is Mojang-mapped. This may or may not work, prefer running
** the correct squaremap version for your server. Check for newer or older releases
** which are intended for your Minecraft version at https://github.com/jpenilla/squaremap/releases.
** Keep in mind only the latest release of squaremap running on the intended Minecraft
** version is officially supported.
**********************************************

[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |------------------|
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Version: 15.7.1
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Commit: f77fbd4
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     This is the latest version!
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[22:09:23] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[22:09:23] [Server thread/INFO]: [io.undertow] starting server: Undertow - 2.3.17.Final
[22:09:23] [Server thread/INFO]: [org.xnio] XNIO version 3.8.16.Final
[22:09:23] [Server thread/INFO]: [org.xnio.nio] XNIO NIO Implementation Version 3.8.16.Final
[22:09:23] [Server thread/INFO]: [org.jboss.threads] JBoss Threads version 3.5.0.Final
[22:09:24] [Server thread/INFO]: [squaremap] Внутренний веб-сервер запущен на 0.0.0.0:25045
[22:09:24] [Server thread/INFO]: [CMIEInjector] Enabling CMIEInjector v1.0.2.4
[22:09:24] [Server thread/INFO]: [CMIEInjector] Injecting CMI Economy
[22:09:24] [Server thread/INFO]: [CMIEInjector] [Economy] CMI Economy found: Waiting
[22:09:24] [Server thread/INFO]: [emotes_command_extension] Enabling emotes_command_extension v0.2.0
[22:09:24] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.65
[22:09:24] [Server thread/INFO]: [AstralBiomes] Enabling AstralBiomes v1.0
[22:09:24] [Server thread/ERROR]: Error occurred while enabling AstralBiomes v1.0 (Is it up to date?)
java.lang.NoSuchFieldError: Class net.minecraft.core.particles.ParticleTypes does not have member field 'net.minecraft.core.particles.SimpleParticleType u'
    at AstralBiomes-1.0 (5).jar/me.outspending.biomesapi.renderer.AmbientParticle.<clinit>(AmbientParticle.java:40) ~[AstralBiomes-1.0 (5).jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:529) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:508) ~[?:?]
    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.6.jar:1.21.6-24-e714de6]
    at AstralBiomes-1.0 (5).jar/me.outspending.biomesapi.exceptions.UnknownNMSVersionException.0OO0OOO00O0O(UnknownNMSVersionException.java:33) ~[AstralBiomes-1.0 (5).jar:?]
    at java.base/java.lang.invoke.BootstrapMethodInvoker.invoke(BootstrapMethodInvoker.java:109) ~[?:?]
    at java.base/java.lang.invoke.CallSite.makeSite(CallSite.java:316) ~[?:?]
    at java.base/java.lang.invoke.MethodHandleNatives.linkCallSiteImpl(MethodHandleNatives.java:275) ~[?:?]
    at java.base/java.lang.invoke.MethodHandleNatives.linkCallSite(MethodHandleNatives.java:265) ~[?:?]
    at AstralBiomes-1.0 (5).jar/com.github.jiuuc.astralbiomes.AstralBiomes.registerBiomes(AstralBiomes.java:109) ~[AstralBiomes-1.0 (5).jar:?]
    at AstralBiomes-1.0 (5).jar/com.github.jiuuc.astralbiomes.AstralBiomes.onEnable(AstralBiomes.java:38) ~[AstralBiomes-1.0 (5).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:236) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:24] [Server thread/INFO]: [AstralBiomes] Disabling AstralBiomes v1.0
[22:09:24] [Server thread/INFO]: [pv-addon-discs] Enabling pv-addon-discs v1.1.3
[22:09:24] [Server thread/INFO]: [pv-addon-discs] YouTube clients: [WEB, ANDROID_VR, WEBEMBEDDED, MUSIC]
[22:09:24] [Server thread/INFO]: [su.plo.voice.lavaplayer.libs.dev.lavalink.youtube.http.YoutubeOauth2Handler] YouTube access token refreshed successfully
[22:09:24] [Server thread/WARN]: [su.plo.voice.lavaplayer.libs.dev.lavalink.youtube.YoutubeAudioSourceManager] OAuth has been enabled without registering any OAuth-compatible clients. Please consult https://github.com/lavalink-devs/youtube-source?tab=readme-ov-file#available-clients for a list of OAuth-compatible clients.
[22:09:24] [Server thread/INFO]: [pv-addon-whisper] Enabling pv-addon-whisper v1.1.0
[22:09:24] [Server thread/INFO]: [pv-addon-sculk] Enabling pv-addon-sculk v1.1.0
[22:09:24] [Server thread/INFO]: [pv-addon-groups] Enabling pv-addon-groups v1.1.0
[22:09:24] [Server thread/INFO]: Preparing level "world"
[22:09:24] [Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[22:09:24] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[22:09:24] [Server thread/INFO]: Preparing spawn area: 0%
[22:09:25] [Server thread/INFO]: Time elapsed: 492 ms
[22:09:25] [Server thread/ERROR]: [squaremap] Error invoking private void xyz.jpenilla.squaremap.common.config.WorldAdvanced.invisibleBlocks()
java.lang.NoSuchMethodError: 'java.lang.Object net.minecraft.core.Registry.get(net.minecraft.resources.ResourceLocation)'
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.requireEntry(Util.java:96) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.lambda$invisibleBlocks$0(WorldAdvanced.java:39) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1597) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.invisibleBlocks(WorldAdvanced.java:39) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractConfig.readConfig(AbstractConfig.java:99) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractWorldConfig.init(AbstractWorldConfig.java:51) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.<init>(WorldAdvanced.java:24) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.create(ConfigManager.java:88) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.lambda$config$0(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1710) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.config(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager.worldAdvanced(ConfigManager.java:57) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.data.MapWorldInternal.<init>(MapWorldInternal.java:67) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.data.PaperMapWorld.<init>(PaperMapWorld.java:36) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.DefaultConstructionProxyFactory$ReflectiveProxy.newInstance(DefaultConstructionProxyFactory.java:120) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.provision(ConstructorInjector.java:114) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.construct(ConstructorInjector.java:91) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:300) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.InjectorImpl$1.get(InjectorImpl.java:1148) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.assistedinject.FactoryProvider2.invoke(FactoryProvider2.java:906) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/jdk.proxy10/jdk.proxy10.$Proxy127.create(Unknown Source) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.WorldManagerImpl.initWorld(WorldManagerImpl.java:60) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.PaperWorldManager.initWorld(PaperWorldManager.java:37) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.listener.WorldLoadListener.handleWorldLoad(WorldLoadListener.java:26) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:726) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:25] [Server thread/ERROR]: [squaremap] Error invoking private void xyz.jpenilla.squaremap.common.config.WorldAdvanced.iterateUpBaseBlocks()
java.lang.NoSuchMethodError: 'java.lang.Object net.minecraft.core.Registry.get(net.minecraft.resources.ResourceLocation)'
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.requireEntry(Util.java:96) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.lambda$iterateUpBaseBlocks$1(WorldAdvanced.java:62) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1597) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.iterateUpBaseBlocks(WorldAdvanced.java:62) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractConfig.readConfig(AbstractConfig.java:99) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractWorldConfig.init(AbstractWorldConfig.java:51) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.<init>(WorldAdvanced.java:24) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.create(ConfigManager.java:88) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.lambda$config$0(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1710) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.config(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager.worldAdvanced(ConfigManager.java:57) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.data.MapWorldInternal.<init>(MapWorldInternal.java:67) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.data.PaperMapWorld.<init>(PaperMapWorld.java:36) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.DefaultConstructionProxyFactory$ReflectiveProxy.newInstance(DefaultConstructionProxyFactory.java:120) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.provision(ConstructorInjector.java:114) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.construct(ConstructorInjector.java:91) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:300) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.InjectorImpl$1.get(InjectorImpl.java:1148) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.assistedinject.FactoryProvider2.invoke(FactoryProvider2.java:906) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/jdk.proxy10/jdk.proxy10.$Proxy127.create(Unknown Source) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.WorldManagerImpl.initWorld(WorldManagerImpl.java:60) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.PaperWorldManager.initWorld(PaperWorldManager.java:37) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.listener.WorldLoadListener.handleWorldLoad(WorldLoadListener.java:26) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:726) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:25] [Server thread/ERROR]: [squaremap] Error invoking private void xyz.jpenilla.squaremap.common.config.WorldAdvanced.colorOverrideBiomeFoliageSettings()
java.lang.NoSuchMethodError: 'net.minecraft.core.Registry net.minecraft.core.RegistryAccess.registryOrThrow(net.minecraft.resources.ResourceKey)'
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.biomeRegistry(Util.java:127) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.biomeRegistry(Util.java:123) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.colorOverrideBiomeFoliageSettings(WorldAdvanced.java:68) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractConfig.readConfig(AbstractConfig.java:99) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractWorldConfig.init(AbstractWorldConfig.java:51) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.<init>(WorldAdvanced.java:24) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.create(ConfigManager.java:88) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.lambda$config$0(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1710) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.config(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager.worldAdvanced(ConfigManager.java:57) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.data.MapWorldInternal.<init>(MapWorldInternal.java:67) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.data.PaperMapWorld.<init>(PaperMapWorld.java:36) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.DefaultConstructionProxyFactory$ReflectiveProxy.newInstance(DefaultConstructionProxyFactory.java:120) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.provision(ConstructorInjector.java:114) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.construct(ConstructorInjector.java:91) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:300) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.InjectorImpl$1.get(InjectorImpl.java:1148) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.assistedinject.FactoryProvider2.invoke(FactoryProvider2.java:906) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/jdk.proxy10/jdk.proxy10.$Proxy127.create(Unknown Source) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.WorldManagerImpl.initWorld(WorldManagerImpl.java:60) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.PaperWorldManager.initWorld(PaperWorldManager.java:37) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.listener.WorldLoadListener.handleWorldLoad(WorldLoadListener.java:26) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:726) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:25] [Server thread/ERROR]: [squaremap] Error invoking private void xyz.jpenilla.squaremap.common.config.WorldAdvanced.colorOverrideBiomeGrassSettings()
java.lang.NoSuchMethodError: 'net.minecraft.core.Registry net.minecraft.core.RegistryAccess.registryOrThrow(net.minecraft.resources.ResourceKey)'
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.biomeRegistry(Util.java:127) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.biomeRegistry(Util.java:123) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.colorOverrideBiomeGrassSettings(WorldAdvanced.java:90) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractConfig.readConfig(AbstractConfig.java:99) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractWorldConfig.init(AbstractWorldConfig.java:51) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.<init>(WorldAdvanced.java:24) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.create(ConfigManager.java:88) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.lambda$config$0(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1710) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.config(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager.worldAdvanced(ConfigManager.java:57) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.data.MapWorldInternal.<init>(MapWorldInternal.java:67) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.data.PaperMapWorld.<init>(PaperMapWorld.java:36) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.DefaultConstructionProxyFactory$ReflectiveProxy.newInstance(DefaultConstructionProxyFactory.java:120) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.provision(ConstructorInjector.java:114) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.construct(ConstructorInjector.java:91) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:300) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.InjectorImpl$1.get(InjectorImpl.java:1148) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.assistedinject.FactoryProvider2.invoke(FactoryProvider2.java:906) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/jdk.proxy10/jdk.proxy10.$Proxy127.create(Unknown Source) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.WorldManagerImpl.initWorld(WorldManagerImpl.java:60) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.PaperWorldManager.initWorld(PaperWorldManager.java:37) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.listener.WorldLoadListener.handleWorldLoad(WorldLoadListener.java:26) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:726) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:25] [Server thread/ERROR]: [squaremap] Error invoking private void xyz.jpenilla.squaremap.common.config.WorldAdvanced.colorOverrideBiomeWaterSettings()
java.lang.NoSuchMethodError: 'net.minecraft.core.Registry net.minecraft.core.RegistryAccess.registryOrThrow(net.minecraft.resources.ResourceKey)'
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.biomeRegistry(Util.java:127) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.biomeRegistry(Util.java:123) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.colorOverrideBiomeWaterSettings(WorldAdvanced.java:106) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractConfig.readConfig(AbstractConfig.java:99) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractWorldConfig.init(AbstractWorldConfig.java:51) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.<init>(WorldAdvanced.java:24) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.create(ConfigManager.java:88) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.lambda$config$0(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1710) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.config(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager.worldAdvanced(ConfigManager.java:57) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.data.MapWorldInternal.<init>(MapWorldInternal.java:67) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.data.PaperMapWorld.<init>(PaperMapWorld.java:36) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.DefaultConstructionProxyFactory$ReflectiveProxy.newInstance(DefaultConstructionProxyFactory.java:120) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.provision(ConstructorInjector.java:114) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.construct(ConstructorInjector.java:91) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:300) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.InjectorImpl$1.get(InjectorImpl.java:1148) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.assistedinject.FactoryProvider2.invoke(FactoryProvider2.java:906) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/jdk.proxy10/jdk.proxy10.$Proxy127.create(Unknown Source) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.WorldManagerImpl.initWorld(WorldManagerImpl.java:60) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.PaperWorldManager.initWorld(PaperWorldManager.java:37) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.listener.WorldLoadListener.handleWorldLoad(WorldLoadListener.java:26) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:726) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:25] [Server thread/ERROR]: [squaremap] Error invoking private void xyz.jpenilla.squaremap.common.config.WorldAdvanced.colorOverrideBlocksSettings()
java.lang.NoSuchMethodError: 'java.lang.Object net.minecraft.core.Registry.get(net.minecraft.resources.ResourceLocation)'
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.requireEntry(Util.java:96) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.lambda$colorOverrideBlocksSettings$5(WorldAdvanced.java:157) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:986) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.colorOverrideBlocksSettings(WorldAdvanced.java:156) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractConfig.readConfig(AbstractConfig.java:99) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.AbstractWorldConfig.init(AbstractWorldConfig.java:51) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.WorldAdvanced.<init>(WorldAdvanced.java:24) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.create(ConfigManager.java:88) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.lambda$config$0(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1710) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager$WorldConfigContainer.config(ConfigManager.java:84) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.config.ConfigManager.worldAdvanced(ConfigManager.java:57) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.data.MapWorldInternal.<init>(MapWorldInternal.java:67) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.data.PaperMapWorld.<init>(PaperMapWorld.java:36) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.DefaultConstructionProxyFactory$ReflectiveProxy.newInstance(DefaultConstructionProxyFactory.java:120) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.provision(ConstructorInjector.java:114) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.construct(ConstructorInjector.java:91) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:300) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.InjectorImpl$1.get(InjectorImpl.java:1148) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.assistedinject.FactoryProvider2.invoke(FactoryProvider2.java:906) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/jdk.proxy10/jdk.proxy10.$Proxy127.create(Unknown Source) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.WorldManagerImpl.initWorld(WorldManagerImpl.java:60) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.PaperWorldManager.initWorld(PaperWorldManager.java:37) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.listener.WorldLoadListener.handleWorldLoad(WorldLoadListener.java:26) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:726) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:25] [Server thread/ERROR]: Could not pass event WorldLoadEvent to squaremap v1.3.2
java.lang.NoSuchMethodError: 'net.minecraft.core.Registry net.minecraft.core.RegistryAccess.registryOrThrow(net.minecraft.resources.ResourceKey)'
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.biomeRegistry(Util.java:127) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.util.Util.biomeRegistry(Util.java:123) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.data.LevelBiomeColorData.create(LevelBiomeColorData.java:48) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.data.MapWorldInternal.<init>(MapWorldInternal.java:70) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.data.PaperMapWorld.<init>(PaperMapWorld.java:36) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.DefaultConstructionProxyFactory$ReflectiveProxy.newInstance(DefaultConstructionProxyFactory.java:120) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.provision(ConstructorInjector.java:114) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorInjector.construct(ConstructorInjector.java:91) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:300) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.internal.InjectorImpl$1.get(InjectorImpl.java:1148) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/squaremap.libraries.com.google.inject.assistedinject.FactoryProvider2.invoke(FactoryProvider2.java:906) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/jdk.proxy10/jdk.proxy10.$Proxy127.create(Unknown Source) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.common.WorldManagerImpl.initWorld(WorldManagerImpl.java:60) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.PaperWorldManager.initWorld(PaperWorldManager.java:37) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at squaremap-paper-mc1.21.1-1.3.2.jar/xyz.jpenilla.squaremap.paper.listener.WorldLoadListener.handleWorldLoad(WorldLoadListener.java:26) ~[squaremap-paper-mc1.21.1-1.3.2.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:726) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[22:09:25] [Server thread/INFO]: Preparing spawn area: 0%
[22:09:25] [Server thread/INFO]: Time elapsed: 96 ms
[22:09:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[22:09:25] [Server thread/INFO]: Preparing spawn area: 0%
[22:09:25] [Server thread/INFO]: Time elapsed: 32 ms
[22:09:25] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.14+2339-43997ec
[22:09:25] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[22:09:25] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[22:09:25] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[22:09:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[22:09:25] [Server thread/INFO]: [WorldGuard] Loading region data...
[22:09:25] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[22:09:25] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:09:25] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3820)
[22:09:25] [Server thread/ERROR]: [Citizens] Unable to load Adventure, chat components will not work
[22:09:26] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[22:09:26] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
[22:09:26] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
[22:09:26] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3820) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
    at Citizens-2.0.38-b3820.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2752) ~[Citizens-2.0.38-b3820.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:529) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:508) ~[?:?]
    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.6.jar:1.21.6-24-e714de6]
    at Citizens-2.0.38-b3820.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens-2.0.38-b3820.jar:?]
    at Citizens-2.0.38-b3820.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens-2.0.38-b3820.jar:?]
    at Citizens-2.0.38-b3820.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:375) ~[Citizens-2.0.38-b3820.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R4.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 21 more
[22:09:26] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3820)
[22:09:26] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.9.2-SNAPSHOT-db5ccf92
[22:09:26] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.6)...
[22:09:26] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[22:09:26] [Server thread/WARN]: [MythicMobs] --====|||| Mythic ||||====--
[22:09:26] [Server thread/WARN]: [MythicMobs] This version of Mythic is not fully compatible with your version of Bukkit.
[22:09:26] [Server thread/WARN]: [MythicMobs] Some features may be limited or disabled until you use a compatible version.
[22:09:26] [Server thread/WARN]: [MythicMobs] Server NMS Version Detected - v1_21_R5
[22:09:26] [Server thread/ERROR]: Error occurred while enabling MythicMobs v5.9.2-SNAPSHOT-db5ccf92 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileEntityHandler.hasDefaultAttributes(org.bukkit.entity.EntityType)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getEntityHandler()" is null
    at MythicMobs-5.9.2-SNAPSHOT 5452 .jar/io.lumine.mythic.bukkit.BukkitBootstrap.lambda$initialize$0(BukkitBootstrap.java:98) ~[MythicMobs-5.9.2-SNAPSHOT 5452 .jar:?]
    at java.base/java.util.Map.forEach(Map.java:733) ~[?:?]
    at MythicMobs-5.9.2-SNAPSHOT 5452 .jar/io.lumine.mythic.bukkit.BukkitBootstrap.initialize(BukkitBootstrap.java:96) ~[MythicMobs-5.9.2-SNAPSHOT 5452 .jar:?]
    at MythicMobs-5.9.2-SNAPSHOT 5452 .jar/io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:158) ~[MythicMobs-5.9.2-SNAPSHOT 5452 .jar:?]
    at MythicMobs-5.9.2-SNAPSHOT 5452 .jar/io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81) ~[MythicMobs-5.9.2-SNAPSHOT 5452 .jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:26] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.9.2-SNAPSHOT-db5ccf92
[22:09:26] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[22:09:26] [Server thread/INFO]: [MythicMobs] - 
[22:09:26] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[22:09:26] [Server thread/INFO]: [MythicMobs] - 
[22:09:26] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[22:09:26] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.mobs.MobExecutor.despawnAllMobs()" because the return value of "io.lumine.mythic.bukkit.MythicBukkit.getMobManager()" is null
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.MythicBukkit.disable(MythicBukkit.java:257)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onDisable(LuminePlugin.java:91)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[22:09:26] [Server thread/INFO]: [MythicMobs] ✗An error occurred while saving data
[22:09:26] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.mobs.MobExecutor.saveCachedActiveMobs()" because the return value of "io.lumine.mythic.bukkit.MythicBukkit.getMobManager()" is null
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.core.config.ConfigExecutor.save(ConfigExecutor.java:479)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.core.config.ConfigExecutor.unload(ConfigExecutor.java:508)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.PluginModule.close(PluginModule.java:50)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.terminable.composite.AbstractCompositeTerminable.close(AbstractCompositeTerminable.java:31)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.terminable.composite.CompositeTerminable.closeAndReportException(CompositeTerminable.java:63)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.close(LuminePlugin.java:100)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onDisable(LuminePlugin.java:95)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.terminable.composite.CompositeClosingException: Exception(s) occurred whilst closing: [java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.drops.DropExecutor.unload()" because the return value of "io.lumine.mythic.bukkit.MythicBukkit.getDropManager()" is null]
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.terminable.composite.AbstractCompositeTerminable.close(AbstractCompositeTerminable.java:38)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.terminable.composite.CompositeTerminable.closeAndReportException(CompositeTerminable.java:63)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.close(LuminePlugin.java:100)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onDisable(LuminePlugin.java:95)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.drops.DropExecutor.unload()" because the return value of "io.lumine.mythic.bukkit.MythicBukkit.getDropManager()" is null
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.core.config.ConfigExecutor.unload(ConfigExecutor.java:510)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.PluginModule.close(PluginModule.java:50)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.terminable.composite.AbstractCompositeTerminable.close(AbstractCompositeTerminable.java:31)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.terminable.composite.CompositeTerminable.closeAndReportException(CompositeTerminable.java:63)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.close(LuminePlugin.java:100)
[22:09:26] [Server thread/WARN]:     at MythicMobs-5.9.2-SNAPSHOT 5452 .jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onDisable(LuminePlugin.java:95)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.4.4
[22:09:26] [Server thread/INFO]: [CMILib] Server version detection needs aditional update
[22:09:26] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.6 - paper  1.21.6-24-e714de6 (MC: 1.21.6)
[22:09:26] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.cast(Object)" because "this.CraftServerClass" is null
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.initialize(Reflections.java:135)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.<init>(Reflections.java:111)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.CMILib.getReflectionManager(CMILib.java:95)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Version.Version.<clinit>(Version.java:75)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:78)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:224)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.cast(Object)" because "this.CraftWorldClass" is null
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.getCraftWorld(Reflections.java:784)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.getServerName(Reflections.java:775)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Version.Version.<clinit>(Version.java:75)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:78)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:224)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/WARN]: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R1.inventory.CraftItemStack
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:529)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:508)
[22:09:26] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.NBT.CMINBT.getBukkitClass(CMINBT.java:1657)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.NBT.CMINBT.<clinit>(CMINBT.java:130)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.asNMSCopy(Reflections.java:1128)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.getItemMinecraftName(Reflections.java:877)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:97)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:224)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/WARN]: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R1.entity.CraftEntity
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:529)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:508)
[22:09:26] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.NBT.CMINBT.getBukkitClass(CMINBT.java:1657)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.NBT.CMINBT.<clinit>(CMINBT.java:132)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.asNMSCopy(Reflections.java:1128)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.getItemMinecraftName(Reflections.java:877)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:97)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:224)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.nbt.CompoundTag.c(java.lang.String,int)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:26] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.NBT.CMINBT.<clinit>(CMINBT.java:301)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.asNMSCopy(Reflections.java:1128)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.getItemMinecraftName(Reflections.java:877)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:97)
[22:09:26] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:224)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:26] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[22:09:26] [Server thread/INFO]: CMI hooked.
[22:09:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.4.4]
[22:09:26] [Server thread/INFO]: PlaceholderAPI hooked.
[22:09:26] [Server thread/INFO]: Updated (EN) language file. Took 30ms
[22:09:26] [Server thread/INFO]: Updated (RU) language file. Took 12ms
[22:09:26] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7176-DEV)
[22:09:26] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1402), impl for Spigot v1.3.1-SNAPSHOT (build 7176-DEV) 
[22:09:27] [Server thread/INFO]: +> [Denizen] Running on java version: 22.0.2 
[22:09:27] [Server thread/INFO]: +> [Denizen] Running on unrecognized (future?) Java version. May or may not work. 
[22:09:27] [Server thread/ERROR]: Error occurred while enabling Denizen v1.3.1-SNAPSHOT (build 7176-DEV) (Is it up to date?)
java.lang.UnsupportedOperationException: Use ServerBuildInfo#minecraftVersionId instead.
    at org.bukkit.craftbukkit.util.CraftMagicNumbers.getMappingsVersion(CraftMagicNumbers.java:274) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at Denizen-1.3.1-b7176-DEV.jar/com.denizenscript.denizen.nms.v1_21.Handler.isCorrectMappingsCode(Handler.java:155) ~[Denizen-1.3.1-b7176-DEV.jar:?]
    at Denizen-1.3.1-b7176-DEV.jar/com.denizenscript.denizen.Denizen.onEnable(Denizen.java:165) ~[Denizen-1.3.1-b7176-DEV.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:27] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.1-SNAPSHOT (build 7176-DEV)
[22:09:27] [Server thread/INFO]: [CMI] Enabling CMI v9.7.14.4
[22:09:27] [Server thread/INFO]: _______________________________________________________
[22:09:27] [Server thread/INFO]:  
[22:09:27] [Server thread/INFO]:  ██████╗███╗   ███╗██╗
[22:09:27] [Server thread/INFO]: ██╔════╝████╗ ████║██║
[22:09:27] [Server thread/INFO]: ██║     ██╔████╔██║██║
[22:09:27] [Server thread/INFO]: ██║     ██║╚██╔╝██║██║
[22:09:27] [Server thread/INFO]: ╚██████╗██║ ╚═╝ ██║██║
[22:09:27] [Server thread/INFO]:  ╚═════╝╚═╝     ╚═╝╚═╝
[22:09:27] [Server thread/INFO]: _______________________________________________________
[22:09:27] [Server thread/INFO]: Integrating PaperSpigot async methods
[22:09:27] [Server thread/INFO]: Vault found. (Loaded: true)
[22:09:27] [Server thread/INFO]: Citizens found. (Loaded: false)
[22:09:27] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.cast(Object)" because "this.CraftWorldClass" is null
[22:09:27] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.getCraftWorld(Reflections.java:784)
[22:09:27] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Reflections.getServerName(Reflections.java:775)
[22:09:27] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.commands.CommandsHandler.<init>(CommandsHandler.java:78)
[22:09:27] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.getCommandManager(CMI.java:963)
[22:09:27] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Modules.ModuleHandling.CMIModuleManager.load(CMIModuleManager.java:55)
[22:09:27] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:250)
[22:09:27] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:27] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:27] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:27] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:27] [Server thread/INFO]: Loaded (67) 35 Enabled and 32 Disabled modules into memory. Took 62ms
[22:09:27] [Server thread/INFO]: Loaded (1) dynamic signs into memory. Took 23ms
[22:09:27] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[22:09:27] [Server thread/INFO]: Initialized Cipher256 AES
[22:09:27] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 32ms
[22:09:27] [Server thread/INFO]: Loaded (37) custom text's into memory. Took 3ms
[22:09:27] [Server thread/INFO]: 3.49.1 data base type detected
[22:09:28] [Server thread/INFO]: Loaded (-) SqLite into memory. Took 63ms
[22:09:28] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CMIEconomy
[22:09:28] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 0ms
[22:09:28] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[22:09:28] [Server thread/INFO]: Loaded (4) cooldowns into memory. Took 0ms
[22:09:28] [Server thread/INFO]: Loaded (148) custom mob heads into memory. Took 8ms
[22:09:28] [Server thread/INFO]: Loaded (1) warmups into memory. Took 1ms
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:9)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:10)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:11)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:12)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:13)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:14)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:15)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:16)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:17)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<init>(CMISoundPreset.java:27)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.<clinit>(CMISoundPreset.java:18)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1419)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.Sound.toString()
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2405)
[22:09:28] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:97)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.Sounds.CMISound.<init>(CMISound.java:30)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Containers.CMISoundPreset.setSoundString(CMISoundPreset.java:40)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Config.load(Config.java:1424)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:309)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/INFO]: Initializing BungeeCord
[22:09:28] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.inventory.meta.ItemMeta org.bukkit.craftbukkit.inventory.SerializableMeta.deserialize(java.util.Map) throws java.lang.Throwable' of class org.bukkit.craftbukkit.inventory.SerializableMeta for deserialization
java.lang.IllegalStateException: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:enchantments":{levels:{"minecraft:silk_touch":1}}} missed input: {"minecraft:container":[{item:{count:1,id:"minecraft:iron_helmet"},slot:0},{item:{count:1,id:"minecraft:iron_chestplate"},slot:1},{item:{count:1,id:"minecraft:iron_leggings"},slot:2},{item:{count:1,id:"minecraft:iron_boots"},slot:3},{item:{components:{"minecraft:enchantments":{levels:{"minecraft:silk_touch":1}}},count:1,id:"minecraft:iron_pickaxe"},slot:4},{item:{count:32,id:"minecraft:bread"},slot:5},{item:{count:1,id:"minecraft:totem_of_undying"},slot:6},{item:{count:1,id:"minecraft:totem_of_undying"},slot:7},{item:{count:1,id:"minecraft:totem_of_undying"},slot:8},{item:{count:1,id:"minecraft:fishing_rod"},slot:9},{item:{count:1,id:"minecraft:oak_boat"},slot:10},{item:{count:10,id:"minecraft:coal_block"},slot:11},{item:{count:1,id:"minecraft:flint_and_steel"},slot:12}]}
    at com.mojang.serialization.DataResult$Error.getOrThrow(DataResult.java:287) ~[datafixerupper-8.0.16.jar:?]
    at com.mojang.serialization.DataResult.getOrThrow(DataResult.java:81) ~[datafixerupper-8.0.16.jar:?]
    at org.bukkit.craftbukkit.inventory.CraftMetaBlockState.lambda$deserializeInternal$6(CraftMetaBlockState.java:208) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.util.Optional.ifPresent(Optional.java:178) ~[?:?]
    at org.bukkit.craftbukkit.inventory.CraftMetaBlockState.deserializeInternal(CraftMetaBlockState.java:207) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.inventory.CraftMetaItem.<init>(CraftMetaItem.java:753) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.inventory.CraftMetaBlockState.<init>(CraftMetaBlockState.java:137) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.bukkit.craftbukkit.inventory.SerializableMeta.deserialize(SerializableMeta.java:80) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:87) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:129) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:209) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:58) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:37) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:162) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:162) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:162) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:121) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:310) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at CMI-9.7.14.4.jar/com.Zrips.CMI.Modules.Kits.KitsManager.load(KitsManager.java:487) ~[CMI-9.7.14.4.jar:?]
    at CMI-9.7.14.4.jar/com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:343) ~[CMI-9.7.14.4.jar:?]
    at CMI-9.7.14.4.jar/com.Zrips.CMI.CMI.onEnable(CMI.java:1378) ~[CMI-9.7.14.4.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:28] [Server thread/INFO]: Loaded (34) kits into memory. Took 31ms
[22:09:28] [Server thread/INFO]: Loaded (8) ranks into memory. Took 9ms
[22:09:28] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 1ms
[22:09:28] [Server thread/INFO]: Executed Player DB querry in 1ms
[22:09:28] [Server thread/INFO]: Loaded (28) player data into memory. Took 7ms
[22:09:28] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 1ms
[22:09:28] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[22:09:28] [Server thread/INFO]: Loaded (37) custom alias into memory. Took 2ms
[22:09:28] [Server thread/INFO]: Loaded (1) interactive commands into memory. Took 2ms
[22:09:28] [Server thread/INFO]: Loaded (-) Registered events into memory. Took 95ms
[22:09:28] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 2ms
[22:09:28] [Server thread/INFO]: Loaded (EN) language file into memory. Took 55ms
[22:09:28] [Server thread/INFO]: Loaded (RU) language file into memory. Took 53ms
[22:09:28] [Server thread/INFO]: Loaded (2) worth values into memory. Took 2ms
[22:09:28] [Server thread/INFO]: Loaded (4) warps into memory. Took 3ms
[22:09:28] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[22:09:28] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[22:09:28] [Server thread/INFO]: Loaded (6) schedules into memory. Took 4ms
[22:09:28] [Server thread/INFO]: Loaded (38) holograms into memory. Took 26ms
[22:09:28] [Server thread/INFO]: Loaded (318) skin cache entries into memory. Took 10ms
[22:09:28] [Server thread/WARN]: org.yaml.snakeyaml.error.YAMLException: Could not deserialize object
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:60)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:464)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:430)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:574)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:49)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:49)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:49)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:37)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:164)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:162)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:162)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:121)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:310)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Modules.Recipes.RecipeManager.load(RecipeManager.java:494)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:519)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: Specified class does not exist ('FoodEffect')
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:199)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:58)
[22:09:28] [Server thread/WARN]:     ... 51 more
[22:09:28] [Server thread/WARN]: org.yaml.snakeyaml.error.YAMLException: Could not deserialize object
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:60)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:464)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:430)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:574)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:49)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:49)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:49)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[22:09:28] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:37)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:164)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:162)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:162)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:121)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.FileHandler.ConfigReader.getyml(ConfigReader.java:270)
[22:09:28] [Server thread/WARN]:     at CMILib1.5.4.4.jar//net.Zrips.CMILib.FileHandler.ConfigReader.<init>(ConfigReader.java:49)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.Modules.Recipes.RecipeManager.load(RecipeManager.java:498)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMIOnEnable.init(CMIOnEnable.java:519)
[22:09:28] [Server thread/WARN]:     at CMI-9.7.14.4.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1378)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:28] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: Specified class does not exist ('FoodEffect')
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:199)
[22:09:28] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:58)
[22:09:28] [Server thread/WARN]:     ... 51 more
[22:09:28] [Server thread/INFO]: Loaded (27) ArmorStand templates into memory. Took 5ms
[22:09:28] [Server thread/INFO]: Version 9.7.14.4 has been enabled
[22:09:28] [Server thread/INFO]: _______________________________________________________
[22:09:28] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[22:09:28] [Server thread/INFO]: [CMIEInjector][Economy] CMI Economy hooked.
[22:09:28] [Server thread/INFO]: [EnderaLib] Enabling EnderaLib v1.2.0
[22:09:29] [Server thread/INFO]: [EnderaLib] Configuration successfully loaded!
[22:09:29] [Server thread/INFO]: [EnderaLib] Plugin is loaded
[22:09:29] [Server thread/INFO]: [CommandAPI] Enabling CommandAPI v10.1.0
[22:09:29] [Server thread/INFO]: [CommandAPI] Hooked into Paper ServerResourcesReloadedEvent
[22:09:29] [Server thread/INFO]: [emotecraft] Enabling emotecraft v2.2.5
[22:09:29] [Server thread/INFO]: [emotecraft] Loading Emotecraft as a bukkit plugin...
[22:09:29] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.11
[22:09:29] [Server thread/ERROR]: Error occurred while enabling ItemsAdder v4.0.11 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "beer.devs.fastnbt.nms.Version.ordinal()" because the return value of "beer.devs.fastnbt.nms.Version.get()" is null
    at ItemsAdder_4.0.11.jar/itemsadder.m.sl.mw(SourceFile:57) ~[ItemsAdder_4.0.11.jar:?]
    at ItemsAdder_4.0.11.jar/itemsadder.m.sl.mx(SourceFile:83) ~[ItemsAdder_4.0.11.jar:?]
    at ItemsAdder_4.0.11.jar/dev.lone.itemsadder.Main.onEnable(SourceFile:171) ~[ItemsAdder_4.0.11.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:29] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v4.0.11
[22:09:29] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.8
[22:09:29] [Server thread/INFO]: [Shopkeepers] Loading the data of 20 shopkeepers ...
[22:09:29] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.2-RC2
[22:09:29] [Server thread/INFO]: [CoreProtect] CoreProtect Edge был успешно запущен! 
[22:09:29] [Server thread/INFO]: [CoreProtect] Для хранения данных используется SQLite.
[22:09:29] [Server thread/INFO]: --------------------
[22:09:29] [Server thread/INFO]: [CoreProtect] Нравится CoreProtect? Присоединяйтесь к нашему Discord!
[22:09:29] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[22:09:29] [Server thread/INFO]: --------------------
[22:09:29] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.59
[22:09:29] [Server thread/INFO]: [BigDoors] Power Block Types:
[22:09:29] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[22:09:29] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[22:09:29] [Server thread/INFO]: [BigDoors]  - BEDROCK
[22:09:29] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[22:09:29] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[22:09:29] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[22:09:29] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[22:09:29] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[22:09:29] [Server thread/INFO]: [BigDoors]  - LAVA
[22:09:29] [Server thread/INFO]: [BigDoors]  - WATER
[22:09:29] [Server thread/INFO]: [BigDoors]  - SNOW
[22:09:29] [Server thread/INFO]: [BigDoors]  - FERN
[22:09:29] [Server thread/INFO]: [BigDoors]  - SHORT_GRASS
[22:09:29] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[22:09:29] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[22:09:29] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[22:09:29] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[22:09:29] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[22:09:29] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[22:09:29] [Server thread/INFO]: [Effect Library] Enabling EffectLib v9.0
[22:09:29] [Server thread/INFO]: [AntiCloneTool] Enabling AntiCloneTool v1.4-b5
[22:09:29] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[22:09:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[22:09:29] [Server thread/INFO]: [EntityDetection] Enabling EntityDetection v1.2.0 (build #23)
[22:09:29] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.8
[22:09:29] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[22:09:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.8]
[22:09:29] [Server thread/INFO]: [LiteFish] Enabling LiteFish v4.12.0
[22:09:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lfish [1.0]
[22:09:30] [Server thread/INFO]: [FartherViewDistance] Enabling FartherViewDistance v10.1.3
[22:09:30] [Server thread/WARN]: [FartherViewDistance] Unsupported Version, for versions < 1.21.4 downgrade to 9.9.2, for versions > 1.21.4 download the corresponding version
[22:09:30] [Server thread/INFO]: [FartherViewDistance] Disabling FartherViewDistance v10.1.3
[22:09:30] [Server thread/ERROR]: Error occurred while enabling FartherViewDistance v10.1.3 (Is it up to date?)
java.lang.IllegalArgumentException: Unsupported MC version: 1.21.6 Bukkit Version:1.21.6-R0.1-SNAPSHOT
    at FartherViewDistance-10.1.3.jar/xuan.cat.fartherviewdistance.code.ChunkIndex.onEnable(ChunkIndex.java:53) ~[FartherViewDistance-10.1.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:30] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[22:09:30] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[22:09:30] [Server thread/WARN]: [DeluxeMenus] command: suff111 specified for menu: menu_rare-suff already exists for another menu!
Skipping command: suff111 in menu: menu_rare-suff
[22:09:30] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: rew_menu is not valid!
Skipping item: grass
[22:09:30] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: ah_menu already exists for another menu!
Skipping menu: ah_menu
[22:09:30] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: dost_menu already exists for another menu!
Skipping menu: dost_menu
[22:09:30] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: test_193y2 already exists for another menu!
Skipping menu: test_193y2
[22:09:30] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: test_2 already exists for another menu!
Skipping menu: test_2
[22:09:30] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: test_3 already exists for another menu!
Skipping menu: test_3
[22:09:30] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: test_4 already exists for another menu!
Skipping menu: test_4
[22:09:30] [Server thread/WARN]: [DeluxeMenus] command: eff specified for menu: menu_menus already exists for another menu!
Skipping command: eff in menu: menu_menus
[22:09:30] [Server thread/WARN]: [DeluxeMenus] command: petss specified for menu: pets_slime already exists for another menu!
Skipping command: petss in menu: pets_slime
[22:09:30] [Server thread/INFO]: [DeluxeMenus] 32 GUI menus loaded!
[22:09:30] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[22:09:30] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[22:09:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[22:09:30] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.5-SNAPSHOT
[22:09:30] [Server thread/ERROR]: Error occurred while enabling MCPets v4.1.5-SNAPSHOT (Is it up to date?)
java.lang.NoClassDefFoundError: io/lumine/mythic/api/skills/conditions/ISkillCondition
    at MCPets 4.1.6 (1.21.+).jar/fr.nocsy.mcpets.listeners.EventListener.init(EventListener.java:30) ~[MCPets 4.1.6 (1.21.+).jar:?]
    at MCPets 4.1.6 (1.21.+).jar/fr.nocsy.mcpets.MCPets.onEnable(MCPets.java:89) ~[MCPets 4.1.6 (1.21.+).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.ClassNotFoundException: io.lumine.mythic.api.skills.conditions.ISkillCondition
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 14 more
[22:09:30] [Server thread/INFO]: [MCPets] Disabling MCPets v4.1.5-SNAPSHOT
[22:09:30] [Server thread/INFO]: -=-=-=-= MCPets disabled =-=-=-=-
[22:09:30] [Server thread/INFO]:           See you soon           
[22:09:30] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=-=- =-=-=-=-
[22:09:30] [Server thread/ERROR]: Error occurred while disabling MCPets v4.1.5-SNAPSHOT
java.lang.NoClassDefFoundError: com/ticxo/modelengine/api/mount/controller/MountControllerSupplier
    at MCPets 4.1.6 (1.21.+).jar/fr.nocsy.mcpets.MCPets.onDisable(MCPets.java:111) ~[MCPets 4.1.6 (1.21.+).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.ticxo.modelengine.api.mount.controller.MountControllerSupplier
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 16 more
[22:09:30] [Server thread/INFO]: [dDiscordBot] Enabling dDiscordBot v0.7 (build 303)
[22:09:30] [Server thread/ERROR]: Error occurred while enabling dDiscordBot v0.7 (build 303) (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/utilities/debugging/Debug
    at dDiscordBot-0.7-b303.jar/com.denizenscript.ddiscordbot.DenizenDiscordBot.onEnable(DenizenDiscordBot.java:44) ~[dDiscordBot-0.7-b303.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.utilities.debugging.Debug
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 13 more
[22:09:30] [Server thread/INFO]: [dDiscordBot] Disabling dDiscordBot v0.7 (build 303)
[22:09:30] [Server thread/ERROR]: Error occurred while disabling dDiscordBot v0.7 (build 303)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/flags/FlaggableObject
    at java.base/java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
    at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1023) ~[?:?]
    at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:252) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:592) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    at dDiscordBot-0.7-b303.jar/com.denizenscript.ddiscordbot.DenizenDiscordBot.onDisable(DenizenDiscordBot.java:345) ~[dDiscordBot-0.7-b303.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.flags.FlaggableObject
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 24 more
[22:09:30] [Server thread/INFO]: [Altenizen] Enabling Altenizen v1.0-SNAPSHOT
[22:09:30] [Server thread/INFO]: [Altenizen] ║ ■=■=■=■=■=■=■=■=■=■=■=■=■=■=■=■=■=■=■=■
[22:09:30] [Server thread/INFO]: [Altenizen] ║ Altenizen
[22:09:30] [Server thread/INFO]: [Altenizen] ║ [----------] 0% - Initializing config ║
[22:09:30] [Server thread/INFO]: [Altenizen] ║ [####------] 40% - Checking for Denizen plugin ║
[22:09:30] [Server thread/ERROR]: [Altenizen] ║ Denizen is not installed! ║
[22:09:30] [Server thread/INFO]: [Altenizen] Disabling Altenizen v1.0-SNAPSHOT
[22:09:30] [Server thread/INFO]: [Drugs] Enabling Drugs v1.1
[22:09:30] [Server thread/WARN]: [Drugs] Этот плагин и его разработчик не призывают к употреблению психоактивных или психотропных веществ, а также не поддерживают, не поощряют
[22:09:30] [Server thread/WARN]: [Drugs] и не оправдывают любые действия, связанные с их использованием.
[22:09:30] [Server thread/WARN]: [Drugs] Плагин предназначен исключительно для образовательных или исследовательских целей и не предназначен для нарушения законодательства или пропаганды запрещенных действий.
[22:09:30] [Server thread/WARN]: [Drugs] Разработчик категорически осуждает любые действия, которые могут нанести вред здоровью, жизни, имуществу или нарушить действующее законодательство.
[22:09:30] [Server thread/WARN]: [Drugs] Вся ответственность за любые инциденты, последствия, нарушения закона или любые другие действия, совершенные с использованием этого плагина, полностью и
[22:09:30] [Server thread/WARN]: [Drugs] исключительно ложится на пользователей.
[22:09:30] [Server thread/WARN]: [Drugs] Вы предупреждены!
[22:09:30] [Server thread/WARN]: [Drugs] 
[22:09:30] [Server thread/WARN]: [Drugs]                     ____            ____            ____
[22:09:30] [Server thread/WARN]: [Drugs]                    /....\          /....\          /....\
[22:09:30] [Server thread/WARN]: [Drugs]            .-.    |::::::|    .-. |::::::|    .-. |::::::|
[22:09:30] [Server thread/WARN]: [Drugs]            | |    |::::::|    | | |::::::|    | | |::::::|
[22:09:30] [Server thread/WARN]: [Drugs]            | |    (`:'':')    | | (`:'':')    | | (`:'':')
[22:09:30] [Server thread/WARN]: [Drugs]            | |   _--|__|--__  | |.--|__|--__  | |_--|__|--__
[22:09:30] [Server thread/WARN]: [Drugs]            | |  |   ________|_|_|_  ________|_|_|_  ________|_____
[22:09:30] [Server thread/WARN]: [Drugs]            | | /    |            |  |            |  |            |
[22:09:30] [Server thread/WARN]: [Drugs]            | |/  /  |            |  |            |  |            |
[22:09:30] [Server thread/WARN]: [Drugs]            |_| |/|  |            |  |            |  |            |
[22:09:30] [Server thread/WARN]: [Drugs]           (===)| |  |   S.W.A.T  |  |   S.W.A.T  |  |   S.W.A.T  |
[22:09:30] [Server thread/WARN]: [Drugs]           `==='  |`-|            |`-|            |`-|            |
[22:09:30] [Server thread/WARN]: [Drugs]            | |   |`-|            |`-|            |`-|            |
[22:09:30] [Server thread/WARN]: [Drugs]            |_|   |  |            |  |            |  |            |
[22:09:30] [Server thread/WARN]: [Drugs]                  |  |            |  |            |  |            |
[22:09:30] [Server thread/WARN]: [Drugs]                  |  |            |  |            |  |            |
[22:09:30] [Server thread/WARN]: [Drugs]                  |`-|            |`-|            |`-|            |
[22:09:30] [Server thread/WARN]: [Drugs]                  |__|            |__|            |__|            |
[22:09:30] [Server thread/WARN]: [Drugs]                  /_ |            |_ |            |_ |            |
[22:09:30] [Server thread/WARN]: [Drugs]                 |___`-__________-'__`-__________-'__`-__________-'
[22:09:30] [Server thread/WARN]: [Drugs] 
[22:09:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[22:09:30] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection conn1: url=jdbc:h2:/home/container/plugins/Drugs/data.db user=SA
[22:09:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[22:09:30] [Server thread/INFO]: [Exposed] Preparing create tables statements took 80ms
[22:09:30] [Server thread/INFO]: [Exposed] Executing create tables statements took 13ms
[22:09:30] [Server thread/INFO]: [Exposed] Extracting table columns took 2ms
[22:09:30] [Server thread/INFO]: [Exposed] Extracting primary keys took 1ms
[22:09:30] [Server thread/INFO]: [Exposed] Extracting column constraints took 1ms
[22:09:30] [Server thread/INFO]: [Exposed] Preparing alter table statements took 7ms
[22:09:30] [Server thread/INFO]: [Exposed] Executing alter table statements took 0ms
[22:09:30] [Server thread/INFO]: [Exposed] Checking mapping consistence took 2ms
[22:09:30] [Server thread/INFO]: [Drugs] Database initialized with HikariCP.
[22:09:30] [Server thread/INFO]: [Drugs] Конфигурация drugs.yml загружена: /home/container/plugins/Drugs/drugs.yml
[22:09:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: drugs [1.1]
[22:09:30] [Server thread/INFO]: [Drugs] PlaceholderAPI обнаружен. Плейсхолдеры зарегистрированы.
[22:09:30] [Server thread/INFO]: [TAB-Bridge] Enabling TAB-Bridge v6.0.2
[22:09:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [6.0.2]
[22:09:30] [Server thread/INFO]: [AnimationsCore] Enabling AnimationsCore v2.2.0
[22:09:30] [Server thread/ERROR]: Error occurred while enabling AnimationsCore v2.2.0 (Is it up to date?)
java.lang.NoClassDefFoundError: io/lumine/mythic/api/mobs/MobManager
    at AnimationsCore-2.2.0.jar/net.novua.animationscore.AnimationsCore.onEnable(AnimationsCore.java:48) ~[AnimationsCore-2.2.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.ClassNotFoundException: io.lumine.mythic.api.mobs.MobManager
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 13 more
[22:09:30] [Server thread/INFO]: [AnimationsCore] Disabling AnimationsCore v2.2.0
[22:09:30] [Server thread/INFO]: [AnimationsCore] AnimationsCore plugin has been disabled.
[22:09:30] [Server thread/INFO]: [RoyaleSpec] Enabling RoyaleSpec v1.0
[22:09:30] [Server thread/INFO]: [TAB] Enabling TAB v5.2.1
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "fake-moder". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "moder-1". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "moder-2". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "admin". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "kurator". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "milahka". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "twitch". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "youtube". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:09:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.2.1]
[22:09:31] [Server thread/INFO]: [TAB] [WARN] Found a total of 11 issues.
[22:09:31] [Server thread/INFO]: [TAB] Enabled in 147ms
[22:09:31] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.7.4
[22:09:31] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.6-24-e714de6 (MC: 1.21.6)
[22:09:31] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R5
[22:09:31] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[22:09:31] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[22:09:31] [Server thread/INFO]: [InventoryRollbackPlus] Tests completed: 5, Skipped: 0, Failed: 0
[22:09:31] [Server thread/INFO]: [InventoryRollbackPlus] All tests passed successfully.
[22:09:31] [Server thread/INFO]: [EasyPayments] Enabling EasyPayments v2.4.0
[22:09:31] [Server thread/INFO]: [EasyPayments] Detected platform: Paper Universal
[22:09:31] [Server thread/INFO]: [EasyPayments]  
[22:09:31] [Server thread/INFO]: [EasyPayments]  EasyPayments is an official payment processing implementation.
[22:09:31] [Server thread/INFO]: [EasyPayments]  © EasyDonate 2020-2025 - All rights reserved.
[22:09:31] [Server thread/INFO]: [EasyPayments]  
[22:09:31] [Server thread/INFO]: [BreweryX] Enabling BreweryX v3.3.4
[22:09:31] [Server thread/INFO]: [BreweryX] New wood types detected. Assigning recipe numbers:
[22:09:31] [Server thread/INFO]: [BreweryX]   PALE_OAK: 13
[22:09:31] [Server thread/INFO]: [Brewery] Minecraft version: 1.21
[22:09:31] [Server thread/INFO]: [Brewery] DataManager created: FlatFile
[22:09:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: breweryx [3.3.4]
[22:09:31] [Server thread/INFO]: [Brewery] Using scheduler: PaperScheduler
[22:09:31] [Server thread/INFO]: [Brewery] BreweryX enabled!
[22:09:31] [Server thread/INFO]: [RHLeafDecay] Enabling RHLeafDecay v1.21_R1
[22:09:31] [Server thread/INFO]: [RHLeafDecay] The plugin has been loaded!
[22:09:31] [Server thread/INFO]: [RHLeafDecay] You are using version 1.21_R1 /w 💕 by X0R3
[22:09:31] [Server thread/INFO]: [RHLeafDecay] Info:
[22:09:31] [Server thread/INFO]: [RHLeafDecay] If you want your server be presented on the plugin page, then please contact me! :)
[22:09:31] [Server thread/INFO]: [GSit] Enabling GSit v2.4.0
[22:09:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.4.0]
[22:09:31] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[22:09:31] [Server thread/INFO]: [GSit] Плагин был включен.
[22:09:32] [Server thread/INFO]: [GSit] Соединение с  PlaceholderAPI Успешно!
[22:09:32] [Server thread/INFO]: [GSit] Соединение с  WorldGuard Успешно!
[22:09:32] [Server thread/INFO]: [DodaLock] Enabling DodaLock v1.1
[22:09:32] [Server thread/INFO]: [org.example.dodalock.dodalock.utils.config.MainConfiguration] Saving MainConfiguration...
[22:09:32] [Server thread/INFO]: [org.example.dodalock.dodalock.utils.config.MainConfiguration] MainConfiguration saved successfully.
[22:09:32] [Server thread/INFO]: [org.example.dodalock.dodalock.utils.config.MainConfiguration] Configuration reloaded.
[22:09:32] [Server thread/INFO]: [org.example.dodalock.dodalock.utils.config.MainConfiguration] Saving MainConfiguration...
[22:09:32] [Server thread/INFO]: [org.example.dodalock.dodalock.utils.config.MainConfiguration] MainConfiguration saved successfully.
[22:09:32] [Server thread/INFO]: [JiCanvas] Enabling JiCanvas v1.0
[22:09:32] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[22:09:32] [Server thread/INFO]: [ScreenEffects] Enabling ScreenEffects v1.0.19
[22:09:32] [Server thread/ERROR]: Error occurred while enabling ScreenEffects v1.0.19 (Is it up to date?)
java.lang.NullPointerException: Cannot read field "protocol" because the return value of "beer.devs.fastnbt.nms.Version.get()" is null
    at beer.devs.fastnbt.nms.Version.isAtLeast(Version.java:71) ~[?:?]
    at ScreenEffects_1.0.19.jar/dev.lone.ScreenEffects.Main.onEnable(Main.java:52) ~[ScreenEffects_1.0.19.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:32] [Server thread/INFO]: [ScreenEffects] Disabling ScreenEffects v1.0.19
[22:09:32] [Server thread/INFO]: [LiteFarm] Enabling LiteFarm v3.10.5
[22:09:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lfarm [1.0]
[22:09:32] [Server thread/INFO]: [MagicCosmetics] Enabling MagicCosmetics v3.1.1
[22:09:32] [Server thread/ERROR]: [MagicCosmetics] Version: 1.21.6 Not Supported!
[22:09:32] [Server thread/INFO]: [MagicCosmetics] Disabling MagicCosmetics v3.1.1
[22:09:32] [Server thread/ERROR]: Error occurred while disabling MagicCosmetics v3.1.1
java.lang.NullPointerException: Cannot invoke "com.francobm.magicosmetics.database.SQL.savePlayers()" because "this.sql" is null
    at MagicCosmetics-3.1.1.jar/com.francobm.magicosmetics.MagicCosmetics.onDisable(MagicCosmetics.java:460) ~[MagicCosmetics-3.1.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at MagicCosmetics-3.1.1.jar/com.francobm.magicosmetics.MagicCosmetics.onEnable(MagicCosmetics.java:169) ~[MagicCosmetics-3.1.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:32] [Server thread/INFO]: [NoChatReports] Enabling NoChatReports v2.4.0
[22:09:32] [Server thread/INFO]: [NoChatReports] Loading support for Minecraft version: 1.21.6
[22:09:32] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "com.tcoded.nochatreports.nms.NmsVersion.name()" because the return value of "com.tcoded.nochatreports.nms.NmsVersion.getNmsVersion(String)" is null
[22:09:32] [Server thread/WARN]:     at NoChatReports-2.4.0.jar//com.tcoded.nochatreports.nms.NmsProvider.getNmsProvider(NmsProvider.java:17)
[22:09:32] [Server thread/WARN]:     at NoChatReports-2.4.0.jar//com.tcoded.nochatreports.plugin.NoChatReports.onEnable(NoChatReports.java:122)
[22:09:32] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:09:32] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:09:32] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:09:32] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:09:32] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653)
[22:09:32] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608)
[22:09:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:09:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:09:32] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280)
[22:09:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:09:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:09:32] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:32] [Server thread/ERROR]: [NoChatReports] Failed to load NMS provider for Minecraft version: 1.21.6
[22:09:32] [Server thread/INFO]: [NoChatReports] Disabling NoChatReports v2.4.0
[22:09:32] [Server thread/ERROR]: Error occurred while disabling NoChatReports v2.4.0
java.lang.NullPointerException: Cannot invoke "com.tcoded.nochatreports.nms.NmsProvider.getChannelInjector()" because "this.nmsProvider" is null
    at NoChatReports-2.4.0.jar/com.tcoded.nochatreports.plugin.NoChatReports.onDisable(NoChatReports.java:162) ~[NoChatReports-2.4.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at NoChatReports-2.4.0.jar/com.tcoded.nochatreports.plugin.NoChatReports.onEnable(NoChatReports.java:129) ~[NoChatReports-2.4.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[22:09:32] [Server thread/INFO]: [squaremarker] Enabling squaremarker v1.0.6
[22:09:32] [pool-63-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[22:09:33] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[22:09:33] [Server thread/INFO]: [BannerLayer] Enabling BannerLayer v1.1.0
[22:09:33] [Server thread/INFO]: [BannerLayer] [STDOUT] [BannerLayer] enabled.
[22:09:33] [Server thread/WARN]: Nag author(s): '[TobiasLP]' of 'BannerLayer v1.1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[22:09:33] [Server thread/INFO]: [CoreProtectTNT] Enabling CoreProtectTNT v2.3.1
[22:09:33] [Server thread/INFO]: [MultiSignBook] Enabling MultiSignBook v1.2
[22:09:33] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.1.1 (build 865)
[22:09:33] [Server thread/ERROR]: Error occurred while enabling Depenizen v2.1.1 (build 865) (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/utilities/debugging/Debug
    at Depenizen-2.1.1-b865.jar/com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:30) ~[Depenizen-2.1.1-b865.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.utilities.debugging.Debug
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 13 more
[22:09:33] [Server thread/INFO]: [Depenizen] Disabling Depenizen v2.1.1 (build 865)
[22:09:33] [Server thread/ERROR]: Error occurred while disabling Depenizen v2.1.1 (build 865)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/tags/TagRunnable$RootForm
    at Depenizen-2.1.1-b865.jar/com.denizenscript.depenizen.bukkit.Depenizen.onDisable(Depenizen.java:51) ~[Depenizen-2.1.1-b865.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:653) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:608) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:280) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.6.jar:1.21.6-24-e714de6]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.tags.TagRunnable$RootForm
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 16 more
[22:09:33] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.5
[22:09:33] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.5*-=-=-=-=-=-=-=-=-=-*
[22:09:33] [Server thread/INFO]: | Hooked on Vault 1.7.3-CMI
[22:09:33] [Server thread/INFO]: | Command file(s) found : 1
[22:09:33] [Server thread/INFO]: | Config : Ready.
[22:09:33] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[22:09:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[22:09:33] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[22:09:33] [Server thread/INFO]: | Custom commands loaded : 0
[22:09:33] [Server thread/INFO]: | You're running the latest version of MyCommand.
[22:09:33] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[22:09:33] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[22:09:33] [Server thread/INFO]: [CommandRemover] Enabling CommandRemover v1.0
[22:09:33] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[22:09:33] [Server thread/INFO]: [spark] Starting background profiler...
[22:09:33] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:09:33] [Server thread/INFO]: Done preparing level "world" (9.338s)
[22:09:33] [Server thread/INFO]: Running delayed init tasks
[22:09:33] [Craft Scheduler Thread - 7 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[22:09:33] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[22:09:33] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[22:09:33] [ForkJoinPool.commonPool-worker-2/INFO]: [squaremap] Получение информации о версии...
[22:09:33] [Craft Scheduler Thread - 7 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[22:09:33] [Server thread/INFO]: [CMI] Permission plugin: LuckPerms5.4.145
[22:09:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.7.14.4]
[22:09:33] [Craft Scheduler Thread - 4 - PlayerParticles/INFO]: [RoseGarden] An update for PlayerParticles (v8.9) is available! You are running v8.8.
[22:09:33] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[22:09:33] [Server thread/INFO]: [CommandAPI] Reloading datapacks...
[22:09:34] [Server thread/INFO]: Loaded 1407 recipes
[22:09:34] [Server thread/INFO]: Loaded 1535 advancements
[22:09:34] [ForkJoinPool.commonPool-worker-2/INFO]: [squaremap] squaremap устарел на 4 версию(ии).
[22:09:34] [ForkJoinPool.commonPool-worker-2/INFO]: [squaremap] Загрузите последнюю версию (v1.3.6) по ссылке https://github.com/jpenilla/squaremap/releases/tag/v1.3.6.
[22:09:34] [Server thread/INFO]: [CommandAPI] Finished reloading datapacks
[22:09:34] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit регистрация успешно инициализирована.
[22:09:34] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[22:09:34] [Server thread/INFO]: Done (31.636s)! For help, type "help"
[22:09:34] [Server thread/INFO]: [CMI] DiscordSRV found. (Loaded: true)
[22:09:34] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (2 methods)
[22:09:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:логи(1254679317699362927)
[22:09:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Saved linked accounts in 3ms
[22:09:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[22:09:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] java.lang.NoSuchFieldException: modifiers
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]     at java.base/java.lang.Class.getDeclaredField(Class.java:2792)
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]     at DiscordSRV-Build-1.29.0.jar//github.scarsz.discordsrv.modules.alerts.AlertListener.register(AlertListener.java:118)
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]     at DiscordSRV-Build-1.29.0.jar//github.scarsz.discordsrv.modules.alerts.AlertListener.reloadAlerts(AlertListener.java:184)
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]     at DiscordSRV-Build-1.29.0.jar//github.scarsz.discordsrv.modules.alerts.AlertListener.<init>(AlertListener.java:101)
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]     at DiscordSRV-Build-1.29.0.jar//github.scarsz.discordsrv.DiscordSRV.init(DiscordSRV.java:1380)
[22:09:34] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]     at java.base/java.lang.Thread.run(Thread.java:1570)
[22:09:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 33 alerts registered
[22:09:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[22:09:34] [Server thread/INFO]: [BigDoors] Checking for updates...
[22:09:34] [ForkJoinPool.commonPool-worker-10/INFO]: [BigDoors] No new updates available.
[22:09:35] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.5]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[22:09:35] [Server thread/WARN]: [PlaceholderAPI] There was an issue with loading an expansion.
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: string [1.0.4]
[22:09:35] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 105 scripts loaded!
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.0]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parsenear [1.1.0]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: otherplayer [2.1.0]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: randomnumber [1.1.0]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.2]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: Advancements [1.7]
[22:09:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parseother [1.5.0]
[22:09:35] [Server thread/INFO]: 16 placeholder hook(s) registered! 6 placeholder hook(s) have an update available.