Paste #137437: Latest

Date: 2025/11/16 10:36:30 UTC-08: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


[15:24:18] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.9+10-LTS; Eclipse Adoptium Temurin-21.0.9+10) on Linux 6.8.0-85-generic (amd64)
[15:24:18] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.8-2497-HEAD@a49cdb9 (2025-09-19T01:51:04Z) for Minecraft 1.21.8
[15:24:19] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[15:24:20] [ServerMain/INFO]: [PluginInitializerManager] Initialized 70 plugins
[15:24:20] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (7):
 - BKCommonLib (1.21.10-v2-SNAPSHOT), MarriageMaster (2.8.4), Nexo (1.14), NexoAddon (1.14.0), PlugManX (3.0.2), RoseStacker (1.5.36), TreasureMapsPlus (0.8.0)
[15:24:20] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (63):
 - Actions (2.77.0), AdvancedBan (2.3.0), AdvancedSpyInventory (2.4.11), AntiNetherRoof (1.2.5), AxTrade (1.20.4), Boombox (3.1.9), ChestSort (14.2.0), CustomCrops (3.6.45.1), CustomFishing (2.3.16), DecentHolograms (2.9.8), DeluxeMenus (1.14.1-Release), EcoEnchants (12.26.1), EcoQuests (1.50.0), EcoScrolls (1.13.0), EcoShop (1.38.0), EcoSkills (3.67.1), EnchantNow (1.0.10-a), Essentials (2.22.0-dev+42-9985dbd), EssentialsDiscord (2.22.0-dev+42-9985dbd), EssentialsDiscordLink (2.22.0-dev+42-9985dbd), EssentialsGeoIP (2.22.0-dev+42-9985dbd), EssentialsSpawn (2.22.0-dev+42-9985dbd), ExecutableBlocks (5.25.11.2), FastAsyncWorldEdit (2.14.1-SNAPSHOT-1211+b49616a), GSit (3.0.1), HMCColor (2.4), HMCCosmetics (2.8.1), HMCRewards (0.5.3), HeadDatabase (4.21.5), HibiscusCommons (0.7.2), LibsDisguises (11.0.11), LuckPerms (5.5.18), MCPets (4.1.5-SNAPSHOT), ModelEngine (R4.0.9), My_Worlds (1.21.10-v1), MythicCrucible (2.2.0-SNAPSHOT), MythicDungeons (2.0.1-SNAPSHOT), MythicMobs (5.10.1-SNAPSHOT-9ca56232), Nascraft (1.9.2), NextTasks (1.1.0), NoteBlockAPI (1.6.3), PlaceholderAPI (2.11.7-DEV-212), PlayerAuctions (1.32.1), ProtocolLib (5.4.1-SNAPSHOT-aa4fab1), PvPManager (4.0.5), Reforges (6.78.0), RoseChat (Beta-38), RoseLoot (1.3.2), SCore (5.25.11.2), SimpleAlias (1.6.4), SimplePortals (1.7.6), TAB (5.3.2), Talismans (6.77.0), Vault (1.7.3-b131), Vegas (2.0), ViaVersion (5.5.2-SNAPSHOT), VotifierPlus (1.4.3), VotingPlugin (6.19), WildRTP (2.6.1), WorldGuard (7.0.14+2339-43997ec), ZetaHoppers (1.0-1.13.2), eco (6.77.2), packetevents (2.10.0)
[15:24:23] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:24:25] [ServerMain/INFO]: Loaded 1353 recipes
[15:24:25] [ServerMain/INFO]: Loaded 1520 advancements
[15:24:25] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[15:24:25] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 273.0ms
[15:24:25] [Server thread/INFO]: Starting minecraft server version 1.21.8
[15:24:25] [Server thread/INFO]: Loading properties
[15:24:25] [Server thread/INFO]: This server is running Purpur version 1.21.8-2497-HEAD@a49cdb9 (2025-09-19T01:51:04Z) (Implementing API version 1.21.8-R0.1-SNAPSHOT)
[15:24:25] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[15:24:26] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:24:26] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:24:26] [Server thread/INFO]: [MoonriseCommon] Paper is using 3 worker threads, 1 I/O threads
[15:24:26] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[15:24:26] [Server thread/INFO]: Default game type: SURVIVAL
[15:24:26] [Server thread/INFO]: Generating keypair
[15:24:26] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[15:24:26] [Server thread/INFO]: Using epoll channel type
[15:24:26] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[15:24:26] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 2 libraries... please wait
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[15:24:27] [Server thread/INFO]: [eco] Initializing eco
[15:24:27] [Server thread/INFO]: [com.willfp.eco.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:24:27] [Server thread/INFO]: [com.willfp.eco.libs.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5bfe94f7
[15:24:27] [Server thread/INFO]: [com.willfp.eco.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loading 1 libraries... please wait
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-all/4.1.118.Final/netty-all-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-dns/4.1.118.Final/netty-codec-dns-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-haproxy/4.1.118.Final/netty-codec-haproxy-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-http/4.1.118.Final/netty-codec-http-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-http2/4.1.118.Final/netty-codec-http2-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-memcache/4.1.118.Final/netty-codec-memcache-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-mqtt/4.1.118.Final/netty-codec-mqtt-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-redis/4.1.118.Final/netty-codec-redis-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-smtp/4.1.118.Final/netty-codec-smtp-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-socks/4.1.118.Final/netty-codec-socks-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-stomp/4.1.118.Final/netty-codec-stomp-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-xml/4.1.118.Final/netty-codec-xml-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-unix-common/4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-handler-proxy/4.1.118.Final/netty-handler-proxy-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-handler-ssl-ocsp/4.1.118.Final/netty-handler-ssl-ocsp-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver/4.1.118.Final/netty-resolver-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver-dns/4.1.118.Final/netty-resolver-dns-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-rxtx/4.1.118.Final/netty-transport-rxtx-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-sctp/4.1.118.Final/netty-transport-sctp-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-udt/4.1.118.Final/netty-transport-udt-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-classes-epoll/4.1.118.Final/netty-transport-classes-epoll-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-classes-kqueue/4.1.118.Final/netty-transport-classes-kqueue-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver-dns-classes-macos/4.1.118.Final/netty-resolver-dns-classes-macos-4.1.118.Final.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-x86_64.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-aarch_64.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-riscv64.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-kqueue/4.1.118.Final/netty-transport-native-kqueue-4.1.118.Final-osx-x86_64.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-kqueue/4.1.118.Final/netty-transport-native-kqueue-4.1.118.Final-osx-aarch_64.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver-dns-native-macos/4.1.118.Final/netty-resolver-dns-native-macos-4.1.118.Final-osx-x86_64.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver-dns-native-macos/4.1.118.Final/netty-resolver-dns-native-macos-4.1.118.Final-osx-aarch_64.jar
[15:24:27] [Server thread/INFO]: [EcoSkills] Initializing EcoSkills
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loading 5 libraries... please wait
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-api/4.24.0/adventure-api-4.24.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-key/4.24.0/adventure-key-4.24.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.24.0/adventure-text-minimessage-4.24.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.24.0/adventure-text-serializer-gson-4.24.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.24.0/adventure-text-serializer-json-4.24.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-commons/4.24.0/adventure-text-serializer-commons-4.24.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.4.1/adventure-platform-bukkit-4.4.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.4.1/adventure-platform-api-4.4.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.4.1/adventure-text-serializer-bungeecord-4.4.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.21.0/adventure-text-serializer-legacy-4.21.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.21.0/adventure-nbt-4.21.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.21.0/adventure-text-serializer-gson-legacy-impl-4.21.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.21.0/adventure-text-serializer-json-legacy-impl-4.21.0.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.4.1/adventure-platform-facet-4.4.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.4.1/adventure-platform-viaversion-4.4.1.jar
[15:24:27] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[15:24:28] [Server thread/INFO]: [EcoEnchants] Initializing EcoEnchants
[15:24:28] [Server thread/INFO]: [Reforges] Initializing Reforges
[15:24:28] [Server thread/INFO]: [Talismans] Initializing Talismans
[15:24:28] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[15:24:28] [Server thread/INFO]: [EcoQuests] Initializing EcoQuests
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[15:24:28] [Server thread/INFO]: [Actions] Initializing Actions
[15:24:28] [Server thread/INFO]: [EcoScrolls] Initializing EcoScrolls
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loading 1 libraries... please wait
[15:24:28] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.42.0.0/sqlite-jdbc-3.42.0.0.jar
[15:24:28] [Server thread/INFO]: [EcoShop] Initializing EcoShop
[15:24:28] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.5.2-SNAPSHOT
[15:24:28] [Server thread/INFO]: [ViaVersion] ViaVersion 5.5.2-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[15:24:28] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading block connection mappings ...
[15:24:28] [Via-Mappingloader-1/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[15:24:28] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.18
[15:24:29] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:24:29] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.1-SNAPSHOT-aa4fab1
[15:24:29] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[15:24:29] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.7-DEV-212
[15:24:29] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.10.0
[15:24:29] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.14.1-SNAPSHOT-1211+b49616a
[15:24:30] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@69e24da9]
[15:24:30] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.11
[15:24:31] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.14+2339-43997ec
[15:24:31] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.3.2
[15:24:31] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.22.0-dev+42-9985dbd
[15:24:31] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.10.1-SNAPSHOT-9ca56232
[15:24:31] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[15:24:31] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[15:24:31] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.21.5
[15:24:31] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v4.0.5
[15:24:31] [Server thread/INFO]: [PvPManager] Registering WorldGuard flags...
[15:24:31] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.9
[15:24:31] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.8
[15:24:31] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.2.0-SNAPSHOT
[15:24:31] [Server thread/INFO]: [eco] Loading server plugin eco v6.77.2
[15:24:31] [Server thread/INFO]: [Nexo] Loading server plugin Nexo v1.14
[15:24:31] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.21.10-v2-SNAPSHOT
[15:24:33] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[15:24:40] [Server thread/INFO]: [HMCColor] Loading server plugin HMCColor v2.4
[15:24:40] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.25.11.2
[15:24:40] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.21.10-v1
[15:24:40] [Server thread/INFO]: [EcoSkills] Loading server plugin EcoSkills v3.67.1
[15:24:40] [Server thread/INFO]: [libreforge] Initializing libreforge
[15:24:40] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.79.0
[15:24:40] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.4.3
[15:24:40] [Server thread/INFO]: [HibiscusCommons] Loading server plugin HibiscusCommons v0.7.2
[15:24:40] [Server thread/INFO]: [EcoEnchants] Loading server plugin EcoEnchants v12.26.1
[15:24:40] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v5.25.11.2
[15:24:40] [Server thread/INFO]: [CustomFishing] Loading server plugin CustomFishing v2.3.16
[15:24:40] [Server thread/INFO]: [Reforges] Loading server plugin Reforges v6.78.0
[15:24:40] [Server thread/INFO]: [Talismans] Loading server plugin Talismans v6.77.0
[15:24:40] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.8.4
[15:24:40] [Server thread/INFO]: [EssentialsDiscord] Loading server plugin EssentialsDiscord v2.22.0-dev+42-9985dbd
[15:24:40] [Server thread/INFO]: [Nascraft] Loading server plugin Nascraft v1.9.2
[15:24:40] [Server thread/INFO]: [EcoQuests] Loading server plugin EcoQuests v1.50.0
[15:24:41] [Server thread/INFO]: [SimpleAlias] Loading server plugin SimpleAlias v1.6.4
[15:24:41] [Server thread/INFO]: [GSit] Loading server plugin GSit v3.0.1
[15:24:41] [Server thread/INFO]: [WildRTP] Loading server plugin WildRTP v2.6.1
[15:24:41] [Server thread/INFO]: [Boombox] Loading server plugin Boombox v3.1.9
[15:24:41] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.19
[15:24:41] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.5-SNAPSHOT
[15:24:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[15:24:41] [Server thread/WARN]: [MCPets] : ItemsAdder could not be found. custom items features won't be available.
[15:24:41] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[15:24:41] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[15:24:41] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[15:24:41] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[15:24:41] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v2.0.1-SNAPSHOT
[15:24:41] [Server thread/INFO]: [EssentialsGeoIP] Loading server plugin EssentialsGeoIP v2.22.0-dev+42-9985dbd
[15:24:41] [Server thread/INFO]: [AdvancedSpyInventory] Loading server plugin AdvancedSpyInventory v2.4.11
[15:24:41] [Server thread/INFO]: [HMCCosmetics] Loading server plugin HMCCosmetics v2.8.1
[15:24:41] [Server thread/INFO]: [NexoAddon] Loading server plugin NexoAddon v1.14.0
[15:24:41] [Server thread/INFO]: [TreasureMapsPlus] Loading server plugin TreasureMapsPlus v0.8.0
[15:24:41] [Server thread/INFO]: [ZetaHoppers] Loading server plugin ZetaHoppers v1.0-1.13.2
[15:24:41] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.22.0-dev+42-9985dbd
[15:24:41] [Server thread/INFO]: [Vegas] Loading server plugin Vegas v2.0
[15:24:41] [Server thread/INFO]: [Actions] Loading server plugin Actions v2.77.0
[15:24:41] [Server thread/INFO]: [EnchantNow] Loading server plugin EnchantNow v1.0.10-a
[15:24:41] [Server thread/INFO]: [CustomCrops] Loading server plugin CustomCrops v3.6.45.1
[15:24:41] [Server thread/INFO]: [SimplePortals] Loading server plugin SimplePortals v1.7.6
[15:24:41] [Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.32.1
[15:24:41] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.2.0
[15:24:41] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.3
[15:24:41] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-Release
[15:24:41] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version! The following Item options will not work: nbt_int, nbt_ints, nbt_string and nbt_strings.
[15:24:41] [Server thread/INFO]: [EcoScrolls] Loading server plugin EcoScrolls v1.13.0
[15:24:41] [Server thread/INFO]: [RoseLoot] Loading server plugin RoseLoot v1.3.2
[15:24:41] [Server thread/INFO]: [RoseLoot] Initializing using RoseGarden v1.5.3
[15:24:41] [Server thread/INFO]: [EcoShop] Loading server plugin EcoShop v1.38.0
[15:24:41] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.36
[15:24:41] [Server thread/INFO]: [RoseChat] Loading server plugin RoseChat vBeta-38
[15:24:41] [Server thread/INFO]: [RoseChat] Initializing using RoseGarden v1.5.3
[15:24:41] [Server thread/WARN]: [RoseChat] ================================================
[15:24:41] [Server thread/WARN]: [RoseChat]  You are currently running a DEVELOPMENT BUILD!
[15:24:41] [Server thread/WARN]: [RoseChat]  These types of builds are not fully tested and
[15:24:41] [Server thread/WARN]: [RoseChat]    may contain experimental features or bugs!
[15:24:41] [Server thread/WARN]: [RoseChat] ================================================
[15:24:41] [Server thread/INFO]: [AxTrade] Loading server plugin AxTrade v1.20.4
[15:24:41] [Server thread/INFO]: [NextTasks] Loading server plugin NextTasks v1.1.0
[15:24:41] [Server thread/INFO]: [AntiNetherRoof] Loading server plugin AntiNetherRoof v1.2.5
[15:24:41] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v3.0.2
[15:24:41] [Server thread/INFO]: [net.essentialsx.discordlink.EssentialsDiscordLink] Loading server plugin EssentialsDiscordLink v2.22.0-dev+42-9985dbd
[15:24:41] [Server thread/INFO]: [HMCRewards] Loading server plugin HMCRewards v0.5.3
[15:24:41] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[15:24:41] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:24:41] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.18
[15:24:42] [Server thread/INFO]:         __    
[15:24:42] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.18
[15:24:42] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[15:24:42] [Server thread/INFO]: 
[15:24:42] [Server thread/INFO]: [LuckPerms] Loading storage provider... [SPLIT STORAGE]
[15:24:42] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[15:24:42] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[15:24:43] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[15:24:44] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:24:44] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:24:44] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3398ms)
[15:24:44] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.1-SNAPSHOT-aa4fab1
[15:24:44] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[15:24:44] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[15:24:44] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:24:44] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[15:24:45] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:24:45] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.14.1-SNAPSHOT-1211+b49616a
[15:24:45] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[15:24:45] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[15:24:45] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:24:45] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:24:45] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_6.PaperweightFaweAdapter as the Bukkit adapter
[15:24:45] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.9
[15:24:45] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[15:24:45] [Server thread/INFO]: [eco] Enabling eco v6.77.2
[15:24:45] [Server thread/INFO]: [eco] Loading eco
[15:24:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.77.2]
[15:24:45] [Server thread/INFO]: [eco] Loaded integrations: HeadDatabase, MythicMobs, Nexo, DecentHolograms, ModelEngine, Essentials, Vault, PvPManager, PlaceholderAPI, WorldGuard
[15:24:45] [Server thread/INFO]: [eco] Scanning for conflicts...
[15:24:45] [Server thread/WARN]: [eco] Vegas will likely conflict with eco! Reason: Kotlin shaded into jar
[15:24:45] [Server thread/WARN]: [eco] You can fix the conflicts by either removing the conflicting plugins, or by asking on the support discord to have them patched!
[15:24:45] [Server thread/WARN]: [eco] Only remove potentially conflicting plugins if you see Loader Constraint Violation / LinkageError anywhere
[15:24:45] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.21.10-v2-SNAPSHOT
[15:24:45] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Purpur (Paper) (Spigot) (1.21.8-2497-a49cdb9 | mojmap) : (Unknown) (Minecraft 1.21.8)
[15:24:45] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[15:24:45] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[15:24:46] [ForkJoinPool.commonPool-worker-3/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 4 build(s) out of date.
You are running build 1211, the latest version is build 1215.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[15:24:46] [Server thread/INFO]: [BKCommonLib] CraftBukkit: redone, reworked, translated and interfaced.
[15:24:46] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.21.10-v2-SNAPSHOT (build: 1946) enabled! (0.8s)
[15:24:46] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v12.26.1
[15:24:46] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[15:24:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoenchants [12.26.1]
[15:24:46] [Server thread/INFO]: [EcoEnchants] Loaded integrations: Essentials
[15:24:46] [Server thread/INFO]: [EcoQuests] Enabling EcoQuests v1.50.0
[15:24:46] [Server thread/INFO]: [EcoQuests] Loading EcoQuests
[15:24:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoquests [1.50.0]
[15:24:46] [Server thread/INFO]: [TreasureMapsPlus] Enabling TreasureMapsPlus v0.8.0
[15:24:46] [Server thread/INFO]: [PlugManX] Enabling PlugManX v3.0.2
[15:24:46] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[15:24:46] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[15:24:46] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[15:24:46] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[15:24:46] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/Test-Account666/PlugMan
[15:24:46] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[15:24:46] [Server thread/INFO]: [PlugManX] You can disable this warning by setting 'showPaperWarning' to false in the config.yml
[15:24:46] [Server thread/INFO]: Preparing level "world"
[15:24:47] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:24:47] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:48] [Server thread/INFO]: Time elapsed: 445 ms
[15:24:48] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[15:24:48] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:48] [Server thread/INFO]: Time elapsed: 99 ms
[15:24:48] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:24:48] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:48] [Server thread/INFO]: Time elapsed: 33 ms
[15:24:48] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.5.2-SNAPSHOT
[15:24:48] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.7-1.21.8 (772)
[15:24:48] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[15:24:48] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[15:24:48] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.7-DEV-212
[15:24:48] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:24:48] [Server thread/INFO]: [packetevents] Enabling packetevents v2.10.0
[15:24:48] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[15:24:48] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.11
[15:24:48] [packetevents-update-check-thread/INFO]: [packetevents] There is an update available for PacketEvents! Your build: (2.10.0) | Latest release: (2.10.1)
[15:24:49] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-11.0.11.jar
[15:24:49] [Server thread/INFO]: [LibsDisguises] Discovered nms version (LD: v1_21_R5) (MC: 1.21.8)
[15:24:49] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1684
[15:24:49] [Server thread/INFO]: [LibsDisguises] Build Date: 30/10/2025 05:37
[15:24:49] [Server thread/INFO]: [LibsDisguises] Build Hash: org.gradle.api.internal.provider.sources.process.DefaultExecOutput@2d6d471d~1
[15:24:49] [Server thread/INFO]: [LibsDisguises] Registered to: 356207 (23)
[15:24:49] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[15:24:49] [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
[15:24:49] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_6/19...
[15:24:49] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_6/19 in 140.213756ms
[15:24:50] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[15:24:50] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[15:24:50] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[15:24:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[15:24:50] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[15:24:50] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[15:24:50] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.14+2339-43997ec
[15:24:50] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[15:24:50] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[15:24:50] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[15:24:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[15:24:50] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:24:50] [Server thread/INFO]: [BKCommonLib] [RegionFlagTracker] Region flags will be tracked from WorldGuard
[15:24:50] [Server thread/INFO]: [TAB] Enabling TAB v5.3.2
[15:24:50] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "header" defined for group "diretor". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[15:24:50] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "header" defined for group "builderplus". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[15:24:50] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "header" defined for group "admin". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[15:24:50] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "header" defined for group "dev". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[15:24:50] [Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[15:24:50] [Server thread/INFO]: [TAB] Enabled in 119ms
[15:24:50] [Server thread/INFO]: [Essentials] Enabling Essentials v2.22.0-dev+42-9985dbd
[15:24:50] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[15:24:50] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[15:24:50] [Server thread/INFO]: [Essentials] No kits found to migrate.
[15:24:50] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[15:24:50] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[15:24:50] [Server thread/INFO]: [Essentials] Loaded 45989 items from items.json.
[15:24:50] [Server thread/INFO]: [Essentials] Using locale pt_BR
[15:24:51] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[15:24:51] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[15:24:51] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[15:24:51] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[15:24:51] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.10.1-SNAPSHOT-9ca56232
[15:24:51] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.8)...
[15:24:51] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[15:24:52] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[15:24:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[15:24:52] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[15:24:52] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[15:24:52] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[15:24:53] [Server thread/INFO]: [MythicMobs] Loading Packs...
[15:24:53] [Server thread/INFO]: [MythicMobs] Loading Items...
[15:24:54] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[15:24:54] [Server thread/INFO]: [MythicMobs] All items loaded after 83ms!
[15:24:54] [Server thread/INFO]: [MythicMobs] Loading Skills...
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob p_pirate! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob p_hotairballoon! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob p_blub! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob p_blubcacti! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob p_blubshroom! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob p_blubwitherrose! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob p_blubsunflower! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob p_penguin! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob e_m_blub! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob e_m_blubcacti! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob e_m_blubshroom! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob e_m_blubwitherrose! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob e_m_blubsunflower! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_warden_debris_large! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_warden_debris_small! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_warden_blue_explosion_large! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_warden_blue_explosion_small! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_warden_dust_ring! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_warden_dust_double! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_warden_warden_shine! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_wither_skull_shoot! Invalid type specified.
[15:24:54] [Server thread/WARN]: [MythicMobs] Could not load MythicMob d_ext_b_wither_pool! Invalid type specified.
[15:24:54] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[15:24:54] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[15:24:54] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[15:24:54] [Server thread/INFO]: [MythicMobs] Second passes loaded after 16ms!
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 261 mobs.
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 926 skills.
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 84 random spawns.
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 300 mythic items.
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 drop tables.
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[15:24:54] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[15:24:54] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:24:54] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.10.1 ( build 9ca56232 ) has been successfully loaded!
[15:24:55] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[15:24:55] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[15:24:55] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.21.5
[15:24:56] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[15:24:56] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:24:56] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[15:24:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.21.5]
[15:24:56] [Server thread/INFO]: [PvPManager] Enabling PvPManager v4.0.5
[15:24:56] [Server thread/INFO]: [PvPManager] Using player nametags: true
[15:24:56] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[15:24:56] [Server thread/INFO]: [PvPManager] Players stored: 13
[15:24:56] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[15:24:56] [Server thread/INFO]: [WorldGuard] Registering session handler me.chancesd.pvpmanager.integration.hook.worldguard.WorldGuardFlagHandler
[15:24:56] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[15:24:56] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[15:24:56] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[15:24:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [4.0.5]
[15:24:56] [Server thread/INFO]: [PvPManager] LibsDisguises Found! Using it to disable disguises
[15:24:56] [Server thread/INFO]: [PvPManager] TAB Found! Using TAB to change nametags instead of scoreboards
[15:24:56] [Server thread/INFO]: [PvPManager] PvPManager v4.0.5 enabled (77 ms)
[15:24:56] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.8
[15:24:56] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R5 (1.21.8).
[15:24:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[15:24:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[15:24:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[15:24:56] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[15:24:56] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.2.0-SNAPSHOT
[15:24:56] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[15:24:56] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[15:24:56] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[15:24:56] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[15:24:59] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Checking for updates...
[15:25:00] [PvPManager Worker Thread - 0/INFO]: [PvPManager] No update found
[15:25:00] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Invalid Head found in Database: 122729
[15:25:00] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Successfully loaded 89257 heads!
[15:25:00] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[15:25:02] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:25:02] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[15:25:02] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[15:25:02] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[15:25:02] [Server thread/WARN]: [MythicMobs] --| Skill: #λ.4d0173b7-2784-4d24-9974-8c6ae61d8520 | File: /home/container/plugins/MythicMobs/items/pocketmobs/pocketmobs_all.yml
[15:25:02] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:25:02] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=ZOMBIFIED_PIGLIN;amount=1}
[15:25:02] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[15:25:02] [Server thread/WARN]: [MythicMobs] --| Skill: #λ.43fac8ff-9365-4a29-b353-8921784a0de0 | File: /home/container/plugins/MythicMobs/items/pocketmobs/pocketmobs_all.yml
[15:25:02] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:25:02] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=CAT;amount=1}
[15:25:02] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[15:25:02] [Server thread/INFO]: [MythicMobs] Loaded 300 items.
[15:25:02] [Server thread/INFO]: [MythicMobs] Loaded 3 drop tables.
[15:25:02] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.2.0 has been successfully loaded!
[15:25:02] [Server thread/INFO]: [Nexo] Enabling Nexo v1.14
[15:25:02] [Server thread/INFO]: Nexo | NMS-Version v1_21_R6 has been detected.
[15:25:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nexo [1.14]
[15:25:03] [Server thread/INFO]: Nexo | Plugin "PlaceholderAPI" detected, enabling hooks
[15:25:03] [Server thread/INFO]: Nexo | Plugin "MythicMobs" detected, enabling hooks
[15:25:03] [Server thread/INFO]: Nexo | Plugin "ModelEngine" detected, enabling hooks
[15:25:03] [Server thread/INFO]: Nexo | Plugin "WorldGuard" detected, enabling hooks
[15:25:03] [Server thread/INFO]: [HMCColor] Enabling HMCColor v2.4
[15:25:03] [Server thread/WARN]: InvalidPropertyValueException at effectItem.dyedColor on line 114, column 14: Value for 'effectItem' is invalid: Value for 'dyedColor' is invalid: Expected an object, but got a scalar value
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.fromCurrentValue(YamlMapLikeInputBase.kt:63)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.decodeSerializableValue(YamlMapLikeInputBase.kt:53)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(AbstractDecoder.kt:43)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(AbstractDecoder.kt:70)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.HMCColorConfig$$serializer.deserialize(HMCColorConfig.kt:19)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.HMCColorConfig$$serializer.deserialize(HMCColorConfig.kt:19)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.Decoder.decodeSerializableValue(Decoding.kt:258)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlInput.decodeSerializableValue(YamlInput.kt:144)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.decodeSerializableValue(YamlMapLikeInputBase.kt:51)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.Yaml.decodeFromSource(Yaml.kt:72)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.JvmYamlReadingKt.decodeFromStream(JvmYamlReading.kt:36)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.config.ConfigFormats.decode(ConfigFormats.kt:46)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.config.Config.load(Config.kt:52)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.config.Config.getOrLoad(Config.kt:41)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.config.Config.<init>(Config.kt:29)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.HMCColor.createColorContext(HMCColor.kt:72)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.HMCColor.onEnable(HMCColor.kt:19)
[15:25:03] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[15:25:03] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:25:03] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:25:03] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:25:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:666)
[15:25:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:622)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:314)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313)
[15:25:03] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[15:25:03] [Server thread/WARN]: Caused by: InvalidPropertyValueException at effectItem.dyedColor on line 114, column 14: Value for 'dyedColor' is invalid: Expected an object, but got a scalar value
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlObjectInput.decodeElementIndex(YamlObjectInput.kt:72)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.serialization.BaseSerializableItemStack$$serializer.deserialize(SerializableItemStack.kt:44)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.serialization.BaseSerializableItemStack$$serializer.deserialize(SerializableItemStack.kt:44)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.Decoder.decodeSerializableValue(Decoding.kt:258)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlInput.decodeSerializableValue(YamlInput.kt:144)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.serialization.SerializableItemStackSerializer.deserialize(SerializableItemStackSerializer.kt:30)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.serialization.SerializableItemStackSerializer.deserialize(SerializableItemStackSerializer.kt:15)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.Decoder.decodeSerializableValue(Decoding.kt:258)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlInput.decodeSerializableValue(YamlInput.kt:144)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.decodeSerializableValue$lambda$11(YamlMapLikeInputBase.kt:54)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.fromCurrentValue(YamlMapLikeInputBase.kt:60)
[15:25:03] [Server thread/WARN]:     ... 28 more
[15:25:03] [Server thread/WARN]: Caused by: IncorrectTypeException at effectItem.dyedColor on line 114, column 14: Expected an object, but got a scalar value
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlInput$Companion.createFor$kaml(YamlInput.kt:59)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlObjectInput.decodeElementIndex(YamlObjectInput.kt:64)
[15:25:03] [Server thread/WARN]:     ... 38 more
[15:25:03] [Server thread/WARN]: InvalidPropertyValueException at effectItem.dyedColor on line 114, column 14: Value for 'effectItem' is invalid: Value for 'dyedColor' is invalid: Expected an object, but got a scalar value
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.fromCurrentValue(YamlMapLikeInputBase.kt:63)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.decodeSerializableValue(YamlMapLikeInputBase.kt:53)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(AbstractDecoder.kt:43)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(AbstractDecoder.kt:70)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.HMCColorConfig$$serializer.deserialize(HMCColorConfig.kt:19)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.HMCColorConfig$$serializer.deserialize(HMCColorConfig.kt:19)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.Decoder.decodeSerializableValue(Decoding.kt:258)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlInput.decodeSerializableValue(YamlInput.kt:144)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.decodeSerializableValue(YamlMapLikeInputBase.kt:51)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.Yaml.decodeFromSource(Yaml.kt:72)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.JvmYamlReadingKt.decodeFromStream(JvmYamlReading.kt:36)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.config.ConfigFormats.decode(ConfigFormats.kt:46)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.config.Config.load(Config.kt:52)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.config.Config.getOrLoad(Config.kt:41)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.HMCColor.createColorContext(HMCColor.kt:28)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.HMCColor.onEnable(HMCColor.kt:19)
[15:25:03] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[15:25:03] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:25:03] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:25:03] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:25:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:666)
[15:25:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:622)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:314)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179)
[15:25:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313)
[15:25:03] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[15:25:03] [Server thread/WARN]: Caused by: InvalidPropertyValueException at effectItem.dyedColor on line 114, column 14: Value for 'dyedColor' is invalid: Expected an object, but got a scalar value
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlObjectInput.decodeElementIndex(YamlObjectInput.kt:72)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.serialization.BaseSerializableItemStack$$serializer.deserialize(SerializableItemStack.kt:44)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.serialization.BaseSerializableItemStack$$serializer.deserialize(SerializableItemStack.kt:44)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.Decoder.decodeSerializableValue(Decoding.kt:258)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlInput.decodeSerializableValue(YamlInput.kt:144)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.serialization.SerializableItemStackSerializer.deserialize(SerializableItemStackSerializer.kt:30)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.idofront.serialization.SerializableItemStackSerializer.deserialize(SerializableItemStackSerializer.kt:15)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.hibiscusmc.hmccolor.shaded.kotlinx.serialization.encoding.Decoder.decodeSerializableValue(Decoding.kt:258)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlInput.decodeSerializableValue(YamlInput.kt:144)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.decodeSerializableValue$lambda$11(YamlMapLikeInputBase.kt:54)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlMapLikeInputBase.fromCurrentValue(YamlMapLikeInputBase.kt:60)
[15:25:03] [Server thread/WARN]:     ... 27 more
[15:25:03] [Server thread/WARN]: Caused by: IncorrectTypeException at effectItem.dyedColor on line 114, column 14: Expected an object, but got a scalar value
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlInput$Companion.createFor$kaml(YamlInput.kt:59)
[15:25:03] [Server thread/WARN]:     at HMCColor-2.4.jar//com.charleskorn.kaml.YamlObjectInput.decodeElementIndex(YamlObjectInput.kt:64)
[15:25:03] [Server thread/WARN]:     ... 37 more
[15:25:03] [Server thread/INFO]: [SCore] Enabling SCore v5.25.11.2
[15:25:03] [Server thread/INFO]: SCore The library part of SCore is initializing ... (by SCore)
[15:25:03] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (5.25.11.2) Load After
[15:25:03] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.7-DEV-212)  Load Before
[15:25:03] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.14+2339-43997ec)  Load Before
[15:25:03] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[15:25:03] [Server thread/INFO]: SCore FastAsyncWorldEdit hooked !  (2.14.1-SNAPSHOT-1211+b49616a)  Load Before
[15:25:03] [Server thread/INFO]: SCore packetevents hooked !  (2.10.0)  Load Before
[15:25:03] [Server thread/INFO]: SCore ProtocolLib hooked !
[15:25:03] [Server thread/INFO]: SCore Locale setup: EN
[15:25:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Skipped downloading DefaultPack as it is up to date!
[15:25:03] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.21.5)  Load Before
[15:25:03] [Server thread/INFO]: SCore MythicMobs hooked !  (5.10.1-SNAPSHOT-9ca56232)  Load Before
[15:25:03] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.9.8)  Load Before
[15:25:03] [Server thread/INFO]: SCore Nexo hooked !  (1.14)  Load Before
[15:25:03] [Server thread/INFO]: SCore RoseLoot hooked !  (1.3.2) Load After
[15:25:03] [Server thread/INFO]: SCore RoseStacker hooked !  (1.5.36) Load After
[15:25:03] [Server thread/INFO]: SCore TAB hooked !  (5.3.2)  Load Before
[15:25:03] [Server thread/INFO]: SCore EcoSkills hooked !  (3.67.1) Load After
[15:25:03] [Server thread/INFO]: SCore WorldEdit hooked !  (2.14.1-SNAPSHOT-1211+b49616a)  Load Before
[15:25:03] [Server thread/INFO]: SCore CustomFishing hooked !  (2.3.16) Load After
[15:25:03] [Server thread/INFO]: SCore Language of the editor setup on EN
[15:25:03] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[15:25:03] [Server thread/INFO]: SCore Connection to the db...
[15:25:03] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[15:25:03] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[15:25:03] [Server thread/INFO]: SCore Creating table Commands if not exists...
[15:25:03] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[15:25:03] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[15:25:03] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[15:25:03] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[15:25:03] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[15:25:03] [Server thread/INFO]: SCore Creating table AbsorptionQuery if not exists...
[15:25:03] [Server thread/INFO]: SCore Creating table ATemporaryAttributesQuery if not exists...
[15:25:03] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[15:25:03] [Server thread/INFO]: ================ SCore ================
[15:25:03] [Server thread/INFO]: SCore is running on Folia
[15:25:03] [Server thread/INFO]: SCore is running on Paper or fork
[15:25:03] [Server thread/INFO]: SCore Version of the server 1.21.8-2497-a49cdb9 (MC: 1.21.8) !
[15:25:03] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[15:25:03] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[15:25:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[15:25:03] [Server thread/INFO]: ================ SCore ================
[15:25:03] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.21.10-v1
[15:25:03] [Server thread/INFO]: [My_Worlds] Loading world 'exploration'
[15:25:04] [Server thread/INFO]: Preparing start region for dimension minecraft:exploration
[15:25:04] [Server thread/INFO]: Preparing spawn area: 0%
[15:25:04] [Server thread/INFO]: Time elapsed: 136 ms
[15:25:04] [Server thread/INFO]: [WorldGuard] (exploration) TNT ignition is PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (exploration) Lighters are PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (exploration) Lava fire is PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (exploration) Fire spread is UNRESTRICTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'exploration'
[15:25:04] [Server thread/INFO]: [My_Worlds] Loading world 'flat'
[15:25:04] [Server thread/ERROR]: [MapSerializer] Could not deserialize key minecraft:fancy_oak_bees_0002 into net.minecraft.core.Holder<net.minecraft.world.level.levelgen.feature.ConfiguredFeature<?, ?>> at [feature-seeds, features]: Missing holder in ResourceKey[minecraft:root / minecraft:worldgen/configured_feature] with key ResourceKey[minecraft:worldgen/configured_feature / minecraft:fancy_oak_bees_0002]
[15:25:04] [Server thread/ERROR]: [MapSerializer] Could not deserialize key minecraft:oak_bees_0002 into net.minecraft.core.Holder<net.minecraft.world.level.levelgen.feature.ConfiguredFeature<?, ?>> at [feature-seeds, features]: Missing holder in ResourceKey[minecraft:root / minecraft:worldgen/configured_feature] with key ResourceKey[minecraft:worldgen/configured_feature / minecraft:oak_bees_0002]
[15:25:04] [Server thread/ERROR]: [MapSerializer] Could not deserialize key minecraft:seagrass_simple into net.minecraft.core.Holder<net.minecraft.world.level.levelgen.feature.ConfiguredFeature<?, ?>> at [feature-seeds, features]: Missing holder in ResourceKey[minecraft:root / minecraft:worldgen/configured_feature] with key ResourceKey[minecraft:worldgen/configured_feature / minecraft:seagrass_simple]
[15:25:04] [Server thread/ERROR]: [MapSerializer] Could not deserialize key minecraft:trees_birch_and_oak into net.minecraft.core.Holder<net.minecraft.world.level.levelgen.feature.ConfiguredFeature<?, ?>> at [feature-seeds, features]: Missing holder in ResourceKey[minecraft:root / minecraft:worldgen/configured_feature] with key ResourceKey[minecraft:worldgen/configured_feature / minecraft:trees_birch_and_oak]
[15:25:04] [Server thread/INFO]: Preparing start region for dimension minecraft:flat
[15:25:04] [Server thread/INFO]: Preparing spawn area: 0%
[15:25:04] [Server thread/INFO]: Time elapsed: 235 ms
[15:25:04] [Server thread/INFO]: [WorldGuard] (flat) TNT ignition is PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (flat) Lighters are PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (flat) Lava fire is PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (flat) Fire spread is UNRESTRICTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flat'
[15:25:04] [Server thread/INFO]: [My_Worlds] Loading world 'novospawn_flat'
[15:25:04] [Server thread/ERROR]: [MapSerializer] Could not deserialize key minecraft:fancy_oak_bees_0002 into net.minecraft.core.Holder<net.minecraft.world.level.levelgen.feature.ConfiguredFeature<?, ?>> at [feature-seeds, features]: Missing holder in ResourceKey[minecraft:root / minecraft:worldgen/configured_feature] with key ResourceKey[minecraft:worldgen/configured_feature / minecraft:fancy_oak_bees_0002]
[15:25:04] [Server thread/ERROR]: [MapSerializer] Could not deserialize key minecraft:oak_bees_0002 into net.minecraft.core.Holder<net.minecraft.world.level.levelgen.feature.ConfiguredFeature<?, ?>> at [feature-seeds, features]: Missing holder in ResourceKey[minecraft:root / minecraft:worldgen/configured_feature] with key ResourceKey[minecraft:worldgen/configured_feature / minecraft:oak_bees_0002]
[15:25:04] [Server thread/ERROR]: [MapSerializer] Could not deserialize key minecraft:seagrass_simple into net.minecraft.core.Holder<net.minecraft.world.level.levelgen.feature.ConfiguredFeature<?, ?>> at [feature-seeds, features]: Missing holder in ResourceKey[minecraft:root / minecraft:worldgen/configured_feature] with key ResourceKey[minecraft:worldgen/configured_feature / minecraft:seagrass_simple]
[15:25:04] [Server thread/ERROR]: [MapSerializer] Could not deserialize key minecraft:trees_birch_and_oak into net.minecraft.core.Holder<net.minecraft.world.level.levelgen.feature.ConfiguredFeature<?, ?>> at [feature-seeds, features]: Missing holder in ResourceKey[minecraft:root / minecraft:worldgen/configured_feature] with key ResourceKey[minecraft:worldgen/configured_feature / minecraft:trees_birch_and_oak]
[15:25:04] [Server thread/INFO]: Preparing start region for dimension minecraft:novospawn_flat
[15:25:04] [Server thread/INFO]: Preparing spawn area: 0%
[15:25:04] [Server thread/INFO]: Time elapsed: 229 ms
[15:25:04] [Server thread/INFO]: [WorldGuard] (novospawn_flat) TNT ignition is PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (novospawn_flat) Lighters are PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (novospawn_flat) Lava fire is PERMITTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] (novospawn_flat) Fire spread is UNRESTRICTED.
[15:25:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'novospawn_flat'
[15:25:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.21.10-v1]
[15:25:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.21.10-v1]
[15:25:05] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[15:25:05] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.21.10-v1 (build: 338) enabled! (1.445s)
[15:25:05] [Server thread/INFO]: [EcoSkills] Enabling EcoSkills v3.67.1
[15:25:05] [Server thread/INFO]: [EcoSkills] Loading EcoSkills
[15:25:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoskills [3.67.1]
[15:25:05] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.4.3
[15:25:05] [Server thread/INFO]: [VotifierPlus] Votifier enabled.
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Enabling HibiscusCommons v0.7.2
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Detected Paper! Enabling Paper support...
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into CustomFishing
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into PlaceholderAPI
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into GSit
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into ModelEngine
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into mythicmobs
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into LibsDisguises
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into Eco
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into HMCCosmetics
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into nexo
[15:25:05] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into HMCColor
[15:25:05] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v5.25.11.2
[15:25:05] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[15:25:05] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Hut) >> Options available: https://docs.ssomar.com/
[15:25:05] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test) >> Options available: https://docs.ssomar.com/
[15:25:05] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test2) >> Options available: https://docs.ssomar.com/
[15:25:05] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Prem_Target) >> Options available: https://docs.ssomar.com/
[15:25:05] [Server thread/INFO]: ExecutableBlocks Amount of Executable Blocks configurations loaded: 22
[15:25:05] [Server thread/INFO]: ExecutableBlocks There are: 0 ExecutableBlock placed configs to load.
[15:25:05] [Server thread/INFO]: ExecutableBlocks 0 ExecutableBlock(s)Placed loaded !
[15:25:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableBlocks [1.0.0]
[15:25:05] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[15:25:05] [Server thread/INFO]: [CustomFishing] Enabling CustomFishing v2.3.16
[15:25:05] [Server thread/INFO]: [CustomFishing] Nexo hooked!
[15:25:05] [Server thread/INFO]: [CustomFishing] MythicMobs hooked!
[15:25:05] [Server thread/INFO]: [CustomFishing] EcoSkills hooked!
[15:25:05] [Server thread/INFO]: [CustomFishing] CustomCrops hooked!
[15:25:05] [Server thread/INFO]: [CustomFishing] Vault hooked!
[15:25:05] [Server thread/INFO]: [CustomFishing] WorldGuard hooked!
[15:25:05] [Server thread/INFO]: [CustomFishing] PlaceholderAPI hooked!
[15:25:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customfishing [2.2]
[15:25:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cfcompetition [2.2]
[15:25:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fishingstats [2.2]
[15:25:06] [Server thread/INFO]: [Reforges] Enabling Reforges v6.78.0
[15:25:06] [Server thread/INFO]: [Reforges] Loading Reforges
[15:25:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: reforges [6.78.0]
[15:25:06] [Server thread/INFO]: [Talismans] Enabling Talismans v6.77.0
[15:25:06] [Server thread/INFO]: [Talismans] Loading Talismans
[15:25:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: talismans [6.77.0]
[15:25:06] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.8.4
[15:25:06] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[15:25:06] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[15:25:06] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[15:25:06] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: Português  Author: dotJunyo
[15:25:06] [Server thread/INFO]: [MarriageMaster] MarriageMaster-Connection-Pool - Starting...
[15:25:06] [Server thread/INFO]: [MarriageMaster] MarriageMaster-Connection-Pool - Start completed.
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Loading marriages ...
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Marriages loaded
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Loading priests ...
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Priests loaded
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Loading players ...
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Players loaded
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Loading marriages into cache ...
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Marriages loaded into cache
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Loading homes ...
[15:25:06] [Thread-22/INFO]: [MarriageMaster] Homes loaded
[15:25:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.8.4]
[15:25:06] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[15:25:06] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[15:25:06] [Server thread/INFO]: [EssentialsDiscord] Enabling EssentialsDiscord v2.22.0-dev+42-9985dbd
[15:25:06] [Server thread/INFO]: [EssentialsDiscord] Starting Metrics. Opt-out using the global bStats config.
[15:25:06] [Server thread/INFO]: [EssentialsDiscord] Tentando acessar o Discord...
[15:25:07] [Server thread/INFO]: [net.essentialsx.dep.net.dv8tion.jda.api.JDA] Login Successful!
[15:25:08] [JDA MainWS-ReadThread/INFO]: [net.essentialsx.dep.net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[15:25:08] [JDA MainWS-ReadThread/INFO]: [net.essentialsx.dep.net.dv8tion.jda.api.JDA] Finished Loading!
[15:25:08] [Server thread/INFO]: [EssentialsDiscord] Sessão iniciada com sucesso como CrafTIT Hook#5856
[15:25:08] [Server thread/INFO]: [Nascraft] Enabling Nascraft v1.9.2
[15:25:08] [Server thread/WARN]: [Nascraft] AdvancedGUI is not installed! You won't have graphs in-game without it!
[15:25:08] [Server thread/WARN]: [Nascraft] Learn more about AdvancedGUI here: https://www.spigotmc.org/resources/83636/
[15:25:08] [Server thread/INFO]: [Nascraft] PlaceholderAPI detected!
[15:25:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nascraft [1.9.2]
[15:25:08] [Server thread/INFO]: [Nascraft] Loaded 7 categories.
[15:25:08] [Server thread/INFO]: [Nascraft] Checking external web directory: plugins/Nascraft/web
[15:25:08] [Server thread/INFO]: [Nascraft] External web files are present.
[15:25:08] [Server thread/INFO]: [SimpleAlias] Enabling SimpleAlias v1.6.4
[15:25:09] [Server thread/INFO]: [SimpleAlias] Language en loaded.
[15:25:09] [Server thread/INFO]: [SimpleAlias] Vault detected and hooked. (permission and economy)
[15:25:09] [Server thread/INFO]: [SimpleAlias] 0 cooldown maps loaded.
[15:25:09] [Server thread/INFO]: [SimpleAlias] 0 aliases loaded.
[15:25:09] [Server thread/INFO]: [SimpleAlias] This plugin is using Metrics by BtoBastian.
[15:25:09] [Server thread/INFO]: [SimpleAlias] Plugin version 1.6.4 enabled! (24 ms)
[15:25:09] [Server thread/INFO]: [SimpleAlias] There is no update available.
[15:25:09] [Server thread/INFO]: [GSit] Enabling GSit v3.0.1
[15:25:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [3.0.1]
[15:25:09] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[15:25:09] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[15:25:09] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[15:25:09] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[15:25:09] [Server thread/INFO]: [WildRTP] Enabling WildRTP v2.6.1
[15:25:09] [Server thread/INFO]: [WildRTP] WildRTP by Joni
[15:25:09] [Server thread/INFO]: [WildRTP] Thank you for using my plugin!
[15:25:09] [Server thread/INFO]: [Boombox] Enabling Boombox v3.1.9
[15:25:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: boombox [3.0]
[15:25:09] [Server thread/INFO]:  
[15:25:09] [Server thread/INFO]:  ___  ___   ___  __  __ ___  _____  __
[15:25:09] [Server thread/INFO]: | _ )/ _ \ / _ \|  \/  | _ )/ _ \ \/ /
[15:25:09] [Server thread/INFO]: | _ \ (_) | (_) | |\/| | _ \ (_) >  <
[15:25:09] [Server thread/INFO]: |___/\___/ \___/|_|  |_|___/\___/_/\_\
[15:25:09] [Server thread/INFO]:  
[15:25:09] [Server thread/INFO]: Allows you to play .nbs format music in minecraft! Listen to the radio, records and carry a boombox with you at all times!
[15:25:09] [Server thread/INFO]: Version: 3.1.9
[15:25:09] [Server thread/INFO]: Author: MineShimado
[15:25:09] [Server thread/INFO]:  
[15:25:09] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.19
[15:25:09] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[15:25:09] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[15:25:09] [Server thread/INFO]: [com.bencodez.votingplugin.simpleapi.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:25:09] [Server thread/INFO]: [com.bencodez.votingplugin.simpleapi.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@23d3d37d
[15:25:09] [Server thread/INFO]: [com.bencodez.votingplugin.simpleapi.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:25:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[15:25:09] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[15:25:09] [Thread-28/INFO]: [WildRTP] You are running the latest version!
[15:25:09] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[15:25:09] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.19
[15:25:09] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.5-SNAPSHOT
[15:25:09] [Server thread/INFO]: [MCPets] : Language file reloaded.
[15:25:09] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[15:25:09] [Server thread/INFO]: Loading pets... 
[15:25:09] [Server thread/INFO]: [MCPets] : 0 pets registered successfully !
[15:25:09] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[15:25:09] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[15:25:09] [Server thread/INFO]:       Plugin made by Nocsy     
[15:25:09] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[15:25:09] [Server thread/INFO]: -=- Launching Flags -=-
[15:25:09] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[15:25:09] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[15:25:09] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[15:25:09] [Server thread/INFO]: 3 flags launched.
[15:25:09] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v2.0.1-SNAPSHOT
[15:25:09] [Server thread/INFO]: [MythicDungeons] Using PaperListener...
[15:25:09] [Server thread/INFO]: [MythicDungeons] Using default parties! Enabled party support.
[15:25:09] [Server thread/INFO]: [MythicDungeons] MythicMobs plugin found! Enabled MythicMobs support.
[15:25:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: md [2.0.1]
[15:25:10] [Server thread/INFO]: [MythicDungeons] * Loaded 37 functions.
[15:25:10] [Server thread/INFO]: [MythicDungeons] * Loaded 14 triggers.
[15:25:10] [Server thread/INFO]: [MythicDungeons] * Loaded 9 conditions.
[15:25:10] [Server thread/INFO]: [MythicDungeons] GUI menus initialized!
[15:25:10] [Server thread/INFO]: [MythicDungeons] Mythic Dungeons v2.0.1 initialized! Happy dungeon-ing!
[15:25:10] [Server thread/INFO]: [My_Worlds] Mythic Dungeons detected: dungeon instances will automatically share inventory settings
[15:25:10] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.22.0-dev+42-9985dbd
[15:25:10] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/.
[15:25:10] [Server thread/INFO]: [EssentialsGeoIP] Starting Metrics. Opt-out using the global bStats config.
[15:25:10] [Server thread/INFO]: [AdvancedSpyInventory] Enabling AdvancedSpyInventory v2.4.11
[15:25:10] [Server thread/INFO]: [HMCCosmetics] Enabling HMCCosmetics v2.8.1
[15:25:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: HMCCosmetics [2.8.1]
[15:25:10] [Server thread/INFO]: [HMCCosmetics] Successfully Enabled HMCCosmetics
[15:25:10] [Server thread/INFO]: [HMCCosmetics] 16 Cosmetics Successfully Setup
[15:25:10] [Server thread/INFO]: [HMCCosmetics] 4 Menus Successfully Setup
[15:25:10] [Server thread/INFO]: [HMCCosmetics] 1 Wardrobes Successfully Setup
[15:25:10] [Server thread/INFO]: [HMCCosmetics] Data storage is set to MYSQL
[15:25:10] [Server thread/INFO]: [NexoAddon] Enabling NexoAddon v1.14.0
[15:25:10] [Server thread/INFO]: [NexoAddon] [ACF] Enabled Asynchronous Tab Completion Support!
[15:25:10] [Server thread/INFO]: [NexoAddon] NexoAddon enabled!
[15:25:10] [Server thread/INFO]: [ZetaHoppers] Enabling ZetaHoppers v1.0-1.13.2
[15:25:10] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.22.0-dev+42-9985dbd
[15:25:10] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[15:25:10] [Server thread/INFO]: [Vegas] Enabling Vegas v2.0
[15:25:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vegas [1.0]
[15:25:11] [Server thread/INFO]: [Actions] Enabling Actions v2.77.0
[15:25:11] [Server thread/INFO]: [Actions] Loading Actions
[15:25:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: actions [2.77.0]
[15:25:11] [Server thread/INFO]: [EnchantNow] Enabling EnchantNow v1.0.10-a
[15:25:11] [Server thread/INFO]: [EnchantNow] Found EcoEnchants, enabling EcoEnchants integration...
[15:25:11] [Server thread/INFO]: [CustomCrops] Enabling CustomCrops v3.6.45.1
[15:25:11] [Server thread/INFO]: [CustomCrops] Nexo hooked!
[15:25:11] [Server thread/INFO]: [CustomCrops] Vault hooked!
[15:25:11] [Server thread/INFO]: [CustomCrops] PlaceholderAPI hooked!
[15:25:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrops [3.6]
[15:25:11] [Server thread/INFO]: [CustomCrops] WorldGuard hooked!
[15:25:11] [Server thread/INFO]: [CustomCrops] MythicMobs hooked!
[15:25:12] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.6
[15:25:12] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 1ms)
[15:25:12] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_21_8R1!
[15:25:12] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.32.1
[15:25:12] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[15:25:12] [customcrops-worker-3/INFO]: [CustomCrops] You are using the latest version.
[15:25:14] [Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[15:25:19] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[15:25:19] [Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[15:25:19] [Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[15:25:19] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[15:25:19] [Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[15:25:19] [Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[15:25:19] [Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[15:25:19] [Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[15:25:20] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[15:25:20] [Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[15:25:20] [Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[15:25:20] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.2.0
[15:25:20] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.14+2339-43997ec
[15:25:20] [Server thread/INFO]: [ChestSort] Use permissions: true
[15:25:20] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[15:25:20] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[15:25:20] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[15:25:20] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[15:25:20] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[15:25:20] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[15:25:20] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[15:25:20] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[15:25:20] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[15:25:20] [Server thread/INFO]: [ChestSort] Check for updates: false
[15:25:20] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[15:25:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.2.0]
[15:25:20] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.3
[15:25:20] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-Release
[15:25:20] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[15:25:20] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[15:25:20] [Server thread/INFO]: [DeluxeMenus] 8 GUI menus loaded!
[15:25:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-Release]
[15:25:20] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[15:25:20] [Server thread/INFO]: [EcoScrolls] Enabling EcoScrolls v1.13.0
[15:25:20] [Server thread/INFO]: [EcoScrolls] Loading EcoScrolls
[15:25:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoscrolls [1.13.0]
[15:25:20] [Server thread/INFO]: [RoseLoot] Enabling RoseLoot v1.3.2
[15:25:21] [Server thread/INFO]: [RoseLoot] Data handler connected using SQLite.
[15:25:21] [Server thread/INFO]: [EcoShop] Enabling EcoShop v1.38.0
[15:25:21] [Server thread/INFO]: [EcoShop] Loading EcoShop
[15:25:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoshop [1.38.0]
[15:25:21] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.36
[15:25:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.36]
[15:25:22] [Server thread/INFO]: [RoseChat] Enabling RoseChat vBeta-38
[15:25:22] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:25:22] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:25:22] [Server thread/INFO]: [RoseChat] Data handler connected using MySQL.
[15:25:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosechat [Beta-38]
[15:25:22] [Server thread/INFO]: [AxTrade] Enabling AxTrade v1.20.4
[15:25:22] [Server thread/INFO]: [AxTrade] Hooked into Vault!
[15:25:22] [Server thread/INFO]: [AxTrade] Loaded plugin!
[15:25:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axtrade [1.20.4]
[15:25:22] [Server thread/INFO]: [NextTasks] Enabling NextTasks v1.1.0
[15:25:22] [Server thread/INFO]: [NextTasks] Iniciando carregamento do plugin.
[15:25:22] [Server thread/WARN]: [NextTasks] Could not save tasks.yml to plugins/NextTasks/tasks.yml because tasks.yml already exists.
[15:25:22] [Server thread/INFO]: [org.quartz.impl.StdSchedulerFactory] Using default implementation for ThreadExecutor
[15:25:22] [Server thread/INFO]: [org.quartz.simpl.SimpleThreadPool] Job execution threads will use class loader of thread: Server thread
[15:25:22] [Server thread/INFO]: [org.quartz.core.SchedulerSignalerImpl] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
[15:25:22] [Server thread/INFO]: [org.quartz.core.QuartzScheduler] Quartz Scheduler v.2.3.2 created.
[15:25:22] [Server thread/INFO]: [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
[15:25:22] [Server thread/INFO]: [org.quartz.core.QuartzScheduler] Scheduler meta-data: Quartz Scheduler (v2.3.2) 'DefaultQuartzScheduler' with instanceId 'NON_CLUSTERED'
  Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  NOT STARTED.
  Currently in standby mode.
  Number of jobs executed: 0
  Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.

[15:25:22] [Server thread/INFO]: [org.quartz.impl.StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
[15:25:22] [Server thread/INFO]: [org.quartz.impl.StdSchedulerFactory] Quartz scheduler version: 2.3.2
[15:25:22] [Server thread/INFO]: [org.quartz.core.QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
[15:25:22] [Server thread/INFO]: [NextTasks] Métrica de uso habilitada com sucesso.
[15:25:22] [Server thread/INFO]: [NextTasks] Plugin inicializado com sucesso. (64.39 ms)
[15:25:22] [Server thread/INFO]: [AntiNetherRoof] Enabling AntiNetherRoof v1.2.5
[15:25:22] [Server thread/INFO]: AntiNetherRoof 1.2.5
[15:25:22] [Server thread/INFO]: Developer: Discord: iAngry#0932 Spigot: gregoryg
[15:25:22] [Server thread/INFO]: Enabled
[15:25:22] [Server thread/INFO]: [net.essentialsx.discordlink.EssentialsDiscordLink] Enabling EssentialsDiscordLink v2.22.0-dev+42-9985dbd
[15:25:22] [Server thread/INFO]: [net.essentialsx.discordlink.EssentialsDiscordLink] Starting Metrics. Opt-out using the global bStats config.
[15:25:22] [Server thread/INFO]: [HMCRewards] Enabling HMCRewards v0.5.3
[15:25:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hmcrewards [0.5.3]
[15:25:22] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[15:25:22] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:25:22] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:25:23] [Server thread/INFO]: [AdvancedBan] AdvancedBan >> Failed to register command mute
[15:25:23] [Server thread/INFO]: [AdvancedBan] AdvancedBan >> Failed to register command unmute
[15:25:23] [Server thread/INFO]: 
[15:25:23] [Server thread/INFO]:  
[15:25:23] [Server thread/INFO]: []=====[Enabling AdvancedBan]=====[]
[15:25:23] [Server thread/INFO]: | Information:
[15:25:23] [Server thread/INFO]: |   Name: AdvancedBan
[15:25:23] [Server thread/INFO]: |   Developer: Leoko
[15:25:23] [Server thread/INFO]: |   Version: 2.3.0
[15:25:23] [Server thread/INFO]: |   Storage: MySQL (external)
[15:25:23] [Server thread/INFO]: | Support:
[15:25:23] [Server thread/INFO]: |   Github: https://github.com/DevLeoko/AdvancedBan/issues
[15:25:23] [Server thread/INFO]: |   Discord: https://discord.gg/ycDG6rS
[15:25:23] [Server thread/INFO]: | Twitter: @LeokoGar
[15:25:23] [Server thread/INFO]: | Update:
[15:25:23] [Server thread/INFO]: |   You have the newest version
[15:25:23] [Server thread/INFO]: []================================[]
[15:25:23] [Server thread/INFO]:  
[15:25:23] [Server thread/INFO]: [libreforge] Enabling libreforge v4.79.0
[15:25:23] [Server thread/INFO]: [libreforge] Loading libreforge
[15:25:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.79.0]
[15:25:23] [Server thread/INFO]: [libreforge] Loaded integrations: AxTrade, TAB, CustomFishing, CustomCrops, MythicMobs, ModelEngine, Vault, WorldGuard
[15:25:23] [Server thread/INFO]: [libreforge] 
[15:25:23] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[15:25:23] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[15:25:23] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[15:25:23] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[15:25:23] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[15:25:23] [Server thread/INFO]: [libreforge] 
[15:25:23] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[15:25:23] [Server thread/INFO]: [libreforge] 
[15:25:23] [Server thread/INFO]: [spark] Starting background profiler...
[15:25:23] [Server thread/INFO]: [TreasureMapsPlus] Reloading the server resources to apply treasure map changes...
[15:25:23] [Server thread/INFO]: Loaded 1353 recipes
[15:25:23] [Server thread/INFO]: Loaded 1520 advancements
[15:25:23] [Server thread/INFO]: [TreasureMapsPlus] Found and replaced 3 loot tables with a treasure map
[15:25:23] [Server thread/INFO]: [TreasureMapsPlus] Found and replaced 1 villager trades with a treasure map
[15:25:23] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:25:23] [Server thread/INFO]: Done preparing level "world" (37.046s)
[15:25:24] [Server thread/INFO]: Running delayed init tasks
[15:25:24] [Craft Scheduler Thread - 11 - Essentials/INFO]: [Essentials] Sistema | Buscando informações da versão...
[15:25:24] [Craft Scheduler Thread - 9 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[15:25:24] [Craft Scheduler Thread - 23 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[15:25:24] [ForkJoinPool.commonPool-worker-3/INFO]: [ModelEngine] [A] 
[15:25:24] [ForkJoinPool.commonPool-worker-3/INFO]: [ModelEngine] [A] [Importing models]
[15:25:24] [Craft Scheduler Thread - 35 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:25:24] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Awaiting ModelEngine ResourcePack...
[15:25:24] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[15:25:24] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[15:25:24] [ForkJoinPool.commonPool-worker-3/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[15:25:24] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing bulb.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing beaver.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing cannon.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing bulb_shroom.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing bulb_witherrose.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing bulb_sunflower.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing bat.bbmodel.
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] Importing bunny_white.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing bulb_cacti.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing capybara.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing capybara_giant.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing catapult_boulder.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing catapult.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing blackbear.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing catapult_part.bbmodel.
[15:25:24] [pool-26-thread-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [Craft Scheduler Thread - 35 - Vault/INFO]: [Vault] No new version available
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing chibidracula.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing chibifrankenstein.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing chick_yellow.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing cat2.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing creeper_badlands.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing chibipumpkin.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing creeper_bamboo.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing creeper_beach.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing concussion.bbmodel.
[15:25:24] [pool-26-thread-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing creeper_cave.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing creeper_dark_oak.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing cat3.bbmodel.
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] Importing cat6.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing cat_fallen.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing creeper_dripstone.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing creeper_hills.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing cat4.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing creeper_desert.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing cat5.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing creeper_snowy.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing creeper_spruce.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing cat1.bbmodel.
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] Importing creeper_mushroom.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing creeper_savannah.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing corgi.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing creeper_swamp.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing creeper_plains.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing creeper_jungle.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing deadbeard_blank.bbmodel.
[15:25:24] [pool-26-thread-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing driftkart_100.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing deadbeard_pet.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing driftkart_blue.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing driftkart_green.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing driftkart_esmeralda.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing crow.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing driftkart_orange.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing driftkart_pink.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing driftkart_red.bbmodel.
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] Importing driftkart_gray.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing driftkart_purple.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing eternal_wheel.bbmodel.
[15:25:24] [pool-26-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing driftkart_tan.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing driftkart_yellow.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing driftkart_rainbow.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing driftkart_tropicalia.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing driftkart_yelow.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing driftkart_pastel.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing flowering_glare.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing fox_cavalier_parts.bbmodel.
[15:25:24] [pool-26-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing firebat.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing duck.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing elk.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing gambozino_beige.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing gambozino_black.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing fox_knight.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing forester_1.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing gambozino_orange.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing glare.bbmodel.
[15:25:24] [Server thread/INFO]: Nexo | PackServer set to POLYMATH
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing giant_turtle_coconut.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing fox_cavalier.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing gambozino_blue.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing gambozino_green.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing giant_turtle_parts.bbmodel.
[15:25:24] [pool-26-thread-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing gambozino_white.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing gryffin_whirlwind.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing gravestone.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing golem_stone_minion.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing golem_stone.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing giant_turtle_baby.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing herobrine_axe.bbmodel.
[15:25:24] [pool-26-thread-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing hermitcrab.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing hedgehog.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing herobrine_bobber.bbmodel.
[15:25:24] [pool-26-thread-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing horse_glacial.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing horse_spartan.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing herobrine_bits.bbmodel.
[15:25:24] [pool-26-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing horse_magma.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing hotairballoon_blue.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing horse_unicorn.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing horse_pegasus.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing irongolem_baby.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing ice_golem.bbmodel.
[15:25:24] [pool-26-thread-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:ice_golem/packed_ice contains non [a-z0-9/._-] characters. Using alternative texture name modelengine:entity/20503943-3b5c-3fab-88af-f5ba57601ffc.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing judicator.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing giant_turtle.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing lich_king_scythe.bbmodel.
[15:25:24] [pool-26-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing herobrine.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing leech.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing icebear.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing gryffin.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing mimic.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing mosquito.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing mouse.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing gryffin_corvid.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing m_whiteotter.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing kitsune_normal.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing plant_bug.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing lich_king.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing plant_carnivore.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing otter.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing owl.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing plant_seed.bbmodel.
[15:25:24] [pool-26-thread-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing plant_bugenguin.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing owl_shinobi.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing plant_vineroot.bbmodel.
[15:25:24] [pool-26-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing kitsune_demonic.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing plant_shrub.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing rat_cheesy_potion.bbmodel.
[15:25:24] [pool-26-thread-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing necromancer.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing plant_thornspitter.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing plant_mutantvine.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing shadow_fx.bbmodel.
[15:25:24] [pool-26-thread-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing plant_guardian.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing sirigueijo_baby.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing scorpion.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing rat.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing rocky.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing plant_mutantflower.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing skeletal_minion.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing skeleton_archer.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing skog_chomp.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing skog_leaf.bbmodel.
[15:25:24] [pool-26-thread-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing rat_sewer.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing skeleton_shaman.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing skeletonswordsman_parts.bbmodel.
[15:25:24] [pool-26-thread-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing skeleton_warrior.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing skog_roots2.bbmodel.
[15:25:24] [pool-26-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing skog_pet.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing skog_roots.bbmodel.
[15:25:24] [Craft Scheduler Thread - 13 - RoseStacker/INFO]: [RoseStacker] Fetched 137 translation locales.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing snail.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing rat_cheesy.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing slime.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing trainingdummy_2.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing squirrel.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing skog_sapling.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing sirigueijo.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing urro_mace.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing spider.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing warden_baby_chestglow.bbmodel.
[15:25:24] [pool-26-thread-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing vulture.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing warden_debris_large.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing warden_dust_double.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing warden_debris_small.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing warden_dust_ring.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing warden_explosion_small.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing warden_shine_vfx.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing warden_explosion.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing skog.bbmodel.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing will_o_wisp.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing urrito.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing wither_pool.bbmodel.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing wither_skull.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing urro_parts.bbmodel.
[15:25:24] [pool-26-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing witchbroom.bbmodel.
[15:25:24] [Craft Scheduler Thread - 11 - Essentials/WARN]: [Essentials] Sistema | Você está com 1 dev build(s) do EssentialsX desatualizado!
[15:25:24] [Craft Scheduler Thread - 11 - Essentials/WARN]: [Essentials] Sistema | Baixe-a aqui: https://essentialsx.net/downloads.html
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing wither_skull_2ndphase.bbmodel.
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] Importing ender_dragon.bbmodel.
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] Importing yeti_icespikes.bbmodel.
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] Importing yeti_snowball.bbmodel.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing werewolf_baby.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing wither_still.bbmodel.
[15:25:24] [pool-26-thread-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/toro_wither already exists. Using alternative texture name modelengine:entity/462de507-ce80-343a-a839-13cb7fdcdb23.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing skeletonswordsman.bbmodel.
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-4/INFO]: [ModelEngine] [A] Importing warden_baby.bbmodel.
[15:25:24] [pool-26-thread-4/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/teeny_warden_texture already exists. Using alternative texture name modelengine:entity/3aa3f1aa-6c80-3906-b68e-f13ab2ec44b5.
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-9/INFO]: [ModelEngine] [A] Importing yeti_snowball_parts.bbmodel.
[15:25:24] [pool-26-thread-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-2/INFO]: [ModelEngine] [A] Importing zombie_giant.bbmodel.
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-6/INFO]: [ModelEngine] [A] Importing internal_fire.bbmodel.
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-1/INFO]: [ModelEngine] [A] Importing wither.bbmodel.
[15:25:24] [pool-26-thread-1/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/toro_wither already exists. Using alternative texture name modelengine:entity/239480aa-95af-32e4-a402-931a668b3680.
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-7/INFO]: [ModelEngine] [A] Importing yeti.bbmodel.
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-8/INFO]: [ModelEngine] [A] Importing zombie_rat.bbmodel.
[15:25:24] [Craft Scheduler Thread - 27 - RoseStacker/INFO]: [RoseStacker] An update for RoseStacker (v1.5.37) is available! You are running v1.5.36.
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-10/INFO]: [ModelEngine] [A] Importing wither_terror.bbmodel.
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-3/INFO]: [ModelEngine] [A] Importing warden.bbmodel.
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:24] [pool-26-thread-5/INFO]: [ModelEngine] [A] Importing urro.bbmodel.
[15:25:24] [pool-26-thread-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/oog already exists. Using alternative texture name modelengine:entity/dbace73d-31c0-354e-8a01-4601564c7da1.
[15:25:24] [Server thread/INFO]: [HMCCosmetics] Successfully Enabled HMCCosmetics
[15:25:24] [Server thread/INFO]: [HMCCosmetics] 16 Cosmetics Successfully Setup
[15:25:24] [Server thread/INFO]: [HMCCosmetics] 4 Menus Successfully Setup
[15:25:24] [Server thread/INFO]: [HMCCosmetics] 1 Wardrobes Successfully Setup
[15:25:24] [Server thread/INFO]: [HMCCosmetics] Data storage is set to MYSQL
[15:25:24] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [me.bounser.web.libs.javalin.Javalin] Starting Javalin ...
[15:25:24] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [org.eclipse.jetty.server.Server] jetty-11.0.25; built: 2025-03-13T00:15:57.301Z; git: a2e9fae3ad8320f2a713d4fa29bba356a99d1295; jvm 21.0.9+10-LTS
[15:25:24] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [org.eclipse.jetty.server.session.DefaultSessionIdManager] Session workerName=node0
[15:25:24] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [org.eclipse.jetty.server.handler.ContextHandler] Started o.e.j.s.ServletContextHandler@5319f775{/,null,AVAILABLE}
[15:25:24] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [org.eclipse.jetty.server.AbstractConnector] Started ServerConnector@27dd7593{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
[15:25:24] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [org.eclipse.jetty.server.Server] Started Server@65faf403{STARTING}[11.0.25,sto=0] @68305ms
[15:25:24] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [me.bounser.web.libs.javalin.Javalin] Javalin started in 509ms \o/
[15:25:24] [Craft Scheduler Thread - 25 - RoseLoot/INFO]: [RoseLoot] An update for RoseLoot (v1.4.0) is available! You are running v1.3.2.
[15:25:24] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [me.bounser.web.libs.javalin.Javalin] Static file handler added: StaticFileConfig(hostedPath=/, directory=plugins/Nascraft/web, location=EXTERNAL, precompress=false, aliasCheck=null, headers={Cache-Control=max-age=0}, skipFileFunction=Function1<jakarta.servlet.http.HttpServletRequest, java.lang.Boolean>, mimeTypes={}). File system location: 'plugins/Nascraft/web'
[15:25:25] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [me.bounser.web.libs.javalin.Javalin] Listening on http://localhost:8080/
[15:25:25] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [me.bounser.web.libs.javalin.Javalin] You are running Javalin 6.6.0 (released April 13, 2025. Your Javalin version is 217 days old. Consider checking for a newer version.).
[15:25:25] [Craft Scheduler Thread - 17 - Nascraft/INFO]: [Nascraft] Web server started successfully on port 8080
[15:25:25] [pool-26-thread-5/INFO]: [ModelEngine] [A] 
[15:25:25] [pool-26-thread-5/INFO]: [ModelEngine] [A] Resource pack zipped.
[15:25:25] [pool-26-thread-5/INFO]: [ModelEngine] [A] Generator Profiled:
[15:25:25] [pool-26-thread-5/INFO]: [ModelEngine] [A]  - Import Phase: 554.5ms
[15:25:25] [pool-26-thread-5/INFO]: [ModelEngine] [A]  - Assets Phase: 660.6ms
[15:25:25] [pool-26-thread-5/INFO]: [ModelEngine] [A]  - Zipping Phase: 692.9ms
[15:25:25] [pool-26-thread-5/INFO]: Nexo | ModelEngine ResourcePack is ready.
[15:25:25] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Generating resourcepack...
[15:25:25] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Importing DefaultPack...
[15:25:25] [Server thread/WARN]: [CustomFishing] Illegal weight operation: orange +5
[15:25:25] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Importing external-pack ItemsAdder...
[15:25:25] [Server thread/INFO]: [CustomCrops] Registry access has been frozen
[15:25:25] [Server thread/INFO]: [CustomCrops] CustomFishing hooked!
[15:25:25] [Server thread/INFO]: [CustomCrops] EcoSkills hooked!
[15:25:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.32.1]
[15:25:26] [Server thread/INFO]: [RoseLoot] Registered 218 loot table conditions.
[15:25:26] [Server thread/INFO]: [RoseLoot] Registered 11 loot table types.
[15:25:26] [Server thread/INFO]: [RoseLoot] Registered 26 loot item types.
[15:25:26] [Server thread/INFO]: [RoseLoot] Loaded 62 loot tables.
[15:25:26] [Server thread/INFO]: Chat | Loaded RoseChat channels: guia, global, staff, local
[15:25:26] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Removed core-shaders from ModelEngine-ResourcePack...
[15:25:26] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Imported ModelEngine pack successfully!
[15:25:26] [Server thread/ERROR]: [EcoSkills] 
[15:25:26] [Server thread/ERROR]: [EcoSkills] Invalid configuration found at Skill enchanting xp-gain-methods:
[15:25:26] [Server thread/ERROR]: [EcoSkills] (Cause) Argument 'trigger'
[15:25:26] [Server thread/ERROR]: [EcoSkills] (Reason) Invalid trigger ID specified!
[15:25:26] [Server thread/ERROR]: [EcoSkills] 
[15:25:27] [Server thread/INFO]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[15:25:27] [Server thread/INFO]: [HMCCosmetics] You are running the latest version of HMCCosmetics!
[15:25:27] [Server thread/INFO]: [HMCRewards] +++++++++++++++++++++++++++++++++++
[15:25:27] [Server thread/INFO]: [HMCRewards] There is a new update for HMCRewards!
[15:25:27] [Server thread/INFO]: [HMCRewards] Please download it as soon as possible for possible fixes and new features.
[15:25:27] [Server thread/INFO]: [HMCRewards] Current Version 0.5.3 | Latest Version 0.5.4
[15:25:27] [Server thread/INFO]: [HMCRewards] Polymart: https://polymart.org/resource/5896
[15:25:27] [Server thread/INFO]: [HMCRewards] +++++++++++++++++++++++++++++++++++
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_malachite worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_malachite_deepslate worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_purpurite worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_purpurite_deepslate worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_jade worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_jade_deepslate worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_iridium worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_iridium_deepslate worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_mythril worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_mythril_deepslate worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_ruby worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_ruby_deepslate worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_silver worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_silver_deepslate worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_amber worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_ores_amber_deepslate worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_crystals_albite worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_crystals_citrine worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_crystals_topaz worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_crystals_peridot worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_crystals_azurite worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] blocks_crystals_rubellite worlds: [exploration]
[15:25:27] [Server thread/INFO]: [NexoAddon] BlockPopulator of all_ores added to world: exploration
[15:25:27] [Server thread/INFO]: Done (69.446s)! For help, type "help"
[15:25:27] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3893ms or 77 ticks behind
[15:25:27] [ForkJoinPool.commonPool-worker-6/INFO]: Nexo | Validating ResourcePack files...
[15:25:27] [Server thread/INFO]: [eco] Loaded eco
[15:25:28] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[15:25:28] [Server thread/INFO]: [EcoQuests] Loaded EcoQuests
[15:25:28] [Server thread/ERROR]: [EcoSkills] 
[15:25:28] [Server thread/ERROR]: [EcoSkills] Invalid configuration found at Skill enchanting xp-gain-methods:
[15:25:28] [Server thread/ERROR]: [EcoSkills] (Cause) Argument 'trigger'
[15:25:28] [Server thread/ERROR]: [EcoSkills] (Reason) Invalid trigger ID specified!
[15:25:28] [Server thread/ERROR]: [EcoSkills] 
[15:25:28] [ForkJoinPool.commonPool-worker-6/INFO]: Nexo | Obfuscating NexoPack...
[15:25:28] [Server thread/INFO]: [EcoSkills] Loaded EcoSkills
[15:25:28] [Server thread/INFO]: [Reforges] Loaded Reforges
[15:25:28] [Server thread/INFO]: [Talismans] Loaded Talismans
[15:25:28] [Server thread/INFO]: [Actions] Loaded Actions
[15:25:28] [Server thread/INFO]: [EcoScrolls] Loaded EcoScrolls
[15:25:28] [Server thread/INFO]: [EcoShop] Loaded EcoShop
[15:25:28] [Server thread/INFO]: [libreforge] Loaded libreforge
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: team [1.2]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.9]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: objective [4.2.0]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: random [2.1.0]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parseother [2.0.0]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: exptime [1.0]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[15:25:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.2]
[15:25:29] [Server thread/INFO]: 14 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[15:25:30] [ForkJoinPool.commonPool-worker-6/INFO]: Nexo | Finished generating resourcepack!

[15:25:32] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[15:25:32] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[15:25:33] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | ResourcePack has been uploaded to https://atlas.nexomc.com/pack.zip?id=86f1a9a84c3d11f6a5d4aa595bf80b72d52cf717
[15:25:33] [Craft Scheduler Thread - 18 - VotifierPlus/INFO]: [VotifierPlus] VotifierPlus is up to date! Version: 1.4.3
[15:25:38] [Craft Scheduler Thread - 18 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.19 New Version: 6.19.1
[15:26:34] [User Authenticator #0/INFO]: UUID of player Kairann is 39045373-3ae3-4636-afb7-9e6b634452ab
[15:26:34] [Server thread/INFO]: [HorriblePlayerLoginEventHack] You have plugins listening to the PlayerLoginEvent, this will cause re-configuration APIs to be unavailable: [eco, LuckPerms, RoseChat, My_Worlds, DeluxeMenus, ProtocolLib, WorldGuard]
[15:26:38] [Server thread/INFO]: [VotingPlugin] Login: Kairann (39045373-3ae3-4636-afb7-9e6b634452ab)
[15:26:38] [Server thread/INFO]: Kairann[/         ip         ] logged in with entity id 1056 at ([world]-442.9364868778383, 98.0, -15.53665363886128)
[15:26:38] [Craft Scheduler Thread - 38 - Essentials/INFO]: [EssentialsGeoIP] Sistema | Falha ao ler o banco de dados do GeoIP! The address 192.168.10.4 is not in the database.
[15:28:38] [Server thread/INFO]: Kairann issued server command: /mm test cast ANIMALIAchickenSPAWN
[15:33:27] [luckperms-command-executor/INFO]: [LP] kairann's Permissions:  (page 1 of 1 - 7 entries)
[15:33:27] [luckperms-command-executor/INFO]: > animalia.bees.unlocked 
[15:33:27] [luckperms-command-executor/INFO]: > animalia.unique.chicken 
[15:33:27] [luckperms-command-executor/INFO]: > animalia.unique.unlocked 
[15:33:27] [luckperms-command-executor/INFO]: > emojis 
[15:33:27] [luckperms-command-executor/INFO]: > mythicmobs.command.test.cast 
[15:33:27] [luckperms-command-executor/INFO]: > staff.nightvision 
[15:33:27] [luckperms-command-executor/INFO]: > tab.bossbar 
[15:33:37] [Server thread/INFO]: Nothing changed. The player is not an operator
[15:34:03] [Server thread/INFO]: Kairann issued server command: /mm test cast ANIMALIAchickenSPAWN
[15:34:06] [Server thread/INFO]: Kairann issued server command: /mm test cast -s ANIMALIAchickenSPAWN
[15:35:25] [customfishing-worker-3/INFO]: [CustomFishing] Data Saved for online players. Took 3ms.