Paste #132311: DenizenMetaBot Auto-Repaste Of log From _suda_

Date: 2025/04/01 18:37:19 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


[10:10:21] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.1+12-LTS; Amazon.com Inc. Corretto-21.0.1.12.1) on Mac OS X 15.4 (x86_64)
[10:10:21] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-222-main@9b1798d (2025-03-27T13:35:40Z) for Minecraft 1.21.4
[10:10:22] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[10:10:24] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[10:10:24] [ServerMain/INFO]: [PluginInitializerManager] Initialized 60 plugins
[10:10:24] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (3):
 - EconomyShopGUI-Premium (5.23.0), Minepacks (2.4.31.6-T20250103114036), PCGF_PluginLib (1.0.39.8-SNAPSHOT)
[10:10:24] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (57):
 - AdminActionLogger (1.2.0), AnimatedScoreboard (0.3.7), AutoReplant (2.4), BanItem (3.6), BlockLocker (1.13), Citizens (2.0.38-SNAPSHOT (build 3771)), ClearLag (3.2.2), CoreProtect (23.2-RC4), CosmeticsCore (1.3.2-beta-1), CreativeItemLogger (1.0.0), CustomCrops (3.6.32.1), DecentHolograms (2.8.16), DiscordSRV (1.29.0), Essentials (2.21.0), EssentialsChat (2.21.0), EssentialsProtect (2.21.0), EssentialsSpawn (2.21.0), F-Command (2.6.1), ImageFrame (1.7.14.0), InteractionVisualizer (1.18.13.0), ItemsAdder (4.0.9-hotfix-1), Kotlin (2.1.20), LibsDisguises (11.0.3), LoneLibs (1.0.65), LuckPerms (5.4.158), MCPets (4.1.4), MineGPT (1.11.10), MiniMOTD (2.1.5), ModelEngine (R4.0.8), Multiverse-Core (4.3.14), Multiverse-NetherPortals (4.3.0-SNAPSHOT), Multiverse-Portals (4.3.0-SNAPSHOT), MythicMobs (5.8.2-6a2683d7), NBTAPI (2.14.1), OpenInv (5.1.9), PlaceholderAPI (2.11.6), PlugManX (2.4.1), ProtocolLib (5.4.0-SNAPSHOT-742), Quests (5.2.2-b533), QuestsBar (2.2), SkBee (3.7.0), SkQuery (4.3.2), Skript (2.10.2), TAB (5.2.0), TeaksTweaks (2.0.7-mc1.21.4), Vault (1.7.3-b131), VeinMiner (2.2.6), VengefulMobs (1.1.1), ViaBackwards (5.3.1), ViaVersion (5.3.1), WorldEdit (7.3.11+7055-8357a12), WorldEditSelectionVisualizer (2.1.7), WorldGuard (7.0.13+82fdc65), done-connector (1.9.8), packetevents (2.7.1+ef4927680-SNAPSHOT), sleep-most (5.5.3), voicechat (2.5.26)
[10:10:29] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:10:32] [ServerMain/INFO]: Loaded 1370 recipes
[10:10:32] [ServerMain/INFO]: Loaded 1481 advancements
[10:10:32] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[10:10:32] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 260.5ms
[10:10:32] [Server thread/INFO]: Starting minecraft server version 1.21.4
[10:10:32] [Server thread/INFO]: Loading properties
[10:10:33] [Server thread/INFO]: This server is running Paper version 1.21.4-222-main@9b1798d (2025-03-27T13:35:40Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[10:10:33] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[10:10:33] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:10:33] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:10:33] [Server thread/INFO]: [MoonriseCommon] Paper is using 2 worker threads, 1 I/O threads
[10:10:33] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[10:10:34] [Server thread/INFO]: Default game type: SURVIVAL
[10:10:34] [Server thread/INFO]: Generating keypair
[10:10:34] [Server thread/INFO]: Starting Minecraft server on *:25565
[10:10:34] [Server thread/INFO]: Using default channel type
[10:10:34] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[10:10:34] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.pom
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/joml/joml/1.10.8/joml-1.10.8.pom
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.pom
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.pom
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.pom
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.13.1/adventure-api-4.13.1.pom
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-bom/4.13.1/adventure-bom-4.13.1.pom
[10:10:35] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.13.1/adventure-key-4.13.1.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/examination-api/1.3.0/examination-api-1.3.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/22.0.0/annotations-22.0.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/examination-string/1.3.0/examination-string-1.3.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.0.1/annotations-24.0.1.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-bom/4.17.0/adventure-bom-4.17.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.1.0/annotations-24.1.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[10:10:36] [BasicRepositoryConnector-repo.maven.apache.org-0-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.pom
[10:10:36] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-bom/4.16.0/adventure-bom-4.16.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/option/1.0.0/option-1.0.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.0/gson-2.8.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.0/gson-parent-2.8.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/option/1.0.0/option-1.0.0.jar
[10:10:37] [BasicRepositoryConnector-repo.maven.apache.org-1-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-bom/4.14.0/adventure-bom-4.14.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.13.0/adventure-api-4.13.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-bom/4.13.0/adventure-bom-4.13.0.pom
[10:10:37] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.13.0/adventure-key-4.13.0.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[10:10:38] [BasicRepositoryConnector-repo.maven.apache.org-2-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[10:10:38] [BasicRepositoryConnector-repo.maven.apache.org-2-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[10:10:38] [BasicRepositoryConnector-repo.maven.apache.org-2-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[10:10:38] [BasicRepositoryConnector-repo.maven.apache.org-2-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[10:10:38] [BasicRepositoryConnector-repo.maven.apache.org-2-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/beer/devs/FastNbt-jar/1.4.3/FastNbt-jar-1.4.3.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/beer/devs/FastNbt/1.4.3/FastNbt-1.4.3.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.14/httpcomponents-client-4.5.14.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.16/httpcomponents-core-4.4.16.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.12/fusesource-pom-1.12.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.18.0/adventure-api-4.18.0.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-bom/4.18.0/adventure-bom-4.18.0.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.18.0/adventure-key-4.18.0.pom
[10:10:38] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/26.0.1/annotations-26.0.1.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.18.0/adventure-text-serializer-gson-4.18.0.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-json/4.18.0/adventure-text-serializer-json-4.18.0.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/google/auto/service/auto-service-aggregator/1.1.1/auto-service-aggregator-1.1.1.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson-legacy-impl/4.18.0/adventure-text-serializer-gson-legacy-impl-4.18.0.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-json-legacy-impl/4.18.0/adventure-text-serializer-json-legacy-impl-4.18.0.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-nbt/4.18.0/adventure-nbt-4.18.0.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-minimessage/4.18.0/adventure-text-minimessage-4.18.0.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/alibaba/fastjson2/fastjson2-parent/2.0.43/fastjson2-parent-2.0.43.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.3.31/spring-framework-bom-5.3.31.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-bom/2021.2.18/spring-data-bom-2021.2.18.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/5.8.8/spring-security-bom-5.8.8.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.16.0/jackson-bom-2.16.0.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.16/jackson-parent-2.16.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/56/oss-parent-56.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.25.1/protobuf-bom-3.25.1.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/11.0.15/jetty-bom-11.0.15.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/2.41/jersey-bom-2.41.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.6.21/kotlin-bom-1.6.21.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom
[10:10:39] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.pom
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.pom
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.pom
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/beer/devs/FastNbt-jar/1.4.3/FastNbt-jar-1.4.3.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/26.0.1/annotations-26.0.1.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson-legacy-impl/4.18.0/adventure-text-serializer-gson-legacy-impl-4.18.0.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-json-legacy-impl/4.18.0/adventure-text-serializer-json-legacy-impl-4.18.0.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[10:10:40] [BasicRepositoryConnector-repo.maven.apache.org-3-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/beer/devs/FastNbt-jar/1.4.3/FastNbt-jar-1.4.3.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-api/4.18.0/adventure-api-4.18.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-key/4.18.0/adventure-key-4.18.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/jetbrains/annotations/26.0.1/annotations-26.0.1.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson/4.18.0/adventure-text-serializer-gson-4.18.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-json/4.18.0/adventure-text-serializer-json-4.18.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.18.0/adventure-text-serializer-gson-legacy-impl-4.18.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.18.0/adventure-text-serializer-json-legacy-impl-4.18.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-minimessage/4.18.0/adventure-text-minimessage-4.18.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/ow2/asm/asm/9.3/asm-9.3.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[10:10:40] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loading 4 libraries... please wait
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/junit/junit/4.10/junit-4.10.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/4.9.3/okhttp-4.9.3.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/squareup/okio/okio/2.8.0/okio-2.8.0.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.4.0/kotlin-stdlib-1.4.0.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.4.0/kotlin-stdlib-common-1.4.0.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.4.10/kotlin-stdlib-1.4.10.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.4.10/kotlin-stdlib-common-1.4.10.pom
[10:10:41] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/junit/junit/4.10/junit-4.10.jar
[10:10:41] [BasicRepositoryConnector-repo.maven.apache.org-4-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/4.9.3/okhttp-4.9.3.jar
[10:10:41] [BasicRepositoryConnector-repo.maven.apache.org-4-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.4.0/kotlin-stdlib-common-1.4.0.jar
[10:10:41] [BasicRepositoryConnector-repo.maven.apache.org-4-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.4.10/kotlin-stdlib-1.4.10.jar
[10:10:41] [BasicRepositoryConnector-repo.maven.apache.org-4-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar
[10:10:41] [BasicRepositoryConnector-repo.maven.apache.org-4-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/squareup/okio/okio/2.8.0/okio-2.8.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/junit/junit/4.10/junit-4.10.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/squareup/okhttp3/okhttp/4.9.3/okhttp-4.9.3.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/com/squareup/okio/okio/2.8.0/okio-2.8.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.4.0/kotlin-stdlib-common-1.4.0.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [TeaksTweaks] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.4.10/kotlin-stdlib-1.4.10.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [MineGPT] Loading 2 libraries... please wait
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.pom
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.3.1/asm-7.3.1.pom
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.pom
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.pom
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.pom
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.pom
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.2/asm-9.2.pom
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[10:10:42] [BasicRepositoryConnector-repo.maven.apache.org-5-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.2/asm-9.2.jar
[10:10:42] [BasicRepositoryConnector-repo.maven.apache.org-5-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[10:10:42] [BasicRepositoryConnector-repo.maven.apache.org-5-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[10:10:42] [BasicRepositoryConnector-repo.maven.apache.org-5-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[10:10:42] [BasicRepositoryConnector-repo.maven.apache.org-5-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [MineGPT] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [MineGPT] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [MineGPT] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [MineGPT] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [MineGPT] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[10:10:42] [Server thread/INFO]: [SpigotLibraryLoader] [MineGPT] Loaded library /Users/sudapeople/minecraft/sunset-21/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[10:10:42] [Server thread/INFO]: [CS-API] Successfully assigned the NMS methods for v1_21_R3
[10:10:42] [Server thread/INFO]: [CS-API] -------------------------------[ Loadings Timers ]-------------------------------
[10:10:42] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'SECOND', with a duration of 1000
[10:10:42] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'MINUTE', with a duration of 60000
[10:10:42] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'HOURLY', with a duration of 3600000
[10:10:42] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'DAILY', with a duration of 86400000
[10:10:43] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[10:10:43] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.1
[10:10:43] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.1 is now loaded. Registering protocol transformers and injecting...
[10:10:43] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[10:10:43] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[10:10:44] [Server thread/INFO]: [ViaBackwards] Loading translations...
[10:10:44] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[10:10:44] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.158
[10:10:44] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[10:10:44] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-742
[10:10:45] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[10:10:45] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.3.1
[10:10:45] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.11+7055-8357a12
[10:10:46] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@170213df]
[10:10:46] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[10:10:46] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.1+ef4927680-SNAPSHOT
[10:10:48] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[10:10:48] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[10:10:48] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.3
[10:10:49] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3771)
[10:10:49] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.2-6a2683d7
[10:10:49] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[10:10:49] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[10:10:49] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0
[10:10:49] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.8
[10:10:49] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.10.2
[10:10:49] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.9-hotfix-1
[10:10:49] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[10:10:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[10:10:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[10:10:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[10:10:49] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.3.0-SNAPSHOT
[10:10:49] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v5.1.9
[10:10:49] [Server thread/INFO]: [Quests] Loading server plugin Quests v5.2.2-b533
[10:10:49] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.7.0
[10:10:49] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.65
[10:10:49] [Server thread/INFO]: [PCGF_PluginLib] Loading server plugin PCGF_PluginLib v1.0.39.8-SNAPSHOT
[10:10:49] [Thread-10/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[10:10:49] [Server thread/INFO]: [BanItem] Loading server plugin BanItem v3.6
[10:10:49] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.3.0-SNAPSHOT
[10:10:49] [Server thread/INFO]: [AutoReplant] Loading server plugin AutoReplant v2.4
[10:10:49] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.4
[10:10:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[10:10:49] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[10:10:49] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[10:10:49] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[10:10:49] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[10:10:49] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.3.7
[10:10:49] [Server thread/INFO]: [F-Command] Loading server plugin F-Command v2.6.1
[10:10:49] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0
[10:10:49] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.2-RC4
[10:10:49] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.5.26
[10:10:49] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.5.3
[10:10:49] [Server thread/INFO]: [WESV] Loading server plugin WorldEditSelectionVisualizer v2.1.7
[10:10:49] [Server thread/INFO]: [CreativeItemLogger] Loading server plugin CreativeItemLogger v1.0.0
[10:10:49] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.21.0
[10:10:49] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.13.0
[10:10:49] [Server thread/INFO]: [VeinMiner] Loading server plugin VeinMiner v2.2.6
[10:10:49] [Server thread/INFO]: [VeinMiner] Found WorldGuard. Registering custom region flag.
[10:10:49] [Server thread/INFO]: [CustomCrops] Loading server plugin CustomCrops v3.6.32.1
[10:10:50] [Server thread/INFO]: [done-connector] Loading server plugin done-connector v1.9.8
[10:10:50] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[10:10:50] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.13
[10:10:50] [Server thread/INFO]: [Kotlin] Loading server plugin Kotlin v2.1.20
[10:10:50] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[10:10:50] [Server thread/INFO]: [AdminActionLogger] Loading server plugin AdminActionLogger v1.2.0
[10:10:50] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0
[10:10:50] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.7.14.0
[10:10:50] [Server thread/INFO]: [QuestsBar] Loading server plugin QuestsBar v2.2
[10:10:50] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[10:10:50] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.16
[10:10:50] [Server thread/INFO]: [TeaksTweaks] Loading server plugin TeaksTweaks v2.0.7-mc1.21.4
[10:10:50] [Server thread/INFO]: [MineGPT] Loading server plugin MineGPT v1.11.10
[10:10:50] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.3.2
[10:10:50] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.5
[10:10:50] [Server thread/INFO]: [VengefulMobs] Loading server plugin VengefulMobs v1.1.1
[10:10:50] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.23.0
[10:10:50] [Server thread/INFO]: [CosmeticsCore] Loading server plugin CosmeticsCore v1.3.2-beta-1
[10:10:50] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.6-T20250103114036
[10:10:50] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.0
[10:10:50] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:10:50] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.158
[10:10:51] [Server thread/INFO]:         __    
[10:10:51] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.158
[10:10:51] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[10:10:51] [Server thread/INFO]: 
[10:10:51] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:10:51] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:10:52] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:10:52] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:10:53] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3156ms)
[10:10:53] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[10:10:53] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[10:10:53] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:10:53] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[10:10:53] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:10:53] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-742
[10:10:53] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.11+7055-8357a12
[10:10:53] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:10:54] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:10:54] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21_4.PaperweightAdapter as the Bukkit adapter
[10:10:56] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.8
[10:10:56] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[10:10:56] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.65
[10:10:56] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.13
[10:10:56] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[10:10:56] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[10:10:56] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[10:10:56] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[10:10:56] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[10:10:56] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[10:10:56] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[10:10:57] [Server thread/INFO]: Preparing level "lobby"
[10:10:58] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:10:58] [Server thread/INFO]: Preparing spawn area: 0%
[10:10:58] [Server thread/INFO]: Preparing spawn area: 0%
[10:10:59] [Server thread/INFO]: Time elapsed: 771 ms
[10:10:59] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:10:59] [Server thread/INFO]: Preparing spawn area: 0%
[10:10:59] [Server thread/INFO]: Time elapsed: 154 ms
[10:10:59] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:10:59] [Server thread/INFO]: Preparing spawn area: 0%
[10:10:59] [Server thread/INFO]: Time elapsed: 102 ms
[10:10:59] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.1
[10:10:59] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[10:10:59] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[10:10:59] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.3.1
[10:10:59] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[10:10:59] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:10:59] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.1+ef4927680-SNAPSHOT
[10:10:59] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[10:10:59] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[10:11:00] [packetevents-update-check-thread/INFO]: [packetevents] You are running a development build of PacketEvents. Your build: (2.7.1+ef4927680-SNAPSHOT) | Latest release: (2.7.0)
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby) TNT ignition is PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby) Lighters are PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby) Lava fire is PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby) Fire spread is UNRESTRICTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby'
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby_nether) TNT ignition is PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lighters are PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lava fire is PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby_nether) Fire spread is UNRESTRICTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_nether'
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby_the_end) TNT ignition is PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby_the_end) Lighters are PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby_the_end) Lava fire is PERMITTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] (lobby_the_end) Fire spread is UNRESTRICTED.
[10:11:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_the_end'
[10:11:00] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:11:00] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[10:11:00] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[10:11:00] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[10:11:01] [Server thread/INFO]: Preparing start region for dimension minecraft:world
[10:11:01] [Server thread/INFO]: Preparing spawn area: 0%
[10:11:01] [Server thread/INFO]: Preparing spawn area: 12%
[10:11:02] [Server thread/INFO]: Time elapsed: 932 ms
[10:11:02] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[10:11:02] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[10:11:02] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[10:11:02] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[10:11:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[10:11:02] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test
[10:11:02] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:11:02] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp_1vs1_stadium
[10:11:02] [Server thread/INFO]: Preparing spawn area: 0%
[10:11:02] [Server thread/INFO]: Time elapsed: 202 ms
[10:11:02] [Server thread/INFO]: [WorldGuard] (pvp_1vs1_stadium) TNT ignition is PERMITTED.
[10:11:02] [Server thread/INFO]: [WorldGuard] (pvp_1vs1_stadium) Lighters are PERMITTED.
[10:11:02] [Server thread/INFO]: [WorldGuard] (pvp_1vs1_stadium) Lava fire is PERMITTED.
[10:11:02] [Server thread/INFO]: [WorldGuard] (pvp_1vs1_stadium) Fire spread is UNRESTRICTED.
[10:11:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvp_1vs1_stadium'
[10:11:02] [Server thread/INFO]: Preparing start region for dimension minecraft:world_nether
[10:11:02] [Server thread/INFO]: Preparing spawn area: 0%
[10:11:03] [Server thread/INFO]: Time elapsed: 179 ms
[10:11:03] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[10:11:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[10:11:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[10:11:03] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[10:11:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[10:11:03] [Server thread/INFO]: Preparing start region for dimension minecraft:fish
[10:11:03] [Server thread/INFO]: Preparing spawn area: 0%
[10:11:03] [Server thread/INFO]: Preparing spawn area: 4%
[10:11:03] [Server thread/INFO]: Time elapsed: 505 ms
[10:11:03] [Server thread/INFO]: [WorldGuard] (fish) TNT ignition is PERMITTED.
[10:11:03] [Server thread/INFO]: [WorldGuard] (fish) Lighters are PERMITTED.
[10:11:03] [Server thread/INFO]: [WorldGuard] (fish) Lava fire is PERMITTED.
[10:11:03] [Server thread/INFO]: [WorldGuard] (fish) Fire spread is UNRESTRICTED.
[10:11:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'fish'
[10:11:03] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp_1vs1_lobby
[10:11:03] [Server thread/INFO]: Preparing spawn area: 0%
[10:11:04] [Server thread/INFO]: Time elapsed: 92 ms
[10:11:04] [Server thread/INFO]: [WorldGuard] (pvp_1vs1_lobby) TNT ignition is PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (pvp_1vs1_lobby) Lighters are PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (pvp_1vs1_lobby) Lava fire is PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (pvp_1vs1_lobby) Fire spread is UNRESTRICTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvp_1vs1_lobby'
[10:11:04] [Server thread/INFO]: Preparing start region for dimension minecraft:farm
[10:11:04] [Server thread/INFO]: Preparing spawn area: 0%
[10:11:04] [Server thread/INFO]: Time elapsed: 226 ms
[10:11:04] [Server thread/INFO]: [WorldGuard] (farm) TNT ignition is PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (farm) Lighters are PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (farm) Lava fire is PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (farm) Fire spread is UNRESTRICTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'farm'
[10:11:04] [Server thread/INFO]: Preparing start region for dimension minecraft:parkour
[10:11:04] [Server thread/INFO]: Preparing spawn area: 0%
[10:11:04] [Server thread/INFO]: Time elapsed: 84 ms
[10:11:04] [Server thread/INFO]: [WorldGuard] (parkour) TNT ignition is PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (parkour) Lighters are PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (parkour) Lava fire is PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (parkour) Fire spread is UNRESTRICTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'parkour'
[10:11:04] [Server thread/INFO]: Preparing start region for dimension minecraft:maze
[10:11:04] [Server thread/INFO]: Preparing spawn area: 0%
[10:11:04] [Server thread/INFO]: Time elapsed: 82 ms
[10:11:04] [Server thread/INFO]: [WorldGuard] (maze) TNT ignition is PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (maze) Lighters are PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (maze) Lava fire is PERMITTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] (maze) Fire spread is UNRESTRICTED.
[10:11:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'maze'
[10:11:04] [Server thread/INFO]: [Multiverse-Core] 9 - World(s) loaded.
[10:11:04] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[10:11:04] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.3
[10:11:04] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-11.0.3-Premium.jar
[10:11:04] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R3) (MC: 1.21.4)
[10:11:04] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1560
[10:11:04] [Server thread/INFO]: [LibsDisguises] Build Date: 16/03/2025 06:05
[10:11:04] [Server thread/INFO]: [LibsDisguises] Registered to: 474583 (31)
[10:11:04] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[10:11:04] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'SCALED', LD will scale down (when possible) oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_woodleague_master
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_guild_attendant
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_barkeep
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_quest_giver
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_enchanter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_special_blacksmith
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_blacksmith
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_repairman
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_story_dungeons_quest_npc
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_world_binder_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_bone_monastery_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_craftenmines_laboratory_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_climb_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_frost_queen_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_unbinder
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_combat_instructor
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_back_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_deep_mines_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_mines_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_nether_wastes_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_bridge_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_city_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_cave_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_palace_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_quarry_teleporter
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_guide_1
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_expedition_leader
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_forager
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_1
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_hidden_dwarf
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_scrapper
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_3
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_1
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_inhabitant_alt
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_2
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_5
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_well_npc
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_6
[10:11:06] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_conjurer
[10:11:07] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_elf_summoner
[10:11:07] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_cultist
[10:11:07] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_fisherman
[10:11:07] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_lone_miner
[10:11:07] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_fletcher
[10:11:07] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_first_mate
[10:11:07] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_leader
[10:11:07] [Server thread/INFO]: [LibsDisguises] Loaded 47 custom disguises
[10:11:07] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[10:11:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[10:11:07] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[10:11:07] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[10:11:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3771)
[10:11:07] [Server thread/INFO]: [Citizens] Detected system language [[ko]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[10:11:07] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[10:11:07] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
[10:11:07] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
[10:11:07] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3771) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
    at Citizens-2.0.38-b3771.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2744) ~[Citizens-2.0.38-b3771.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at Citizens-2.0.38-b3771.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens-2.0.38-b3771.jar:?]
    at Citizens-2.0.38-b3771.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens-2.0.38-b3771.jar:?]
    at Citizens-2.0.38-b3771.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.38-b3771.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
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.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[10:11:07] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3771)
[10:11:07] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.2-6a2683d7
[10:11:07] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.4)...
[10:11:07] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[10:11:08] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[10:11:08] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[10:11:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[10:11:08] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[10:11:08] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[10:11:08] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[10:11:08] [Server thread/INFO]: [MythicMobs] Base directory /Users/sudapeople/minecraft/sunset-21/plugins/MythicMobs/data
[10:11:08] [Server thread/INFO]: [MythicMobs] Module directory /Users/sudapeople/minecraft/sunset-21/plugins/MythicMobs/data/worlds
[10:11:10] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:11:10] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:11:10] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:11:10] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:11:13] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:11:13] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:11:13] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:11:13] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 126 mobs.
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 281 skills.
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 77 mythic items.
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[10:11:13] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[10:11:13] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[10:11:13] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.8.2 ( build 6a2683d7 ) has been successfully loaded!
[10:11:14] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[10:11:14] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[10:11:14] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0
[10:11:15] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:11:15] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[10:11:15] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[10:11:15] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[10:11:15] [Server thread/INFO]: [Essentials] Using locale ko_KR
[10:11:15] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:11:16] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:11:16] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[10:11:16] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:11:16] [Server thread/INFO]: [Skript] Enabling Skript v2.10.2
[10:11:16] [Server thread/INFO]: [Skript] 업데이터가 비활성화되어 있어 Skript의 최신 버전을 확인하지 않았습니다.
[10:11:17] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[10:11:17] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.9-hotfix-1
[10:11:17] [Server thread/WARN]: [ItemsAdder] LoneLibs is enabled. This plugin is not needed anymore and it's recommended to remove it (if you are not using it for other plugins).
[10:11:17] [Server thread/WARN]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
[10:11:17] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.9-hotfix-1
  ___  ___        __        __   __   ___  __      ProtocolLib 5.4.0-SNAPSHOT-742
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Paper 1.21.4-222-9b1798d (MC: 1.21.4)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-03-18_14.19.23
                                                   Java Version: 21.0.1
                                                   OS: Mac OS X 15.4                                               
[10:11:17] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.4
[10:11:17] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[10:11:17] [Server thread/INFO]: [ItemsAdder] ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[10:11:17] [Server thread/INFO]: [ItemsAdder] More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[10:11:17] [Server thread/INFO]: [ItemsAdder] Registered Skript API
[10:11:17] [Server thread/ERROR]: [ItemsAdder] Failed to hook into Citizens. Please update make sure you're running a compatible version.
[10:11:17] [Server thread/WARN]: java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/Trait
[10:11:17] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass1(Native Method)
[10:11:17] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027)
[10:11:17] [Server thread/WARN]:     at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150)
[10:11:17] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243)
[10:11:17] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593)
[10:11:17] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
[10:11:17] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[10:11:17] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[10:11:17] [Server thread/WARN]:     at ItemsAdder_4.0.9-hotfix-1.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.register(SourceFile:40)
[10:11:17] [Server thread/WARN]:     at ItemsAdder_4.0.9-hotfix-1.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:357)
[10:11:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[10:11:17] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[10:11:17] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[10:11:17] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[10:11:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[10:11:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[10:11:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[10:11:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[10:11:17] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[10:11:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[10:11:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[10:11:17] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[10:11:17] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.Trait
[10:11:17] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[10:11:17] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[10:11:17] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[10:11:17] [Server thread/WARN]:     ... 22 more
[10:11:17] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 8163
[10:11:17] [Server thread/INFO]: [ItemsAdder] [SelfHost] Rate limiter: max 3 requests / 2s.
[10:11:17] [Server thread/INFO]: [ItemsAdder] [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[10:11:18] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Loaded 5442 aliases in 1133ms
[10:11:18] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[10:11:18] [Server thread/INFO]: [ItemsAdder] [Pack] Done extracting internal contents from .jar
[10:11:20] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[10:11:20] [Server thread/INFO]: [NBTAPI] Checking bindings...
[10:11:20] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[10:11:20] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[10:11:20] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[10:11:21] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[10:11:21] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.3.0-SNAPSHOT
[10:11:21] [Server thread/INFO]: [Multiverse-Portals] 11 - Portals(s) loaded
[10:11:21] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[10:11:21] [Server thread/INFO]: [Multiverse-Portals 4.3.0-SNAPSHOT]  Enabled - By Rigby and fernferret
[10:11:21] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.9
[10:11:21] [Server thread/INFO]: [Quests] Enabling Quests v5.2.2-b533
[10:11:21] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:11:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[10:11:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[10:11:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Quests' to create a bStats instance!
[10:11:31] [Server thread/WARN]: [Quests] There are new language phrases in /lang/ko-KR/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:11:31] [Server thread/WARN]: [Quests] There are new language phrases in /lang/ko-KR/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:11:31] [Server thread/WARN]: [Quests] There are new language phrases in /lang/ko-KR/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:11:31] [Server thread/WARN]: [Quests] There are new language phrases in /lang/ko-KR/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:11:31] [Server thread/WARN]: [Quests] There are new language phrases in /lang/ko-KR/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:11:31] [Server thread/INFO]: [Quests] Loaded language ko-KR. Translations via Crowdin
[10:11:31] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:11:31] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[10:11:31] [Server thread/INFO]: [SkBee] Enabling SkBee v3.7.0
[10:11:32] [Server thread/INFO]: [SkBee] Loading NBTApi...
[10:11:32] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[10:11:32] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[10:11:32] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[10:11:32] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Minecraft Tag elements disabled (now in Skript)
[10:11:32] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[10:11:32] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[10:11:32] [Server thread/INFO]: [SkBee] Loaded (408) elements:
[10:11:32] [Server thread/INFO]: [SkBee]  - 51 events
[10:11:32] [Server thread/INFO]: [SkBee]  - 70 effects
[10:11:32] [Server thread/INFO]: [SkBee]  - 248 expressions
[10:11:32] [Server thread/INFO]: [SkBee]  - 24 conditions
[10:11:32] [Server thread/INFO]: [SkBee]  - 15 sections
[10:11:32] [Server thread/INFO]: [SkBee] Update checker disabled!
[10:11:32] [Server thread/INFO]: [SkBee] Successfully enabled v3.7.0 in 0.69 seconds
[10:11:32] [Server thread/INFO]: [PCGF_PluginLib] Enabling PCGF_PluginLib v1.0.39.8-SNAPSHOT
[10:11:32] [Server thread/INFO]: [PCGF_PluginLib] Config file successfully loaded.
[10:11:32] [Server thread/INFO]: [PCGF_PluginLib] Item name language file successfully loaded. Language: english  Author: GeorgH93
[10:11:32] [Server thread/INFO]: [PCGF_PluginLib] Loading item translations ...
[10:11:32] [Server thread/INFO]: [PCGF_PluginLib] Finished loading item translations for 826 items.
[10:11:32] [Server thread/INFO]: [PCGF_PluginLib] Language file successfully loaded. Language: english  Author: GeorgH93
[10:11:32] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.39.8-SNAPSHOT has been enabled!  :) 
[10:11:32] [Server thread/INFO]: [BanItem] Enabling BanItem v3.6
[10:11:32] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.3.0-SNAPSHOT
[10:11:32] [Server thread/INFO]: [Multiverse-NetherPortals 4.3.0-SNAPSHOT]  Enabled - By Rigby and fernferret
[10:11:32] [Server thread/INFO]: [AutoReplant] Enabling AutoReplant v2.4
[10:11:32] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.4
[10:11:32] [Server thread/INFO]: [MCPets] : Language file reloaded.
[10:11:32] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[10:11:32] [Server thread/INFO]: Loading pets... 
[10:11:32] [Server thread/INFO]:   - Wolfhawk_Dire loaded succesfully.
[10:11:32] [Server thread/INFO]:   - Kitsune_Normal loaded succesfully.
[10:11:32] [Server thread/INFO]:   - Hippogryph_Common loaded succesfully.
[10:11:32] [Server thread/INFO]:   - Lizard_Aqua loaded succesfully.
[10:11:32] [Server thread/INFO]:   - Sabertooth_Savanna loaded succesfully.
[10:11:32] [Server thread/INFO]:   - F_Pet_Shadow_Dragon loaded succesfully.
[10:11:32] [Server thread/INFO]:   - E_Pet_Hellhound loaded succesfully.
[10:11:32] [Server thread/INFO]:   - Stag_Rune loaded succesfully.
[10:11:32] [Server thread/INFO]:   - D_Pet_Shuriken_Ninja loaded succesfully.
[10:11:32] [Server thread/INFO]:   - B_Pet_Thunderbird loaded succesfully.
[10:11:32] [Server thread/INFO]:   - Manticore_Venom loaded succesfully.
[10:11:32] [Server thread/INFO]:   - F_Pet_Ice_Dragon loaded succesfully.
[10:11:32] [Server thread/INFO]:   - F_Pet_Aether_Dragon loaded succesfully.
[10:11:32] [Server thread/INFO]:   - Tusker_Forest loaded succesfully.
[10:11:32] [Server thread/INFO]:   - F_Pet_Undead_Dragon loaded succesfully.
[10:11:32] [Server thread/INFO]:   - F_Pet_Fire_Dragon loaded succesfully.
[10:11:32] [Server thread/INFO]:   - Golem_Arcane loaded succesfully.
[10:11:33] [Server thread/INFO]:   - C_Pet_Spirit_Fox loaded succesfully.
[10:11:33] [Server thread/INFO]:   - B_Pet_Phoenix loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Basilisk_Wild loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Frog_Green loaded succesfully.
[10:11:33] [Server thread/INFO]:   - A_Pet_Demon loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Horse_Pegasus loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Horse_Spartan loaded succesfully.
[10:11:33] [Server thread/INFO]:   - D_Pet_Sai_Ninja loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Phantom_Ghost loaded succesfully.
[10:11:33] [Server thread/INFO]:   - F_Pet_Thunder_Dragon loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Sky_Serpent_Jade loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Panda loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Otter loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Nocsy_Cat-Fallen loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Nocsy_Cat-Munchkin loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Nocsy_Cat-European loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Nocsy_Cat-MaineCoon loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Nocsy_Cat-Bombay loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Nocsy_Cat-ScottishFold loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Nocsy_Cat-Siamese loaded succesfully.
[10:11:33] [Server thread/INFO]:   - F_Pet_Wind_Dragon loaded succesfully.
[10:11:33] [Server thread/INFO]:   - C_Pet_Kitsune loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Phoenix_Flame loaded succesfully.
[10:11:33] [Server thread/INFO]:   - E_Pet_Lunar_Wolf loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Dragon_Sculk loaded succesfully.
[10:11:33] [Server thread/INFO]:   - A_Pet_Angel loaded succesfully.
[10:11:33] [Server thread/INFO]:   - C_Pet_Dark_Kitsune loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Wyvern_Green loaded succesfully.
[10:11:33] [Server thread/INFO]:   - D_Pet_Samurai loaded succesfully.
[10:11:33] [Server thread/INFO]:   - B_Pet_Eagle loaded succesfully.
[10:11:33] [Server thread/INFO]:   - E_Pet_Frost_Wolf loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Raptor_Red loaded succesfully.
[10:11:33] [Server thread/INFO]:   - F_Pet_Nature_Dragon loaded succesfully.
[10:11:33] [Server thread/INFO]:   - Capybara_Mount loaded succesfully.
[10:11:33] [Server thread/INFO]: [MCPets] : 51 pets registered successfully !
[10:11:33] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[10:11:33] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[10:11:33] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[10:11:33] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[10:11:33] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[10:11:33] [Server thread/INFO]:       Plugin made by Nocsy
[10:11:33] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[10:11:33] [Server thread/INFO]: -=- Launching Flags -=-
[10:11:33] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[10:11:33] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[10:11:33] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[10:11:33] [Server thread/INFO]: 3 flags launched.
[10:11:33] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.3.7
[10:11:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animatedscoreboard [0.0.1]
[10:11:33] [Server thread/INFO]: [F-Command] Enabling F-Command v2.6.1
[10:11:34] [Server thread/INFO]: F-Command > ======================================================
[10:11:34] [Server thread/INFO]: F-Command > | F-Command 2.6.1 by Hutch79
[10:11:34] [Server thread/INFO]: F-Command > | Has been Enabled
[10:11:34] [Server thread/INFO]: F-Command > ------------------------------------------------------
[10:11:34] [Server thread/INFO]: F-Command > | If you find any Bugs, please report them on GitHub
[10:11:34] [Server thread/INFO]: F-Command > | https://github.com/Hutch79/F-Command
[10:11:34] [Server thread/INFO]: F-Command > | Discord: https://dc.hutch79.ch
[10:11:34] [Server thread/INFO]: F-Command > ======================================================
[10:11:34] [Server thread/INFO]: F-Command > | PlaceholderAPI has been found, hooking into it now.
[10:11:34] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0
[10:11:34] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[10:11:34] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.2-RC4
[10:11:34] [Server thread/INFO]: [CoreProtect] CoreProtect Edge 이제 활성화되었습니다! 
[10:11:34] [Server thread/INFO]: [CoreProtect] 사용 SQLite 데이터 저장용.
[10:11:34] [Server thread/INFO]: --------------------
[10:11:34] [Server thread/INFO]: [CoreProtect] 즐기다 CoreProtect? 우리의 Discord!
[10:11:34] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[10:11:34] [Server thread/INFO]: --------------------
[10:11:34] [Server thread/INFO]: [voicechat] Enabling voicechat v2.5.26
[10:11:34] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.21.4-R0.1
[10:11:34] [Server thread/INFO]: [voicechat] Compatibility version 18
[10:11:34] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[10:11:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voicechat [2.5.26]
[10:11:34] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
[10:11:34] [Server thread/INFO]: [voicechat] Successfully added ViaVersion mappings
[10:11:34] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.5.3
[10:11:34] [Server thread/INFO]: [sleep-most] Hooked to PlaceholderAPI
[10:11:34] [Server thread/INFO]: [sleep-most] Hooked to Essentials
[10:11:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sleepmost [5.5.3]
[10:11:34] [Server thread/INFO]: [WESV] Enabling WorldEditSelectionVisualizer v2.1.7
[10:11:34] [Server thread/INFO]: [WESV] Using WorldEdit 7 api
[10:11:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: wesv [2.1.7]
[10:11:34] [Server thread/INFO]: [WESV] PlaceholderAPI extension successfully registered.
[10:11:34] [Server thread/INFO]: [CreativeItemLogger] Enabling CreativeItemLogger v1.0.0
[10:11:34] [Server thread/INFO]: [CreativeItemLogger] CreativeItemLogger가 활성화되었습니다.
[10:11:34] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.21.0
[10:11:34] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[10:11:34] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[10:11:34] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.13.0
[10:11:34] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into OpenInv!
[10:11:38] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[10:11:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[10:11:39] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[10:11:39] [Server thread/INFO]: [VeinMiner] Enabling VeinMiner v2.2.6
[10:11:39] [Server thread/INFO]: [VeinMiner] Using SQLITE for persistent storage.
[10:11:39] [Server thread/INFO]: [VeinMiner] Loading configuration options to local memory
[10:11:39] [Server thread/INFO]: [VeinMiner] Added 13 aliases.
[10:11:39] [Server thread/INFO]: [VeinMiner] Registered category with id "Axe" holding 6 unique items and 236 unique blocks.
[10:11:39] [Server thread/INFO]: [VeinMiner] Registered category with id "Hoe" holding 6 unique items and 34 unique blocks.
[10:11:39] [Server thread/INFO]: [VeinMiner] Registered category with id "Pickaxe" holding 6 unique items and 312 unique blocks.
[10:11:39] [Server thread/INFO]: [VeinMiner] Registered category with id "Shears" holding 1 unique items and 32 unique blocks.
[10:11:39] [Server thread/INFO]: [VeinMiner] Registered category with id "Shovel" holding 6 unique items and 29 unique blocks.
[10:11:39] [Server thread/INFO]: [VeinMiner] Registered category with id "Hand" holding 0 unique items and 18 unique blocks.
[10:11:39] [Server thread/INFO]: [VeinMiner] Registered category with id "Sword" holding 6 unique items and 5 unique blocks.
[10:11:39] [Server thread/INFO]: [VeinMiner] Performing an update check!
[10:11:39] [Server thread/INFO]: [VeinMiner] Registering commands
[10:11:39] [Server thread/INFO]: [VeinMiner] Registering events
[10:11:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: veinminer [2.2.6]
[10:11:39] [Server thread/INFO]: [VeinMiner] Vault found. Attempting to enable economy support...
[10:11:39] [Server thread/INFO]: [VeinMiner] Enabling Plugin Metrics
[10:11:39] [Server thread/INFO]: [VeinMiner] Thanks for enabling Metrics! The anonymous stats are appreciated
[10:11:39] [Server thread/INFO]: [CustomCrops] Enabling CustomCrops v3.6.32.1
[10:11:40] [ForkJoinPool.commonPool-worker-4/INFO]: [VeinMiner] You are on the latest version of VeinMiner!
[10:11:40] [Server thread/INFO]: [CustomCrops] ItemsAdder hooked!
[10:11:40] [Server thread/INFO]: [CustomCrops] ItemsAdder hooked!
[10:11:40] [Server thread/INFO]: [CustomCrops] MythicMobs hooked!
[10:11:40] [Server thread/INFO]: [CustomCrops] Vault hooked!
[10:11:40] [Server thread/INFO]: [CustomCrops] PlaceholderAPI hooked!
[10:11:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrops [3.6]
[10:11:40] [Server thread/INFO]: [CustomCrops] WorldGuard hooked!
[10:11:42] [Server thread/INFO]: [done-connector] Enabling done-connector v1.9.8
[10:11:42] [Server thread/WARN]: [done-connector] Could not save config.yml to plugins/done-connector/config.yml because config.yml already exists.
[10:11:42] [Server thread/INFO]: [SUDA] 치지직 아이디 로드 중...
[10:11:42] [Server thread/INFO]: [SUDA] 치지직 아이디 1개 로드 완료.
[10:11:42] [Server thread/INFO]: [SUDA] 숲 아이디 1개 로드 완료.
[10:11:42] [Server thread/INFO]: [SUDA] 후원 보상 목록 3개 로드 완료.
[10:11:42] [Server thread/INFO]: [SUDA] 자동 연결이 비활성화되어 있습니다. 플레이어 접속 시 개별 채널만 연결됩니다.
[10:11:42] [Server thread/INFO]: [SUDA] 플러그인 활성화 완료.
[10:11:42] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[10:11:42] [Server thread/INFO]: [Kotlin] Enabling Kotlin v2.1.20
[10:11:42] [Server thread/WARN]: Plugin AdminActionLogger v1.2.0 tried to register permission 'creativeitemlogger.admin' but it's already registered
[10:11:42] [Server thread/INFO]: [AdminActionLogger] Enabling AdminActionLogger v1.2.0
[10:11:42] [Server thread/INFO]: [AdminActionLogger] 0명의 플레이어 매핑 데이터를 로드했습니다.
[10:11:42] [Server thread/INFO]: [AdminActionLogger] AdminActionLogger가 활성화되었습니다. 모니터링 대상: ServerAdmin1, ModeratorUser, BuildTeamLead
[10:11:42] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0
[10:11:42] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[10:11:42] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.7.14.0
[10:11:42] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
[10:11:42] [customcrops-worker-1/INFO]: [CustomCrops] You are using the latest version.
[10:11:42] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[10:11:43] [Server thread/INFO]: [QuestsBar] Enabling QuestsBar v2.2
[10:11:43] [pool-126-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[10:11:43] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[10:11:43] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[10:11:43] [Server thread/INFO]: [ClearLag] Loading modules...
[10:11:43] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[10:11:43] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[10:11:43] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[10:11:43] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.16
[10:11:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[10:11:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[10:11:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[10:11:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[10:11:43] [Server thread/INFO]: [TeaksTweaks] Enabling TeaksTweaks v2.0.7-mc1.21.4
[10:11:44] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO] Updated Plugin Config
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO] Loaded language file: en.json
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO] startup.update.disabled
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO] Registered Command: /teakstweaks
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO] Registered Command: /mechanics
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO] Registered Command: /packlist
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO]  
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO] Teak's Tweaks v2.0.7-mc1.21.4 has started!
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO]  
[10:11:44] [Server thread/INFO]: [TeaksTweaks] [INFO] Registered Pack: Fast Leaf Decay
[10:11:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: teakstweaks [2.0.7-mc1.21.4]
[10:11:44] [Server thread/INFO]: [MineGPT] Enabling MineGPT v1.11.10
[10:11:44] [Server thread/INFO]: [CS-API] --------------------------[ Loading File Provisioners ]--------------------------
[10:11:44] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.json' extension
[10:11:44] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.txt' extension
[10:11:44] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.yml' extension
[10:11:44] [Server thread/INFO]: [CS-API] Loaded and registered file '../.paper-remapped/CS-API/settings.yml'
[10:11:44] [Server thread/INFO]: [CS-API] -------------------------[ Loading settings.yml values ]-------------------------
[10:11:44] [Server thread/INFO]: [CS-API] Registered config key check_for_support with the value true
[10:11:44] [Server thread/INFO]: [CS-API] Registered config key check_for_updates with the value true
[10:11:44] [Server thread/INFO]: [CS-API] Registered config key creator_timeout with the value 60000
[10:11:44] [Server thread/INFO]: [CS-API] Registered config key locale with the value en_us
[10:11:44] [Server thread/INFO]: [CS-API] Registered config key server_id with the value server
[10:11:44] [Server thread/INFO]: [CS-API] Registered config key use_bungeecord with the value true
[10:11:44] [Server thread/INFO]: [CS-API] Registered config key debug.enabled with the value true
[10:11:44] [Server thread/INFO]: [CS-API] Registered config key debug.plugins with 0 entries
[10:11:44] [Server thread/INFO]: [CS-API] Loaded and registered file '../.paper-remapped/CS-API/placeholders.yml'
[10:11:44] [Server thread/INFO]: [CS-API] -----------------------------[ Loading Placeholders ]-----------------------------
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'assert' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'assignment' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'calculate' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'command' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'entity' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'locale' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'menu_item' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'offline_player' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'offline_player_bed' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player_menu' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player_bed' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_command' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_license' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_permission' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_connection' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'random' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'server' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'static' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'time_type' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'wildcard' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'world' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'cs_api' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_connection' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_support_confirmation' prefix
[10:11:44] [Server thread/INFO]: [CS-API] Successfully loaded 1 static placeholders
[10:11:44] [Server thread/INFO]: [CS-API] -----------------------[ Loading Placeholder Assignments ]-----------------------
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'menu'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'online_player'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'player'
[10:11:44] [Server thread/INFO]: [CS-API] ------------------------[ Loading Placeholder Formatters ]------------------------
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'array'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'block-location'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'boolean'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'collection'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'color'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'database-timestamp'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'date'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'double'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'empty-line'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'float'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'integer'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'location'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'long'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'no-value'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'milliseconds'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'seconds'
[10:11:44] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'timestamp'
[10:11:44] [Server thread/INFO]: [MineGPT] Initializing MineGPT version 1.11.10, identifier 474583, resource 108949
[10:11:44] [Server thread/INFO]: [CS-API] ----------------------------[ Loading License Files ]----------------------------
[10:11:44] [Server thread/INFO]: [CS-API] No licenses configs found to load in the /Users/sudapeople/minecraft/sunset-21/plugins/.paper-remapped/CS-API/licenses directory
[10:11:44] [Server thread/INFO]: [CS-API] -----------------------------[ Loading Locale Files ]-----------------------------
[10:11:44] [Server thread/INFO]: [CS-API] Loaded and registered file '../.paper-remapped/CS-API/locale/en_us.txt'
[10:11:44] [Server thread/INFO]: [CS-API] Loaded locale file with the 'en_us' identifier
[10:11:44] [Server thread/INFO]: [CS-API] Loaded and registered file '../.paper-remapped/CS-API/hooks.yml'
[10:11:45] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[10:11:45] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[10:11:45] [Server thread/WARN]: [CS-API] Unable to hook into CMI as the following required classes could not be found [com.Zrips.CMI.CMI]
[10:11:45] [Server thread/WARN]: [CS-API] Unable to hook into CMILib as the following required classes could not be found [net.Zrips.CMILib.CMILib]
[10:11:45] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[10:11:45] [Server thread/WARN]: [CS-API] DiscordSRV version mismatch, referenced version is '1.28.0' however version '1.29.0' was found. You will not receive support regarding this hook while using a mismatched version
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'DiscordSRV'
[10:11:45] [Server thread/WARN]: [CS-API] Essentials version mismatch, referenced version is '2.21.0-dev+151-f2af952' however version '2.21.0' was found. You will not receive support regarding this hook while using a mismatched version
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Essentials'
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Experience'
[10:11:45] [Server thread/WARN]: [CS-API] Unable to hook into GangsPlus as the following required classes could not be found [net.brcdev.gangs.GangsPlugin]
[10:11:45] [Server thread/INFO]: [CS-API] Registered the NashornScriptEngineFactory with the name 'nashorn'
[10:11:45] [Server thread/INFO]: [CS-API] Registered the NashornScriptEngineFactory with the name 'js'
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'JavaScript'
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Level'
[10:11:45] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 콘솔포워딩이 채널에 설정되었습니다 TC:테스트서버-콘솔(1353944978405199892)
[10:11:45] [Server thread/WARN]: [CS-API] Unable to hook into MVdWPlaceholderAPI as the following required classes could not be found [be.maximvdw.placeholderapi.PlaceholderReplacer, be.maximvdw.placeholderapi.PlaceholderOptions, be.maximvdw.placeholderapi.PlaceholderAPI]
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'MySQL'
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'PlaceholderAPI'
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'SQLite'
[10:11:45] [Server thread/WARN]: [CS-API] Unable to hook into TokenEnchant as the following required classes could not be found [com.vk2gpz.tokenenchant.api.TokenEnchantAPI]
[10:11:45] [Server thread/WARN]: [CS-API] Unable to hook into TokenManager as the following required classes could not be found [me.realized.tokenmanager.TokenManagerPlugin]
[10:11:45] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Vault'
[10:11:45] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[10:11:45] [Server thread/WARN]: [CS-API] Unable to hook into ProMenus as the following required classes could not be found [com.culleystudios.promenus.ProMenus]
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../.paper-remapped/CS-API/actions.yml'
[10:11:45] [Server thread/INFO]: [CS-API] -------------------------------[ Loading Actions ]-------------------------------
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'abort' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'action-alias' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'actionbar-broadcast' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'actionbar' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-false' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-equals' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-greater' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-less' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-string-equals' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-true' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'broadcast' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'bungee' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'chance' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'close-inventory' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'console-command' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'debug' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'delay' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'discord-broadcast' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'discord-message' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-balance' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-deposit' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-withdraw' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'give-item' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'javascript' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'json-broadcast' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'json-message' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-actionbar' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-json-message' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-message' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-title' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'message' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'op-command' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'open-menu' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'param' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'permission' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'player-command' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-double' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-entity-interact' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-integer' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-long' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-offline-player' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-player' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-string' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'sound' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'stop' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'teleport' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'title-broadcast' action
[10:11:45] [Server thread/INFO]: [CS-API] Successfully registered the 'title' action
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../.paper-remapped/CS-API/actions.yml'
[10:11:45] [Server thread/INFO]: [CS-API] ----------------------------[ Loading Action Aliases ]----------------------------
[10:11:45] [Server thread/INFO]: [CS-API] Registered action alias with the id 'emerald'
[10:11:45] [Server thread/INFO]: [CS-API] Registered action alias with the id 'diamond'
[10:11:45] [Server thread/INFO]: [CS-API] --------------------------------[ Loading Files ]--------------------------------
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/MineGPT/statements.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/MineGPT/locale/en_us.txt'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../sunset-21/plugins/MineGPT/menu.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/MineGPT/databases.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../sunset-21/plugins/MineGPT/config.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/info/particle.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/info/entity.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../handlers/info/potion-type.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/info/block.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/info/statistic.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../handlers/info/enchantment.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/info/item.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/info/biome.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/info/sound.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/info/material.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../handlers/info/potion-effect.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/prompt/siri.yml'
[10:11:45] [Server thread/INFO]: [CS-API] Loaded and registered file '../MineGPT/handlers/prompt/prompt.yml'
[10:11:45] [Server thread/INFO]: [MineGPT] Successfully loaded the contents of 18 files!
[10:11:45] [Server thread/INFO]: [MineGPT] -----------------------------[ Loading Locale Files ]-----------------------------
[10:11:45] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Plugin Essentials 의 연동을 활성화합니다.
[10:11:45] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Plugin LuckPerms 의 연동을 활성화합니다.
[10:11:45] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Plugin PlaceholderAPI 의 연동을 활성화합니다.
[10:11:46] [Server thread/INFO]: [MineGPT] Loaded locale file with the 'en_us' identifier
[10:11:46] [Server thread/INFO]: [MineGPT] ------------------------------[ Loading Statements ]------------------------------
[10:11:46] [Server thread/INFO]: [MineGPT] Registered [SELECT, DELETE, INSERT, CREATE] statements for 'mgplayer'
[10:11:46] [Server thread/INFO]: [MineGPT] Registered [INSERT] statements for 'mgplayer-reset-daily-total'
[10:11:46] [Server thread/INFO]: [MineGPT] Registered [INSERT] statements for 'mgplayer-set-daily-limit'
[10:11:46] [Server thread/INFO]: [MineGPT] ------------------------------[ Loading Databases ]------------------------------
[10:11:46] [Server thread/INFO]: [MineGPT] Registered database connection 'mysql'
[10:11:46] [Server thread/INFO]: [MineGPT] Registered database connection 'sqlite'
[10:11:46] [Server thread/INFO]: [CS-API] Successfully registered the 'minegpt-prompt' action
[10:11:46] [Server thread/INFO]: [CS-API] Successfully registered the 'minegpt-chat' action
[10:11:46] [Server thread/INFO]: [MineGPT] -------------------------------[ Loading Commands ]-------------------------------
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-chat'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-info'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-player-help'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-player-delete'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-player-reset-daily-total'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-player-set-daily-limit'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-prompt'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-request-handler-list'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-stats'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-stats-others'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-translate'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-help'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-reload'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-discord'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-plugin-review-licensed'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-plugin-version-licensed'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-support-help-licensed'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-support-register-licensed'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-support-confirm-licensed'
[10:11:46] [Server thread/INFO]: [MineGPT] Successfully registered command 'minegpt-plugin-license'
[10:11:46] [Server thread/INFO]: [MineGPT] --------------------------[ Loading config.yml values ]--------------------------
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key interaction_menu_id with the value minegpt-interaction-menu
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key player_cache_time with the value 600000
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key player_load_delay with the value 1000
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key response_line_character_limit with the value 50
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.min_length with the value 10
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.timeout with the value 60000
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.openai_token with value **********
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.accept_cached with the value true
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.accept_incomplete with the value false
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.bypass_restrictions with the value false
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.allowance_ids with value **********
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.player_limit with the value 10
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.player_daily_limits with 4 entries
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.token_limit with the value 750
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.chat_token_limit with the value 400
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.chat_history_limit with the value 5
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.default_handler with the value prompt
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key request.display_actions with 3 entries
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key chat_translate.enabled with the value true
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key chat_translate.min_length with the value 10
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key chat_translate.lowest_priority with the value false
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key chat_translate.use_cmi with the value false
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key chat_translate.ignore_regex with 1 entries
[10:11:46] [Server thread/INFO]: [MineGPT] Registered config key use_list_menus with the value true
[10:11:46] [Server thread/INFO]: [MineGPT] ----------------------------[ Loading Info Handlers ]----------------------------
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'particle' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'sound' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'entity' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'item' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'biome' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'potion-type' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'potion-effect' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'block' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'statistic' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'material' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] Registered disabled info handler 'enchantment' with 0 values
[10:11:46] [Server thread/INFO]: [MineGPT] ---------------------------[ Loading Prompt Handlers ]---------------------------
[10:11:46] [Server thread/INFO]: [MineGPT] Registered enabled prompt handler siri with context 'You are a helpful assistant on a Minecraft Java server named Siri who responds to player messages'
[10:11:46] [Server thread/INFO]: [MineGPT] Registered enabled prompt handler prompt with context 'You are a helpful assistant on a Minecraft Java server'
[10:11:46] [Server thread/INFO]: [debug] [MineGPT] Clearing all interaction in-flight MineGPT requests...
[10:11:46] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'minegpt-interaction-menu', enabled = true
[10:11:46] [Server thread/INFO]: [CS-API] Registered placeholder with the 'minegpt' prefix
[10:11:46] [Server thread/INFO]: [CS-API] Registered placeholder with the 'minegpt_player' prefix
[10:11:46] [Server thread/INFO]: [CS-API] Registered placeholder with the 'minegpt_response' prefix
[10:11:46] [Server thread/INFO]: [CS-API] Registered placeholder with the 'minegpt_interaction_exception' prefix
[10:11:46] [Server thread/INFO]: [CS-API] Registered placeholder with the 'minegpt_translate' prefix
[10:11:46] [Server thread/INFO]: [CS-API] Registered placeholder with the 'minegpt_request_handler' prefix
[10:11:46] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'minegpt_request_handler'
[10:11:46] [Server thread/INFO]: [CS-API] Registered placeholder with the 'minegpt' prefix
[10:11:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minegpt [1.11.10]
[10:11:46] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.3.2
[10:11:46] [Server thread/INFO]: [skQuery] Beginning to process a total of 152 from SkQuery
[10:11:46] [Server thread/INFO]: [skQuery] com.skquery.skquery.elements.effects.base.OptionsPragma is patternless and failed to register. This is most likely a code error.
[10:11:46] [Server thread/INFO]: [skQuery] com.skquery.skquery.elements.effects.base.Pragma is patternless and failed to register. This is most likely a code error.
[10:11:46] [Server thread/INFO]: [skQuery] Out of 152 classes, 102 classes were loaded from SkQuery
[10:11:46] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.5
[10:11:46] [Server thread/INFO]: [VengefulMobs] Enabling VengefulMobs v1.1.1
[10:11:46] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.23.0
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-ko.yml as language file.
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: /sections/에서 49 섹션 구성을 완료했습니다.
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: /shops/에서 49 상점 구성을 완료했습니다.
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: 상점 설정을 업데이트하는 중입니다...
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: 현재 사용중인 마인크래프트 자바에디션 버전은 1.21.4입니다.
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Failed to hook into DiscordSRV because no game channel with name 'shop' was found inside the DiscordSRV config.
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: 모든 46 상점 섹션에 대한 1 개의 이코노미 제공자가 로딩되었습니다.
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: 스포너 공급자 구성에서 AUTO로 설정되었습니다.
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Failed to automatically find compatible spawner provider, using default...
[10:11:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Providers not enabled yet, waiting...
[10:11:47] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.3.2-beta-1
[10:11:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[10:11:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[10:11:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'LoneLibs' to create a bStats instance!
[10:11:48] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.6-T20250103114036
[10:11:48] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[10:11:48] [Server thread/INFO]: [Minepacks] You do have the PCGF_PluginLib installed. You may consider switching to the default version of the plugin to reduce memory load and unlock additional features.
[10:11:48] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[10:11:48] [Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[10:11:48] [Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[10:11:48] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: 한국어  Author: SUDA (Translated)
[10:11:48] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[10:11:48] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[10:11:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.6-T20250103114036]
[10:11:48] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[10:11:48] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[10:11:48] [Server thread/INFO]: [TAB] Enabling TAB v5.2.0
[10:11:48] [Server thread/INFO]: [TAB] Loaded NMS hook in 8ms
[10:11:49] [Server thread/INFO]: [TAB] Enabled in 254ms
[10:11:49] [Server thread/INFO]: [spark] Starting background profiler...
[10:11:49] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (macosx/x86_64), so the built-in Java engine will be used instead.
[10:11:49] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:11:49] [Server thread/INFO]: Done preparing level "lobby" (52.255s)
[10:11:49] [Server thread/INFO]: Running delayed init tasks
[10:11:49] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:11:49] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[10:11:49] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[10:11:49] [Craft Scheduler Thread - 20 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[10:11:49] [Craft Scheduler Thread - 31 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[10:11:49] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[10:11:49] [Craft Scheduler Thread - 21 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[10:11:49] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[10:11:49] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] 버전 정보를 가져오는중...
[10:11:49] [Craft Scheduler Thread - 31 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[10:11:49] [Craft Scheduler Thread - 23 - CosmeticsCore/INFO]: [CosmeticsCore] [License] Spigot product licensed to: sudapeople (474583)
[10:11:49] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: sudapeople (474583)
[10:11:50] [Craft Scheduler Thread - 21 - DecentHolograms/INFO]: [DecentHolograms] Loaded 5 holograms!
[10:11:50] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing capybara.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing frog_green.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing deepdiamgolem.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing chlly_guy.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing dragon_desert.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing dragon_glacial.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing basilisk_wild.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing basilisk_obsidian.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing dragon_nether.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing frog_permafrost.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing golem_arcane.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing dragon_sculk.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing frog_royal.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing hippogryph_common.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing basilisk_snowstorm.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing hippogryph_crystal.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing golem_royal.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing golem_corrupted.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing horse_magma.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing horse_spartan.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing golem_magma.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing horse_unicorn.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing hippogryph_royal.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing hippogryph_fallen.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing kitsune_inferno.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing horse_glacial.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing horse_pegasus.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing kitsune_demonic.bbmodel.
[10:11:50] [Craft Scheduler Thread - 20 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[10:11:50] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing madparrot.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing kitsune_normal.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing lizard_aqua.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing miner_zombie.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing lizard_lava.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing manticore_venom.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing nether_zombie.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing nocsy_cat1.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing manticore_aether.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing manticore_soul.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:50] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing nocsy_otter_v2.bbmodel.
[10:11:50] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing manticore_dusk.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing nocsy_thread_ball.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing pet_angel.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing nocsy_cat5.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing nocsy_cat6.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing panda_normal.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing nocsy_cat4.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing nocsy_cat2.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing nocsy_cat3.bbmodel.
[10:11:51] [Server thread/INFO]: [Skript] Loading variables...
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing pet_demon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing pet_dark_kitsune.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing nocsy_cat_fallen.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing pet_aether_dragon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing pet_lunar_wolf.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing pet_fire_dragon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing pet_frost_wolf.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing pet_hellhound.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing pet_ice_dragon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing pet_kitsune.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing pet_eagle.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing pet_shuriken_ninja.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing pet_spirit_fox.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing pet_samurai.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing pet_undead_dragon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing pet_nature_dragon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing pet_thunder_dragon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing pet_wind_dragon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing pet_phoenix.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing pet_sai_ninja.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing pet_thunderbird.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing pet_shadow_dragon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing pirate_zombie.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing qmob_creakingheart.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing qmob_creaking.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing phantom_ghost.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing phantom_ender.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing phoenix_flame.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing phoenix_light.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing raptor_red.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing raptor_nightmare.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing phoenix_thunder.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing sabertooth_arctic.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing phoenix_darkflame.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing sabertooth_midnight.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing raptor_undead.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing sky_serpent_spectral.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing stag_demonic.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing sabertooth_savanna.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing sky_serpent_magma.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing stag_rune.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing stag_heavenly.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing sky_serpent_solar.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing sky_serpent_jade.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing toxishroom.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing stag_void.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-3/INFO]: [ModelEngine] [A] Importing wind_tornado.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing tusker_dreamlight.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-10/INFO]: [ModelEngine] [A] Importing tusker_forest.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing tusker_demonic.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-4/INFO]: [ModelEngine] [A] Importing wyvern_green.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-6/INFO]: [ModelEngine] [A] Importing wyvern_ender.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-2/INFO]: [ModelEngine] [A] Importing wolfhawk_fullmoon.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-8/INFO]: [ModelEngine] [A] Importing wyvern_inferno.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-1/INFO]: [ModelEngine] [A] Importing wolfhawk_stormcloud.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-7/INFO]: [ModelEngine] [A] Importing wolfhawk_dire.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-9/INFO]: [ModelEngine] [A] Importing wolfhawk_fallen.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-5/INFO]: [ModelEngine] [A] Importing wyvern_undead.bbmodel.
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] 
[10:11:51] [ForkJoinPool-5-worker-11/INFO]: [ModelEngine] [A] Importing zombiebossz.bbmodel.
[10:11:52] [Thread-36/INFO]: [Skript] Loaded 1029 variables so far...
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Loaded 1049 items
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 2/188 REAL block IDs
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 2/750 REAL_NOTE block IDs
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 4/63 REAL_TRANSPARENT block IDs
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 81/127 REAL_WIRE block IDs
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 62/6608 font_images
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 36 categories
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[10:11:52] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://220.74.26.29:8163/generated.zip
[10:11:53] [Thread-36/INFO]: [Skript] Loaded 249483 variables so far...
[10:11:53] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:11:53] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[10:11:53] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Generator Profiled:
[10:11:53] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A]  - Import Phase: 1,630.9ms
[10:11:53] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A]  - Assets Phase: 862.6ms
[10:11:53] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A]  - Zipping Phase: 986.4ms
[10:11:55] [Server thread/INFO]: [Skript] Loaded 372376 variables in 4.6 seconds
[10:11:56] [Server thread/INFO]: [Skript] 라인 12: (special_command.sk)
[10:11:56] [Server thread/INFO]:     Function name 'formatNumber' is reserved by Skript
[10:11:56] [Server thread/INFO]:     라인: function formatNumber(n: number) :: text:
[10:11:56] [Server thread/INFO]:  
[10:12:03] [Server thread/INFO]: [Skript] 라인 311: (world_teleport.sk)
[10:12:03] [Server thread/INFO]:     a slot can't be set to 'light gray glass pane named " "' because the latter is neither an item type nor an item stack
[10:12:03] [Server thread/INFO]:     라인: set slot {_i} of {_gui} to light gray glass pane named " "
[10:12:03] [Server thread/INFO]:  
[10:12:04] [Server thread/INFO]: [Skript] 라인 39: (bragging.sk)
[10:12:04] [Server thread/INFO]:     Can't understand this condition: '{_item} has dye'
[10:12:04] [Server thread/INFO]:     라인: if {_item} has dye:
[10:12:04] [Server thread/INFO]:  
[10:12:05] [spark-java-sampler-0-3/WARN]: [spark] Timed out waiting for world statistics
[10:12:08] [Server thread/INFO]: [Skript] 라인 120: (slotmachine.sk)
[10:12:08] [Server thread/INFO]:     There's no player in an on inventory item move event
[10:12:08] [Server thread/INFO]:     라인: if {in_slot_machine::%event-player%} is true:
[10:12:08] [Server thread/INFO]:  
[10:12:08] [Server thread/INFO]: [Skript] 라인 130: (slotmachine5.sk)
[10:12:08] [Server thread/INFO]:     There's no player in an on inventory item move event
[10:12:08] [Server thread/INFO]:     라인: if {in_slot5_machine::%event-player%} is true:
[10:12:08] [Server thread/INFO]:  
[10:12:09] [Server thread/INFO]: [Skript] 라인 450: (world_teleport.sk)
[10:12:09] [Server thread/INFO]:     Can't compare an item type with 'light gray glass pane'
[10:12:09] [Server thread/INFO]:     라인: if type of clicked slot is light gray glass pane:
[10:12:09] [Server thread/INFO]:  
[10:12:09] [Server thread/INFO]: [megaphone.sk] [확성기] 스크립트가 로드되었습니다.
[10:12:09] [Server thread/INFO]: [System] PvP 시스템이 초기화되었습니다.
[10:12:09] [Server thread/INFO]: [DEBUG] 특별 후원 시스템 로드 완료
[10:12:09] [Server thread/INFO]: [Skript] 56개의 스크립트에서 총 349개의 구조를 13.97 seconds 만에 로드했습니다.
[10:12:09] [Server thread/INFO]: [Skript] 로딩을 완료했습니다.
[10:12:09] [Server thread/INFO]: [데이터 초기화] AutoReplant 사용자 데이터 초기화를 시작합니다...
[10:12:09] [Server thread/INFO]: [데이터 초기화] 총 <none>명의 AutoReplant 사용자 데이터를 불러왔습니다.
[10:12:09] [Server thread/INFO]: Pick Pocket script has been loaded!
[10:12:09] [Server thread/INFO]: [roulette.sk] 룰렛 데이터 초기화 완료. 풀 크기: 100
[10:12:09] [Server thread/INFO]: [스위치] GUI 시스템이 로드되었습니다.
[10:12:09] [Server thread/INFO]: [CoreProtect] WorldEdit 성공적으로 로깅 초기화.
[10:12:09] [Server thread/INFO]: [CustomCrops] Registry access has been frozen
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[10:12:09] [Server thread/INFO]: [F-Command] You are using the latest version of F-Command.
[10:12:09] [Server thread/INFO]: [Auto Replant] You are using the latest version of AutoReplant!
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ascii [1.0.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: defaultvalue [1.0.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: questranking [1.0.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.7.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: msgc [2.0.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: unicode [1.0.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: otherplayer [2.1.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: donation [1.0.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: objective [4.2.0]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: sbtags [1.0.1]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.8]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[10:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[10:12:09] [Server thread/INFO]: 19 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[10:12:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: ItemsAdder 훅이 활성화되었습니다...
[10:12:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[10:12:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[10:12:12] [Server thread/ERROR]: Could not pass event ItemsAdderLoadDataEvent to ItemsAdder v4.0.9-hotfix-1
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at ItemsAdder_4.0.9-hotfix-1.jar/dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:85) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.ch.a(SourceFile:430) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.ait.a(SourceFile:74) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.ag.e(SourceFile:981) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.agm.f(SourceFile:130) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.ag.a(SourceFile:979) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 16 more
[10:12:13] [Server thread/INFO]: Done (113.590s)! For help, type "help"
[10:12:13] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 23475ms or 469 ticks behind
[10:12:13] [Craft Scheduler Thread - 5 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 0 ImageMaps!
[10:12:13] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: PlaceholderAPI 훅이 활성화되었습니다...
[10:12:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.2.0]
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully connected to SQLite database...
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: 아이템 재고 공급자를 로드하는 중...
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: DynamicPricing 공급자를 로드하는 중...
[10:12:13] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] No new version available
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled dynamic pricing restoration timer with a frequency of 5m...
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: 모든 항목을 불러오는 중입니다...
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: 검색과 일치하는 변환이 없습니다.
항목 위치가 0 - 45 범위에 있어야 하므로 상점 섹션 'NewFood'를 만들 수 없습니다.
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: 검색과 일치하는 변환이 없습니다.
항목 위치가 0 - 45 범위에 있어야 하므로 상점 섹션 'Backpack'를 만들 수 없습니다.
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop NewFood in the main shop-inventory has automatically been changed to '4' because it was already used or could not be found.
[10:12:13] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: 검색과 일치하는 변환이 없습니다.
항목 위치가 0 - 45 범위에 있어야 하므로 상점 섹션 'Backpack'를 만들 수 없습니다.
[10:12:13] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[10:12:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed delayed loading.
[10:12:15] [Server thread/INFO]: [voicechat] Loading plugins
[10:12:15] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[10:12:15] [Server thread/INFO]: [voicechat] Initializing plugins
[10:12:15] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[10:12:15] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at port 24454
[10:12:16] [Server thread/INFO]: [Quests] Loaded 43 Quest(s), 7 Action(s), 1 Condition(s) and 803 Phrase(s)
[10:12:16] [Server thread/INFO]: [BanItem] Successfully loaded 6 blacklisted & 0 whitelisted item(s).
[10:12:18] [Server thread/INFO]: [Kill] Updating kill rankings...
[10:12:18] [Server thread/INFO]: [Kill] Updating holograms...
[10:12:18] [Server thread/INFO]: [DecentHolograms] Line has been set!
[10:12:18] [Server thread/INFO]: [Kill] Updated rank 1 display
[10:12:18] [Server thread/INFO]: [DecentHolograms] Line has been set!
[10:12:18] [Server thread/INFO]: [Kill] Updated rank 2 display
[10:12:18] [Server thread/INFO]: [DecentHolograms] Line has been set!
[10:12:18] [Server thread/INFO]: [Kill] Updated rank 3 display
[10:12:18] [Server thread/INFO]: [DecentHolograms] Line has been set!
[10:12:18] [Server thread/INFO]: [Kill] Updated rank 4 display
[10:12:18] [Server thread/INFO]: [DecentHolograms] Line has been set!
[10:12:18] [Server thread/INFO]: [Kill] Updated rank 5 display
[10:12:18] [Server thread/INFO]: [roulette.sk] 룰렛 데이터 초기화 완료. 풀 크기: 100
[10:12:22] [Server thread/INFO]: Stopping the server
[10:12:22] [Server thread/INFO]: Stopping server
[10:12:22] [Server thread/INFO]: [TAB] Disabling TAB v5.2.0
[10:12:22] [Server thread/INFO]: [TAB] Disabled in 1ms
[10:12:22] [Server thread/INFO]: [Minepacks] Disabling Minepacks v2.4.31.6-T20250103114036
[10:12:22] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully unregistered!
[10:12:23] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown initiated...
[10:12:23] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown completed.
[10:12:23] [Server thread/INFO]: [Minepacks]  Minepacks has been disabled.  :( 
[10:12:23] [Server thread/INFO]: [CosmeticsCore] Disabling CosmeticsCore v1.3.2-beta-1
[10:12:23] [Server thread/INFO]: [EconomyShopGUI-Premium] Disabling EconomyShopGUI-Premium v5.23.0
[10:12:23] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: DynamicPricing을 데이터베이스에 저장하는 중...
[10:12:23] [Server thread/INFO]: [VengefulMobs] Disabling VengefulMobs v1.1.1
[10:12:23] [Server thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.1.5
[10:12:23] [Server thread/INFO]: [SkQuery] Disabling SkQuery v4.3.2
[10:12:23] [Server thread/INFO]: [MineGPT] Disabling MineGPT v1.11.10
[10:12:23] [Server thread/INFO]: [TeaksTweaks] Disabling TeaksTweaks v2.0.7-mc1.21.4
[10:12:23] [Server thread/INFO]: [TeaksTweaks] [INFO] Teak's Tweaks Shutting Down...
[10:12:23] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.16
[10:12:23] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.2.2
[10:12:23] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[10:12:23] [Server thread/INFO]: [QuestsBar] Disabling QuestsBar v2.2
[10:12:23] [Server thread/INFO]: [ImageFrame] Disabling ImageFrame v1.7.14.0
[10:12:23] [Server thread/INFO]: [ImageFrame] ImageFrame has been Disabled!
[10:12:23] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.0
[10:12:23] [Server thread/INFO]: [AdminActionLogger] Disabling AdminActionLogger v1.2.0
[10:12:23] [Server thread/INFO]: [AdminActionLogger] 0명의 플레이어 매핑 데이터를 저장했습니다.
[10:12:23] [Server thread/INFO]: [AdminActionLogger] AdminActionLogger가 비활성화되었습니다.
[10:12:23] [Server thread/INFO]: [PlugManX] Disabling PlugManX v2.4.1
[10:12:23] [Server thread/INFO]: [Kotlin] Disabling Kotlin v2.1.20
[10:12:23] [Server thread/INFO]: [BlockLocker] Disabling BlockLocker v1.13
[10:12:23] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.29.0
[10:12:38] [Server thread/INFO]: [done-connector] Disabling done-connector v1.9.8
[10:12:38] [Server thread/INFO]: [SUDA] 플러그인 비활성화 완료.
[10:12:38] [Server thread/INFO]: [CustomCrops] Disabling CustomCrops v3.6.32.1
[10:12:38] [Server thread/INFO]: [VeinMiner] Disabling VeinMiner v2.2.6
[10:12:38] [Server thread/INFO]: [VeinMiner] Clearing localized data
[10:12:38] [Server thread/INFO]: [InteractionVisualizer] Disabling InteractionVisualizer v1.18.13.0
[10:12:38] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion interactionvisualizer
[10:12:38] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin InteractionVisualizer was disabled.
[10:12:38] [Server thread/INFO]: [InteractionVisualizer] Saving player preferences bitmask index, do not halt the server.
[10:12:38] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been disabled!
[10:12:38] [Server thread/INFO]: [EssentialsProtect] Disabling EssentialsProtect v2.21.0
[10:12:38] [Server thread/INFO]: [CreativeItemLogger] Disabling CreativeItemLogger v1.0.0
[10:12:38] [Server thread/INFO]: [CreativeItemLogger] CreativeItemLogger가 비활성화되었습니다.
[10:12:38] [Server thread/INFO]: [WESV] Disabling WorldEditSelectionVisualizer v2.1.7
[10:12:38] [Server thread/INFO]: [sleep-most] Disabling sleep-most v5.5.3
[10:12:38] [Server thread/INFO]: [voicechat] Disabling voicechat v2.5.26
[10:12:38] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v23.2-RC4
[10:12:38] [Server thread/INFO]: [CoreProtect] 데이터 로깅을 마무리합니다. 기다리세요...
[10:12:39] [Server thread/INFO]: [CoreProtect] 성공! 장애가 있는 CoreProtect v23.2-RC4
[10:12:39] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.21.0
[10:12:39] [Server thread/INFO]: [F-Command] Disabling F-Command v2.6.1
[10:12:39] [Server thread/INFO]: F-Command > ======================================================
[10:12:39] [Server thread/INFO]: F-Command > | F-Command 2.6.1 by Hutch79
[10:12:39] [Server thread/INFO]: F-Command > | Has been Disabled
[10:12:39] [Server thread/INFO]: F-Command > ------------------------------------------------------
[10:12:39] [Server thread/INFO]: F-Command > | If you find any Bugs, please report them on GitHub
[10:12:39] [Server thread/INFO]: F-Command > | https://github.com/Hutch79/F-Command
[10:12:39] [Server thread/INFO]: F-Command > | Discord: https://dc.hutch79.ch
[10:12:39] [Server thread/INFO]: F-Command > ======================================================
[10:12:39] [Server thread/INFO]: [AnimatedScoreboard] Disabling AnimatedScoreboard v0.3.7
[10:12:39] [Server thread/INFO]: [MCPets] Disabling MCPets v4.1.4
[10:12:39] [Server thread/INFO]: -=-=-=-= MCPets disable =-=-=-=-
[10:12:39] [Server thread/INFO]:           See you soon
[10:12:39] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[10:12:39] [Server thread/INFO]: [AutoReplant] Disabling AutoReplant v2.4
[10:12:39] [Server thread/INFO]: [Multiverse-NetherPortals] Disabling Multiverse-NetherPortals v4.3.0-SNAPSHOT
[10:12:39] [Server thread/INFO]: [Multiverse-NetherPortals] - Disabled
[10:12:39] [Server thread/INFO]: [BanItem] Disabling BanItem v3.6
[10:12:39] [Server thread/INFO]: [PCGF_PluginLib] Disabling PCGF_PluginLib v1.0.39.8-SNAPSHOT
[10:12:40] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.39.8-SNAPSHOT has been disabled.  :( 
[10:12:40] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.65
[10:12:40] [Server thread/INFO]: [SkBee] Disabling SkBee v3.7.0
[10:12:40] [Server thread/INFO]: [Quests] Disabling Quests v5.2.2-b533
[10:12:40] [Server thread/INFO]: [Quests] Saving Quester data...
[10:12:40] [Server thread/INFO]: [Quests] Closing storage...
[10:12:40] [Server thread/INFO]: [OpenInv] Disabling OpenInv v5.1.9
[10:12:40] [Server thread/INFO]: [Multiverse-Portals] Disabling Multiverse-Portals v4.3.0-SNAPSHOT
[10:12:40] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.14.1
[10:12:40] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v4.0.9-hotfix-1
[10:12:40] [Server thread/INFO]: [ItemsAdder] Saving custom entities...
[10:12:40] [Server thread/INFO]: [ItemsAdder] Saved 0 custom entities successfully!
[10:12:40] [pool-106-thread-1/INFO]: [ItemsAdder] [Host] Stopped self-host webserver on port: 8163
[10:12:41] [Server thread/INFO]: [Skript] Disabling Skript v2.10.2
[10:12:45] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR4.0.8
[10:12:45] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.0
[10:12:45] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[10:12:45] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.8.2-6a2683d7
[10:12:45] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:12:45] [Server thread/INFO]: [MythicMobs] - 
[10:12:45] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[10:12:45] [Server thread/INFO]: [MythicMobs] - 
[10:12:45] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:12:45] [Server thread/INFO]: [MythicMobs] - Spawners saved and unloaded...
[10:12:45] [Server thread/INFO]: [MythicMobs] - Mobs saved and unloaded...
[10:12:45] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:12:45] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:12:45] [Server thread/INFO]: [MythicMobs] - Variables saved...
[10:12:45] [Server thread/INFO]: [MythicMobs] - All active settings have been saved!
[10:12:45] [Server thread/INFO]: [MythicMobs] - Mythic has been unloaded!
[10:12:45] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:12:45] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:12:45] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:12:45] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v11.0.3
[10:12:45] [Server thread/INFO]: [LibsDisguises] Outdated mappings cache, will rebuild.
[10:12:45] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.14
[10:12:45] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion multiverse
[10:12:45] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Multiverse-Core was disabled.
[10:12:45] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.13+82fdc65
[10:12:45] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[10:12:45] [Server thread/INFO]: [packetevents] Disabling packetevents v2.7.1+ef4927680-SNAPSHOT
[10:12:45] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[10:12:45] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.3.11+7055-8357a12
[10:12:45] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[10:12:45] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v5.3.1
[10:12:45] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.4.0-SNAPSHOT-742
[10:12:45] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[10:12:45] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.158
[10:12:45] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[10:12:45] [Server thread/INFO]: [LuckPerms] Closing storage...
[10:12:45] [Server thread/INFO]: [LuckPerms] Goodbye!
[10:12:45] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v5.3.1
[10:12:45] [Server thread/INFO]: [ViaVersion] ViaVersion has been disabled; uninjected the platform and shut down the scheduler.
[10:12:45] [Server thread/INFO]: Saving players
[10:12:45] [Server thread/INFO]: Saving worlds
[10:12:45] [Server thread/INFO]: Saving chunks for level 'ServerLevel[lobby]'/minecraft:overworld
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'lobby'
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'lobby'
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'lobby'
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'lobby' in 0.36s
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'lobby'
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'lobby'
[10:12:45] [Server thread/INFO]: Saving chunks for level 'ServerLevel[lobby_nether]'/minecraft:the_nether
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'lobby_nether'
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'lobby_nether'
[10:12:45] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'lobby_nether'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'lobby_nether' in 0.08s
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'lobby_nether'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'lobby_nether'
[10:12:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[lobby_the_end]'/minecraft:the_end
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'lobby_the_end'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'lobby_the_end'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'lobby_the_end'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'lobby_the_end' in 0.11s
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'lobby_the_end'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'lobby_the_end'
[10:12:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world' in 0.23s
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world'
[10:12:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[pvp_1vs1_stadium]'/minecraft:pvp_1vs1_stadium
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'pvp_1vs1_stadium'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'pvp_1vs1_stadium'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'pvp_1vs1_stadium'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'pvp_1vs1_stadium' in 0.07s
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'pvp_1vs1_stadium'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'pvp_1vs1_stadium'
[10:12:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:world_nether
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world_nether' in 0.08s
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world_nether'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world_nether'
[10:12:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[fish]'/minecraft:fish
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'fish'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'fish'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'fish'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'fish' in 0.31s
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'fish'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'fish'
[10:12:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[pvp_1vs1_lobby]'/minecraft:pvp_1vs1_lobby
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'pvp_1vs1_lobby'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'pvp_1vs1_lobby'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'pvp_1vs1_lobby'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'pvp_1vs1_lobby' in 0.04s
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'pvp_1vs1_lobby'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'pvp_1vs1_lobby'
[10:12:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[farm]'/minecraft:farm
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'farm'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'farm'
[10:12:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'farm'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'farm' in 0.11s
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'farm'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'farm'
[10:12:47] [Server thread/INFO]: Saving chunks for level 'ServerLevel[parkour]'/minecraft:parkour
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'parkour'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'parkour'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'parkour'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'parkour' in 0.06s
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'parkour'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'parkour'
[10:12:47] [Server thread/INFO]: Saving chunks for level 'ServerLevel[maze]'/minecraft:maze
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'maze'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'maze'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'maze'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'maze' in 0.06s
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'maze'
[10:12:47] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'maze'
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (lobby): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (pvp_1vs1_stadium): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (fish): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (pvp_1vs1_lobby): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (farm): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (parkour): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage (maze): All chunks are saved
[10:12:47] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[10:12:47] [Server thread/INFO]: Waiting for I/O tasks to complete...
[10:12:47] [Server thread/INFO]: All I/O tasks to complete
[10:12:47] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of worker pool for up to 60s...
[10:12:47] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of I/O pool for up to 60s...