Paste #125451: Unnamed Server Log Paste

Date: 2024/08/10 15:54:52 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559


[18:49:07] [Paper Plugin Remapper Thread - 1/INFO]: [ReobfServer] Remapping server...
[18:49:16] [Paper Plugin Remapper Thread - 1/INFO]: [ReobfServer] Done remapping server in 8976ms.
[18:49:16] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/PlugManX-2.4.1.jar'...
[18:49:16] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/multiverse-core-4.3.12.jar'...
[18:49:16] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/ViaVersion-4.9.2.jar'...
[18:49:16] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/DeluxeMenus-1.14.0-Release.jar'...
[18:49:16] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/multiverse-core-4.3.12.jar' in 446ms.
[18:49:16] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/grimac-2.3.57.jar'...
[18:49:17] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/PlugManX-2.4.1.jar' in 1178ms.
[18:49:17] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/images-2.5.0.jar'...
[18:49:17] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/images-2.5.0.jar' in 411ms.
[18:49:17] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/DecentHolograms-2.8.9.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/DecentHolograms-2.8.9.jar' in 467ms.
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/znpcs-4.7.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/znpcs-4.7.jar' in 219ms.
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/AuctionHouse-1.3.0-b10.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/DeluxeMenus-1.14.0-Release.jar' in 2364ms.
[18:49:18] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/UltimateAutoRestart 2024.07.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/AuctionHouse-1.3.0-b10.jar' in 143ms.
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/CMILib1.4.5.1.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ViaVersion-4.9.2.jar' in 2452ms.
[18:49:18] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/SimpleRename.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/SimpleRename.jar' in 58ms.
[18:49:18] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens-2.0.33-b3385.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/UltimateAutoRestart 2024.07.jar' in 197ms.
[18:49:18] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/Vehicles(14.8.1).jar'...
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CMILib1.4.5.1.jar' in 355ms.
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/GriefPrevention.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Vehicles(14.8.1).jar' in 233ms.
[18:49:18] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/EconomyShopGUI-6.7.9.jar'...
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/GriefPrevention.jar' in 133ms.
[18:49:18] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/CoreProtect-22.4.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CoreProtect-22.4.jar' in 243ms.
[18:49:19] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/MortisItemsPlus-1.1.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MortisItemsPlus-1.1.jar' in 45ms.
[18:49:19] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/worldedit-bukkit-7.2.19.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/EconomyShopGUI-6.7.9.jar' in 441ms.
[18:49:19] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/ViaRewind-3.0.6-SNAPSHOT.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ViaRewind-3.0.6-SNAPSHOT.jar' in 102ms.
[18:49:19] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/Jobs5.2.2.3.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/grimac-2.3.57.jar' in 3042ms.
[18:49:19] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/MortisBountySystem-1.1.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MortisBountySystem-1.1.jar' in 110ms.
[18:49:19] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/NexEngine.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Jobs5.2.2.3.jar' in 299ms.
[18:49:19] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/AdvancedBan-Bundle-2.3.0-RELEASE.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/NexEngine.jar' in 132ms.
[18:49:19] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/MortisCore-1.0.jar'...
[18:49:19] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens-2.0.33-b3385.jar' in 1411ms.
[18:49:19] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Skript-2.8.7.jar'...
[18:49:20] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/AdvancedBan-Bundle-2.3.0-RELEASE.jar' in 760ms.
[18:49:20] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/MortisBank-4.0.jar'...
[18:49:21] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Skript-2.8.7.jar' in 1057ms.
[18:49:21] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/worldguard-bukkit-7.0.9-dist.jar'...
[18:49:21] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/worldedit-bukkit-7.2.19.jar' in 2003ms.
[18:49:21] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/MyPortalsCommands 2.3.1.jar'...
[18:49:21] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MyPortalsCommands 2.3.1.jar' in 116ms.
[18:49:21] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/CommandNPC-1.9.1.jar'...
[18:49:21] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MortisBank-4.0.jar' in 1069ms.
[18:49:21] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/AuraSkills-2.2.1.jar'...
[18:49:21] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CommandNPC-1.9.1.jar' in 195ms.
[18:49:21] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/ExcellentCrates-5.0.0.jar'...
[18:49:21] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ExcellentCrates-5.0.0.jar' in 204ms.
[18:49:21] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/SkinsRestorer.jar'...
[18:49:21] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/worldguard-bukkit-7.0.9-dist.jar' in 797ms.
[18:49:21] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/TAB v4.1.6.jar'...
[18:49:22] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/TAB v4.1.6.jar' in 454ms.
[18:49:22] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/ViaBackwards-4.9.1.jar'...
[18:49:22] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ViaBackwards-4.9.1.jar' in 316ms.
[18:49:22] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/ajLeaderboards-2.8.0.jar'...
[18:49:22] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/AuraSkills-2.2.1.jar' in 1366ms.
[18:49:22] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/WorldGuardExtraFlags.jar'...
[18:49:22] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/WorldGuardExtraFlags.jar' in 45ms.
[18:49:22] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/PlaceholderAPI-2.11.5.jar'...
[18:49:23] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/PlaceholderAPI-2.11.5.jar' in 247ms.
[18:49:23] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Remapping plugin 'plugins/GraveStonesPlus.jar'...
[18:49:23] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ajLeaderboards-2.8.0.jar' in 611ms.
[18:49:23] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Vault.jar'...
[18:49:23] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Vault.jar' in 82ms.
[18:49:23] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/MessageAnnouncer-1.12.3.jar'...
[18:49:23] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/SkinsRestorer.jar' in 1535ms.
[18:49:23] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/BetterRTP-3.6.12.jar'...
[18:49:23] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MessageAnnouncer-1.12.3.jar' in 37ms.
[18:49:23] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/BetterRTP-3.6.12.jar' in 144ms.
[18:49:23] [Paper Plugin Remapper Thread - 4/INFO]: [PluginRemapper] Done remapping plugin 'plugins/GraveStonesPlus.jar' in 677ms.
[18:49:24] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MortisCore-1.0.jar' in 4898ms.
[18:49:30] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[18:49:31] [ServerMain/INFO]: Found new data pack paper, loading it automatically
[18:49:32] [ServerMain/INFO]: Loaded 1175 recipes
[18:49:33] [ServerMain/INFO]: Loaded 1276 advancements
[18:49:33] [Server thread/INFO]: Starting minecraft server version 1.20.6
[18:49:33] [Server thread/INFO]: Loading properties
[18:49:33] [Server thread/INFO]: This server is running Paper version 1.20.6-148-ver/1.20.6@20f5165 (2024-07-02T15:37:33Z) (Implementing API version 1.20.6-R0.1-SNAPSHOT)
[18:49:34] [Server thread/INFO]: Server Ping Player Sample Count: 12
[18:49:34] [Server thread/INFO]: Using 4 threads for Netty based IO
[18:49:35] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[18:49:35] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[18:49:35] [Server thread/INFO]: Default game type: SURVIVAL
[18:49:35] [Server thread/INFO]: Generating keypair
[18:49:35] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25581
[18:49:35] [Server thread/INFO]: Using epoll channel type
[18:49:35] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[18:49:35] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[18:49:36] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'PlaceholderAPI-2.11.5.jar' in folder 'plugins/.paper-remapped'
org.bukkit.plugin.InvalidPluginException: java.lang.ExceptionInInitializerError
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:129) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:532) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:286) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    ... 9 more
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at PlaceholderAPI-2.11.5.jar/me.clip.placeholderapi.PlaceholderAPIPlugin.<clinit>(PlaceholderAPIPlugin.java:58) ~[PlaceholderAPI-2.11.5.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    ... 9 more
[18:49:37] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[18:49:37] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[18:49:37] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[18:49:37] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[18:49:38] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'images-2.5.0.jar' in folder 'plugins/.paper-remapped'
org.bukkit.plugin.InvalidPluginException: java.lang.ExceptionInInitializerError
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:129) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:532) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:286) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    ... 9 more
Caused by: java.lang.UnsupportedOperationException: Class class com.andavin.images.PacketListener is not currently supported for version v1_20_R5
    at images-2.5.0.jar/com.andavin.images.Versioned.getInstance(Versioned.java:60) ~[images-2.5.0.jar:?]
    at images-2.5.0.jar/com.andavin.images.Images.<clinit>(Images.java:97) ~[images-2.5.0.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    ... 9 more
[18:49:38] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[18:49:50] [Server thread/WARN]: Legacy plugin CommandNPC v1.9.1 does not specify an api-version.
[18:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loading 1 libraries... please wait
[18:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[18:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[18:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[18:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[18:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[18:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[18:49:50] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.2
[18:49:50] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.2 is now loaded. Registering protocol transformers and injecting...
[18:49:51] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[18:49:51] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[18:49:52] [Server thread/INFO]: [ViaBackwards] Loading translations...
[18:49:52] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[18:49:53] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.134
[18:49:53] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[18:49:53] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.19+6642-415ef95
[18:49:55] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@71a50b1c]
[18:49:55] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.1
[18:49:55] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[18:49:55] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+107-7b02d22
[18:49:55] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[18:49:55] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v3.0.6-SNAPSHOT
[18:49:55] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3385)
[18:49:55] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+107-7b02d22
[18:49:55] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.5.1
[18:49:55] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.2
[18:49:55] [Server thread/INFO]: [MortisCore] Loading server plugin MortisCore v1.0
[18:49:55] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.9
[18:49:55] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[18:49:55] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.4.0
[18:49:55] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.3
[18:49:55] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[18:49:55] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[18:49:56] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[18:49:56] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.56
[18:49:56] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[18:49:56] [Server thread/ERROR]: [GrimAC] Error initializing plugin 'grimac-2.3.57.jar' in folder 'plugins/.paper-remapped' (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at grimac-2.3.57.jar/ac.grim.grimac.shaded.io.github.retrooper.packetevents.factory.spigot.SpigotPacketEventsBuilder$1.load(SpigotPacketEventsBuilder.java:103) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.manager.init.load.PacketEventsInit.start(PacketEventsInit.java:16) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.manager.InitManager.load(InitManager.java:44) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.GrimAPI.load(GrimAPI.java:28) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.GrimAC.onLoad(GrimAC.java:9) ~[grimac-2.3.57.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:532) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:286) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at grimac-2.3.57.jar/ac.grim.grimac.shaded.io.github.retrooper.packetevents.util.SpigotReflectionUtil.<clinit>(SpigotReflectionUtil.java:54) ~[grimac-2.3.57.jar:?]
    ... 14 more
[18:49:56] [Server thread/INFO]: [ServersNPC] Loading server plugin ServersNPC v4.7
[18:49:56] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v1.3.0-b10
[18:49:56] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2024.07
[18:49:56] [Server thread/INFO]: [SimpleRename] Loading server plugin SimpleRename v13.9
[18:49:56] [Server thread/INFO]: [Vehicles] Loading server plugin Vehicles v14.8.1
[18:49:58] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.7.9
[18:49:58] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[18:49:58] [Server thread/INFO]: [MortisItemsPlus] Loading server plugin MortisItemsPlus v1.1
[18:49:58] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+107-7b02d22
[18:49:58] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.2.3
[18:49:58] [Server thread/INFO]: [MortisBountySystem] Loading server plugin MortisBountySystem v1.1
[18:49:58] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[18:49:58] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.8.7
[18:49:58] [Server thread/INFO]: [MortisBank] Loading server plugin MortisBank v4.0
[18:49:58] [Server thread/INFO]: [MyPortalsCommands] Loading server plugin MyPortalsCommands v2.3.1
[18:49:58] [Server thread/INFO]: [CommandNPC] Loading server plugin CommandNPC v1.9.1
[18:49:58] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.1
[18:49:58] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.0.0
[18:49:58] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.6
[18:49:58] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[18:49:59] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[18:50:00] [Server thread/INFO]: [GraveStonesPlus] Loading server plugin GraveStonesPlus v1.6.3
[18:50:00] [Server thread/INFO]: [MessageAnnouncer] Loading server plugin MessageAnnouncer v1.12.3
[18:50:00] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.12
[18:50:00] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[18:50:00] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.134
[18:50:02] [Server thread/INFO]:         __    
[18:50:02] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.134
[18:50:02] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[18:50:02] [Server thread/INFO]: 
[18:50:02] [Server thread/INFO]: [LuckPerms] Loading configuration...
[18:50:03] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[18:50:03] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[18:50:03] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[18:50:04] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[18:50:05] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[18:50:05] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[18:50:06] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5669ms)
[18:50:06] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[18:50:06] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[18:50:06] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[18:50:06] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[18:50:06] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[18:50:06] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.19+6642-415ef95
[18:50:06] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[18:50:07] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[18:50:08] [Server thread/WARN]: 
**********************************************
** This WorldEdit version does not fully support your version of Bukkit.
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**
** Please see https://worldedit.enginehub.org/en/latest/faq/#bukkit-adapters
**********************************************

[18:50:09] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v3.0.6-SNAPSHOT
[18:50:09] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[18:50:09] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[18:50:09] [Server thread/WARN]: [NexEngine] ==================================
[18:50:09] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (Unknown)!
[18:50:09] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[18:50:09] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.18.2.
[18:50:09] [Server thread/WARN]: [NexEngine] ==================================
[18:50:09] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[18:50:09] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[18:50:09] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[18:50:09] [Server thread/INFO]: [NexEngine] Plugin loaded in 179 ms!
[18:50:09] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.4.0
[18:50:10] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[18:50:10] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[18:50:10] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[18:50:10] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[18:50:10] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[18:50:10] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[18:50:11] [Server thread/ERROR]: An unexpected error occurred while starting the plugin. Please check the console for more details.
java.lang.NoSuchMethodError: 'com.viaversion.viaversion.api.protocol.version.ProtocolVersion com.viaversion.viaversion.api.protocol.version.ServerProtocolVersion.lowestSupportedProtocolVersion()'
    at SkinsRestorer.jar/net.skinsrestorer.bukkit.refresher.ViaWorkaround.shouldApplyWorkaround(ViaWorkaround.java:35) ~[SkinsRestorer.jar:?]
    at SkinsRestorer.jar/net.skinsrestorer.bukkit.SRBukkitInit.selectSpigotRefresher(SRBukkitInit.java:125) ~[SkinsRestorer.jar:?]
    at SkinsRestorer.jar/net.skinsrestorer.bukkit.SRBukkitInit.detectRefresh(SRBukkitInit.java:109) ~[SkinsRestorer.jar:?]
    at SkinsRestorer.jar/net.skinsrestorer.bukkit.SRBukkitInit.initSkinApplier(SRBukkitInit.java:77) ~[SkinsRestorer.jar:?]
    at SkinsRestorer.jar/net.skinsrestorer.shared.plugin.SRPlugin.startup(SRPlugin.java:323) ~[SkinsRestorer.jar:?]
    at SkinsRestorer.jar/net.skinsrestorer.shared.plugin.SRBootstrapper.startPlugin(SRBootstrapper.java:62) ~[SkinsRestorer.jar:?]
    at SkinsRestorer.jar/net.skinsrestorer.bukkit.SRBukkitBootstrap.onEnable(SRBukkitBootstrap.java:45) ~[SkinsRestorer.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:287) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[18:50:11] [Server thread/WARN]: Updater was not initialized, a error occurred while starting the plugin. Forcing updater to initialize.
[18:50:11] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[18:50:11] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[18:50:11] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[18:50:11] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[18:50:11] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[18:50:11] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[18:50:11] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |------------------|
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |    Error Mode    |
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Version: 15.4.0
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Commit: 7837da9
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     This is the latest version!
[18:50:11] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[18:50:11] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[18:50:11] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[18:50:11] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[18:50:11] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[18:50:11] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[18:50:11] [Server thread/INFO]: Preparing level "world"
[18:50:12] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[18:50:13] [Server thread/INFO]: Time elapsed: 1589 ms
[18:50:13] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[18:50:14] [Server thread/INFO]: Time elapsed: 877 ms
[18:50:14] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[18:50:15] [Server thread/INFO]: Time elapsed: 207 ms
[18:50:15] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.2
[18:50:15] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: Unknown (766) (766)
[18:50:15] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[18:50:15] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[18:50:15] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[18:50:15] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://viaversion.com/setup
[18:50:15] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[18:50:15] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.1
[18:50:15] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[18:50:15] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[18:50:15] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[18:50:15] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[18:50:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[18:50:15] [Server thread/INFO]: [WorldGuard] Loading region data...
[18:50:16] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+107-7b02d22
[18:50:16] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[18:50:16] [Server thread/INFO]: [Essentials] No kits found to migrate.
[18:50:17] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[18:50:17] [Server thread/INFO]: [Essentials] Using locale en_US
[18:50:17] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[18:50:18] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[18:50:18] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[18:50:18] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[18:50:18] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[18:50:18] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[18:50:18] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[18:50:18] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[18:50:18] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[18:50:18] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[18:50:18] [Server thread/INFO]: Time elapsed: 353 ms
[18:50:18] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[18:50:18] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[18:50:18] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[18:50:18] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[18:50:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[18:50:18] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn_backup
[18:50:19] [Server thread/INFO]: Time elapsed: 357 ms
[18:50:19] [Server thread/INFO]: [WorldGuard] (spawn_backup) TNT ignition is PERMITTED.
[18:50:19] [Server thread/INFO]: [WorldGuard] (spawn_backup) Lighters are PERMITTED.
[18:50:19] [Server thread/INFO]: [WorldGuard] (spawn_backup) Lava fire is PERMITTED.
[18:50:19] [Server thread/INFO]: [WorldGuard] (spawn_backup) Fire spread is UNRESTRICTED.
[18:50:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn_backup'
[18:50:19] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.World$Environment.ordinal()" because the return value of "org.bukkit.WorldCreator.environment()" is null
[18:50:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createWorld(CraftServer.java:1287)
[18:50:19] [Server thread/WARN]:     at org.bukkit.Bukkit.createWorld(Bukkit.java:834)
[18:50:19] [Server thread/WARN]:     at org.bukkit.WorldCreator.createWorld(WorldCreator.java:502)
[18:50:19] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:486)
[18:50:19] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:467)
[18:50:19] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:442)
[18:50:19] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.utils.WorldManager.loadWorlds(WorldManager.java:770)
[18:50:19] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.MultiverseCore.onEnable(MultiverseCore.java:313)
[18:50:19] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:19] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:19] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:19] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:19] [Server thread/ERROR]: [Multiverse-Core] The world 'spawnBackup' could NOT be loaded because it contains errors and is probably corrupt!
[18:50:19] [Server thread/ERROR]: [Multiverse-Core] Try using Minecraft Region Fixer to repair your world! 'spawnBackup'
[18:50:19] [Server thread/ERROR]: [Multiverse-Core] https://github.com/Fenixin/Minecraft-Region-Fixer
[18:50:19] [Server thread/INFO]: Preparing start region for dimension minecraft:world_backup
[18:50:20] [Server thread/INFO]: Time elapsed: 578 ms
[18:50:20] [Server thread/INFO]: [WorldGuard] (world_backup) TNT ignition is PERMITTED.
[18:50:20] [Server thread/INFO]: [WorldGuard] (world_backup) Lighters are PERMITTED.
[18:50:20] [Server thread/INFO]: [WorldGuard] (world_backup) Lava fire is PERMITTED.
[18:50:20] [Server thread/INFO]: [WorldGuard] (world_backup) Fire spread is UNRESTRICTED.
[18:50:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_backup'
[18:50:20] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp
[18:50:20] [Server thread/INFO]: Time elapsed: 273 ms
[18:50:20] [Server thread/INFO]: [WorldGuard] (pvp) TNT ignition is PERMITTED.
[18:50:20] [Server thread/INFO]: [WorldGuard] (pvp) Lighters are PERMITTED.
[18:50:20] [Server thread/INFO]: [WorldGuard] (pvp) Lava fire is PERMITTED.
[18:50:20] [Server thread/INFO]: [WorldGuard] (pvp) Fire spread is UNRESTRICTED.
[18:50:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvp'
[18:50:20] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[18:50:20] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[18:50:20] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[18:50:20] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3385)
[18:50:20] [Server thread/INFO]: [Citizens] Loading external libraries
[18:50:20] [Server thread/INFO]: [Citizens] Unable to load Adventure, chat components will not work
[18:50:20] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[18:50:20] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.33-SNAPSHOT (build 3385) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_20_R3/inventory/CraftInventoryView
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.1.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at Citizens-2.0.33-b3385.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:47) ~[Citizens-2.0.33-b3385.jar:?]
    at Citizens-2.0.33-b3385.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:52) ~[Citizens-2.0.33-b3385.jar:?]
    at Citizens-2.0.33-b3385.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:373) ~[Citizens-2.0.33-b3385.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_20_R3.inventory.CraftInventoryView
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 20 more
[18:50:20] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3385)
[18:50:20] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+107-7b02d22
[18:50:20] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[18:50:20] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.5.1
[18:50:21] [Server thread/INFO]: [CMILib] Server version detection needs aditional update
[18:50:21] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.6 - paper  1.20.6-148-20f5165 (MC: 1.20.6)
[18:50:21] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.cast(Object)" because "this.CraftServerClass" is null
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.initialize(Reflections.java:153)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.<init>(Reflections.java:129)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.getReflectionManager(CMILib.java:89)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Version.Version.<clinit>(Version.java:70)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:69)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:252)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:21] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.cast(Object)" because "this.CraftWorldClass" is null
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.getCraftWorld(Reflections.java:788)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.getServerName(Reflections.java:779)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Version.Version.<clinit>(Version.java:70)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:69)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:252)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:21] [Server thread/WARN]: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_20_R1.inventory.CraftItemStack
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:534)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:513)
[18:50:21] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.NBT.CMINBT.getBukkitClass(CMINBT.java:1277)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.NBT.CMINBT.<clinit>(CMINBT.java:117)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.asNMSCopy(Reflections.java:1085)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.getItemMinecraftName(Reflections.java:868)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:88)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:252)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:21] [Server thread/WARN]: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_20_R1.entity.CraftEntity
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:534)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:513)
[18:50:21] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.NBT.CMINBT.getBukkitClass(CMINBT.java:1277)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.NBT.CMINBT.<clinit>(CMINBT.java:119)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.asNMSCopy(Reflections.java:1085)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.getItemMinecraftName(Reflections.java:868)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:88)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:252)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:21] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.nbt.CompoundTag.m_()
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2395)
[18:50:21] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getMethod(AbstractDefaultRulesReflectionProxy.java:100)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getMethod(Unknown Source)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.NBT.CMINBT.<clinit>(CMINBT.java:270)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.asNMSCopy(Reflections.java:1085)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.getItemMinecraftName(Reflections.java:868)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:88)
[18:50:21] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:252)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:21] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:22] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[18:50:22] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[18:50:22] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.setSkullTexture(Reflections.java:989)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.getHead(CMIItemStack.java:834)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:298)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:178)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:131)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:80)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:253)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:22] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[18:50:22] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[18:50:22] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.setSkullTexture(Reflections.java:989)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.getHead(CMIItemStack.java:834)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:298)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:178)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:137)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:80)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:253)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:22] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[18:50:22] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[18:50:22] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.setSkullTexture(Reflections.java:989)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.getHead(CMIItemStack.java:834)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:298)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:178)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:143)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:80)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:253)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:22] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[18:50:22] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[18:50:22] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.setSkullTexture(Reflections.java:989)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.getHead(CMIItemStack.java:834)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:298)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:178)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:149)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:80)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:253)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:22] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[18:50:22] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[18:50:22] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.setSkullTexture(Reflections.java:989)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.getHead(CMIItemStack.java:834)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:298)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.ItemManager.getItem(ItemManager.java:178)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:155)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILibConfig.load(CMILibConfig.java:80)
[18:50:22] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:253)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:22] [Server thread/INFO]: Updated (EN) language file. Took 72ms
[18:50:22] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.2
[18:50:22] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[18:50:22] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
[18:50:23] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[18:50:23] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[18:50:23] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[18:50:23] [Server thread/INFO]: [GriefPrevention] Boot finished.
[18:50:23] [Server thread/INFO]: [MortisCore] Enabling MortisCore v1.0
[18:50:23] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.9
[18:50:23] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.3
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[18:50:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[18:50:23] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[18:50:23] [Server thread/ERROR]: [DeluxeMenus] Could not hook into PlaceholderAPI!
DeluxeMenus will now disable!
[18:50:23] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.14.0-Release
[18:50:24] [Server thread/ERROR]: Error occurred while disabling DeluxeMenus v1.14.0-Release
java.lang.NullPointerException: Cannot invoke "java.util.Map.clear()" because "this.itemHooks" is null
    at DeluxeMenus-1.14.0-Release.jar/com.extendedclip.deluxemenus.DeluxeMenus.onDisable(DeluxeMenus.java:190) ~[DeluxeMenus-1.14.0-Release.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at DeluxeMenus-1.14.0-Release.jar/com.extendedclip.deluxemenus.DeluxeMenus.onEnable(DeluxeMenus.java:97) ~[DeluxeMenus-1.14.0-Release.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[18:50:24] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.56
[18:50:24] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[18:50:24] [Server thread/INFO]: [GrimAC] Registering packets...
[18:50:24] [Server thread/WARN]: [GrimAC] [packetevents] We currently do not support the minecraft version 1.20.6, so things might break. PacketEvents will behave as if the minecraft version were 1.20.4!
[18:50:24] [Server thread/INFO]: [GrimAC] Registering an outgoing plugin channel...
[18:50:24] [Server thread/ERROR]: Error occurred while enabling GrimAC v2.3.56 (Is it up to date?)
java.lang.NoClassDefFoundError: Could not initialize class ac.grim.grimac.shaded.io.github.retrooper.packetevents.util.SpigotReflectionUtil
    at grimac-2.3.57.jar/ac.grim.grimac.shaded.io.github.retrooper.packetevents.factory.spigot.SpigotPacketEventsBuilder$1.load(SpigotPacketEventsBuilder.java:103) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.shaded.io.github.retrooper.packetevents.factory.spigot.SpigotPacketEventsBuilder$1.init(SpigotPacketEventsBuilder.java:136) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.manager.init.start.PacketManager.start(PacketManager.java:44) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.manager.InitManager.start(InitManager.java:50) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.GrimAPI.start(GrimAPI.java:33) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.GrimAC.onEnable(GrimAC.java:19) ~[grimac-2.3.57.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3 [in thread "Server thread"]
    at grimac-2.3.57.jar/ac.grim.grimac.shaded.io.github.retrooper.packetevents.util.SpigotReflectionUtil.<clinit>(SpigotReflectionUtil.java:54) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.shaded.io.github.retrooper.packetevents.factory.spigot.SpigotPacketEventsBuilder$1.load(SpigotPacketEventsBuilder.java:103) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.manager.init.load.PacketEventsInit.start(PacketEventsInit.java:16) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.manager.InitManager.load(InitManager.java:44) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.GrimAPI.load(GrimAPI.java:28) ~[grimac-2.3.57.jar:?]
    at grimac-2.3.57.jar/ac.grim.grimac.GrimAC.onLoad(GrimAC.java:9) ~[grimac-2.3.57.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:532) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:286) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    ... 3 more
[18:50:24] [Server thread/INFO]: [GrimAC] Disabling GrimAC v2.3.56
[18:50:24] [Server thread/INFO]: [GrimAC] Terminating PacketEvents...
[18:50:24] [Server thread/INFO]: [ServersNPC] Enabling ServersNPC v4.7
[18:50:24] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v1.3.0-b10
[18:50:24] [Server thread/INFO]: [AuctionHouse] ========== Akarian Auction House ==========
[18:50:24] [Server thread/INFO]: [AuctionHouse]  
[18:50:24] [Server thread/INFO]: [AuctionHouse] Loading Akarian Auction House v1.3.0-b10...
[18:50:24] [Server thread/INFO]: [AuctionHouse] Setting up Economy...
[18:50:24] [Server thread/INFO]: [AuctionHouse] Successfully hooked into EssentialsX Economy.
[18:50:24] [Server thread/INFO]: [AuctionHouse] Loading database...
[18:50:24] [Server thread/INFO]: [AuctionHouse] Successfully connected to FILE database.
[18:50:24] [Server thread/INFO]: [AuctionHouse] Loading listings...
[18:50:24] [Server thread/INFO]: [AuctionHouse] Listings loaded successfully.
[18:50:24] [Server thread/INFO]: [AuctionHouse] Loading users...
[18:50:24] [Server thread/INFO]: [AuctionHouse] Users loaded successfully.
[18:50:24] [Server thread/INFO]: [AuctionHouse] Loading layouts...
[18:50:24] [Server thread/INFO]: [AuctionHouse] =================================================
[18:50:24] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2024.07
[18:50:25] [Server thread/INFO]: [UltimateAutoRestart] 2024.07, a free resource by Norska - Thanks for downloading!
[18:50:25] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[18:50:25] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[18:50:25] [Server thread/INFO]: [SimpleRename] Enabling SimpleRename v13.9
[18:50:25] [Server thread/INFO]: SimpleRename enabled!
[18:50:25] [Server thread/INFO]: [Vehicles] Enabling Vehicles v14.8.1
[18:50:27] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> lang.yml loaded.
[18:50:27] [Server thread/WARN]: Nag author(s): '[Pollitoyeye]' of 'Vehicles v14.8.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[18:50:27] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.7.9
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 14 shop sections.
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
Please change the value manually to get rid of this message
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [WARN]: Item path in config.yml: sold-items-ignored-NBTtags
[18:50:28] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 728ms to complete
[18:50:28] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[18:50:29] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[18:50:29] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[18:50:29] [Server thread/INFO]: --------------------
[18:50:29] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[18:50:29] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[18:50:29] [Server thread/INFO]: --------------------
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Enabling MortisItemsPlus v1.1
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Saturation Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Strength Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Absorption Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Speed Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Regeneration Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Fast Digging Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Lightning Bow
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Teleportation Wand
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Knocking Fish
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded set: Shadow Fighter
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded Item set: SteelBorn
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded set: Ancient Gold
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Saturation Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Strength Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Absorption Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Speed Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Regeneration Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Fast Digging Talisman
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Lightning Bow
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Teleportation Wand
[18:50:29] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Knocking Fish
[18:50:29] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+107-7b02d22
[18:50:29] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[18:50:29] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.2.3
[18:50:29] [Server thread/INFO]: ------------- Jobs -------------
[18:50:29] [Server thread/INFO]: Connected to database (SqLite)
[18:50:29] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[18:50:29] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[18:50:29] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.setSkullTexture(Reflections.java:989)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.getHead(CMIItemStack.java:834)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemSerializer.getItem(CMIItemSerializer.java:220)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemSerializer.deserialize(CMIItemSerializer.java:535)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.deserialize(CMIItemStack.java:865)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.config.GeneralConfigManager.loadGeneralSettings(GeneralConfigManager.java:1121)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.config.GeneralConfigManager.reload(GeneralConfigManager.java:272)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.Jobs.reload(Jobs.java:856)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.Jobs.startup(Jobs.java:537)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.Jobs.onEnable(Jobs.java:751)
[18:50:29] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:29] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:29] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[18:50:29] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[18:50:29] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Reflections.setSkullTexture(Reflections.java:989)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.getHead(CMIItemStack.java:834)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemSerializer.getItem(CMIItemSerializer.java:220)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemSerializer.deserialize(CMIItemSerializer.java:535)
[18:50:29] [Server thread/WARN]:     at CMILib1.4.5.1.jar//net.Zrips.CMILib.Items.CMIItemStack.deserialize(CMIItemStack.java:865)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.config.GeneralConfigManager.loadGeneralSettings(GeneralConfigManager.java:1125)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.config.GeneralConfigManager.reload(GeneralConfigManager.java:272)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.Jobs.reload(Jobs.java:856)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.Jobs.startup(Jobs.java:537)
[18:50:29] [Server thread/WARN]:     at Jobs5.2.2.3.jar//com.gamingmesh.jobs.Jobs.onEnable(Jobs.java:751)
[18:50:29] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:29] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:29] [Server thread/INFO]: Loaded 8 titles
[18:50:29] [Server thread/INFO]: Loaded 69 protected blocks timers
[18:50:29] [Server thread/INFO]: Loaded 1402 custom item names
[18:50:29] [Server thread/INFO]: Loaded 79 custom entity names
[18:50:29] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[18:50:29] [Server thread/INFO]: Loaded 38 custom enchant names
[18:50:29] [Server thread/INFO]: Loaded 46 custom enchant names
[18:50:29] [Server thread/INFO]: Loaded 16 custom color names
[18:50:30] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[18:50:30] [Server thread/INFO]: Loaded 4 shop items
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Fisherman
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Crafter
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Farmer
[18:50:30] [Server thread/WARN]: [Jobs] Job Farmer has an invalid Breed type property: mushroom_cow!
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Explorer
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Miner
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Digger
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Enchanter
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Hunter
[18:50:30] [Server thread/WARN]: [Jobs] Job Hunter has an invalid Kill type property: mushroom_cow!
[18:50:30] [Server thread/WARN]: [Jobs] Job Hunter has an invalid Kill type property: SNOWMAN!
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Builder
[18:50:30] [Server thread/INFO]: Loaded 1 quests for Brewer
[18:50:30] [Server thread/INFO]: Loaded 12 jobs
[18:50:30] [Server thread/INFO]: Loaded 0 boosted items
[18:50:30] [Server thread/INFO]: Loaded 5 furnace for reassigning.
[18:50:30] [Server thread/INFO]: Loaded 1 brewing for reassigning.
[18:50:30] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[18:50:30] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[18:50:30] [Server thread/INFO]: Preloaded 8 players data in 0.05
[18:50:30] [Server thread/INFO]: WorldGuard detected.
[18:50:30] [Server thread/INFO]: Plugin has been enabled successfully.
[18:50:30] [Server thread/INFO]: ------------------------------------
[18:50:30] [Server thread/INFO]: [MortisBountySystem] Enabling MortisBountySystem v1.1
[18:50:30] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[18:50:30] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:50:33] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[18:50:33] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:50:33] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[18:50:33] [Server thread/INFO]: [Skript] Enabling Skript v2.8.7
[18:50:34] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.9.1 (you're currently running 2.8.7)
[18:50:34] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.9.1/Skript-2.9.1.jar>https://github.com/SkriptLang/Skript/releases/download/2.9.1/Skript-2.9.1.jar
[18:50:49] [Server thread/INFO]: [Skript] Loaded 233068 aliases in 15354ms
[18:50:51] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[18:50:51] [Server thread/INFO]: [MortisBank] Enabling MortisBank v4.0
[18:50:51] [Server thread/INFO]: [MortisBank] Disabling MortisBank v4.0
[18:50:51] [Server thread/INFO]: [MyPortalsCommands] Enabling MyPortalsCommands v2.3.1
[18:50:51] [Server thread/WARN]: [MyPortalsCommands] Could not save messages.yml to plugins/MyPortalsCommands/messages.yml because messages.yml already exists.
[18:50:51] [Server thread/INFO]: [CommandNPC] Enabling CommandNPC v1.9.1*
[18:50:51] [Server thread/INFO]: ---------------------{CommandNPC Error}---------------------
[18:50:51] [Server thread/INFO]:                            Topic
[18:50:51] [Server thread/INFO]:                    Required Dependencies
[18:50:51] [Server thread/INFO]: 
[18:50:51] [Server thread/INFO]:     Citizens 2 not found! commandnpc will now shut down. 
[18:50:51] [Server thread/INFO]: 
[18:50:51] [Server thread/INFO]:        Class: commandnpc   Method: onEnable() 
[18:50:51] [Server thread/INFO]: 
[18:50:51] [Server thread/INFO]: ---------------------{CommandNPC Error}---------------------
[18:50:51] [Server thread/INFO]: [CommandNPC] Disabling CommandNPC v1.9.1
[18:50:51] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.1
[18:50:52] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[18:50:53] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[18:50:53] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[18:50:53] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[18:50:53] [Server thread/INFO]: [AuraSkills] Loaded 148 config options in 89 ms
[18:50:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.20.6! Trying to find NMS support
[18:50:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R4' loaded!
[18:50:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[18:50:53] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[18:50:53] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[18:50:54] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.0.0
[18:50:54] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[18:50:54] [Server thread/WARN]: [ExcellentCrates] ==================================
[18:50:54] [Server thread/WARN]: [ExcellentCrates] WARNING: You're running an outdated/deprecated server version (Unknown)!
[18:50:54] [Server thread/WARN]: [ExcellentCrates] Support for this version will be dropped soon.
[18:50:54] [Server thread/WARN]: [ExcellentCrates] Please, upgrade your server to at least 1.18.2.
[18:50:54] [Server thread/WARN]: [ExcellentCrates] ==================================
[18:50:54] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:50:54] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@6842dde8
[18:50:54] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:50:54] [Server thread/WARN]: [ExcellentCrates] No hologram handler is available. Do your server met all the requirements?
[18:50:54] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[18:50:54] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[18:50:54] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[18:50:55] [Server thread/WARN]: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.craftbukkit.inventory.CraftItemStack
[18:50:55] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[18:50:55] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[18:50:55] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[18:50:55] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[18:50:55] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:534)
[18:50:55] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:513)
[18:50:55] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68)
[18:50:55] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source)
[18:50:55] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.utils.Reflex.getClass(Reflex.java:24)
[18:50:55] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.utils.Reflex.getClass(Reflex.java:15)
[18:50:55] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.utils.ItemUtil.<clinit>(ItemUtil.java:33)
[18:50:55] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.api.config.JYML.getItem(JYML.java:311)
[18:50:55] [Server thread/WARN]:     at ExcellentCrates-5.0.0.jar//su.nightexpress.excellentcrates.crate.menu.MilestonesMenu.<init>(MilestonesMenu.java:75)
[18:50:55] [Server thread/WARN]:     at ExcellentCrates-5.0.0.jar//su.nightexpress.excellentcrates.crate.CrateManager.onLoad(CrateManager.java:72)
[18:50:55] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.api.manager.AbstractManager.setup(AbstractManager.java:25)
[18:50:55] [Server thread/WARN]:     at ExcellentCrates-5.0.0.jar//su.nightexpress.excellentcrates.ExcellentCratesPlugin.enable(ExcellentCratesPlugin.java:64)
[18:50:55] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.NexPlugin.loadManagers(NexPlugin.java:219)
[18:50:55] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:78)
[18:50:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:55] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:55] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:55] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:55] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:55] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:55] [Server thread/ERROR]: Error occurred while enabling ExcellentCrates v5.0.0 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at NexEngine.jar/su.nexmedia.engine.api.config.JYML.getItem(JYML.java:311) ~[NexEngine.jar:?]
    at ExcellentCrates-5.0.0.jar/su.nightexpress.excellentcrates.crate.menu.MilestonesMenu.<init>(MilestonesMenu.java:75) ~[ExcellentCrates-5.0.0.jar:?]
    at ExcellentCrates-5.0.0.jar/su.nightexpress.excellentcrates.crate.CrateManager.onLoad(CrateManager.java:72) ~[ExcellentCrates-5.0.0.jar:?]
    at NexEngine.jar/su.nexmedia.engine.api.manager.AbstractManager.setup(AbstractManager.java:25) ~[NexEngine.jar:?]
    at ExcellentCrates-5.0.0.jar/su.nightexpress.excellentcrates.ExcellentCratesPlugin.enable(ExcellentCratesPlugin.java:64) ~[ExcellentCrates-5.0.0.jar:?]
    at NexEngine.jar/su.nexmedia.engine.NexPlugin.loadManagers(NexPlugin.java:219) ~[NexEngine.jar:?]
    at NexEngine.jar/su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:78) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "java.lang.Class.getName()" because "clazz" is null
    at io.papermc.paper.pluginremap.reflect.PaperReflection.mapDeclaredMethodName(PaperReflection.java:62) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredMethod(AbstractDefaultRulesReflectionProxy.java:95) ~[reflection-rewriter-runtime-0.0.1.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredMethod(Unknown Source) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at NexEngine.jar/su.nexmedia.engine.utils.Reflex.getMethod(Reflex.java:139) ~[NexEngine.jar:?]
    at NexEngine.jar/su.nexmedia.engine.utils.ItemUtil.<clinit>(ItemUtil.java:38) ~[NexEngine.jar:?]
    ... 19 more
[18:50:55] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v5.0.0
[18:50:55] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[18:50:55] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[18:50:55] [Server thread/INFO]: [TAB] Enabling TAB v4.1.6
[18:50:55] [Server thread/INFO]: [TAB] Loaded NMS hook in 121ms
[18:50:56] [Server thread/INFO]: [TAB] Enabled in 736ms
[18:50:56] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[18:50:57] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[18:50:58] [Server thread/INFO]: [ajLeaderboards] Loaded 2 boards
[18:50:58] [Server thread/ERROR]: Error occurred while enabling ajLeaderboards v2.8.0 (Is it up to date?)
java.lang.NoClassDefFoundError: Could not initialize class me.clip.placeholderapi.PlaceholderAPIPlugin
    at PlaceholderAPI-2.11.5.jar/me.clip.placeholderapi.expansion.PlaceholderExpansion.getPlaceholderAPI(PlaceholderExpansion.java:167) ~[PlaceholderAPI-2.11.5.jar:?]
    at PlaceholderAPI-2.11.5.jar/me.clip.placeholderapi.expansion.PlaceholderExpansion.register(PlaceholderExpansion.java:147) ~[PlaceholderAPI-2.11.5.jar:?]
    at ajLeaderboards-2.8.0.jar/us.ajg0702.leaderboards.LeaderboardPlugin.onEnable(LeaderboardPlugin.java:198) ~[ajLeaderboards-2.8.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3 [in thread "Server thread"]
    at PlaceholderAPI-2.11.5.jar/me.clip.placeholderapi.PlaceholderAPIPlugin.<clinit>(PlaceholderAPIPlugin.java:58) ~[PlaceholderAPI-2.11.5.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:532) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:286) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    ... 3 more
[18:50:58] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.8.0
[18:50:58] [pool-127-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[18:50:58] [pool-127-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[18:50:58] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[18:50:58] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[18:50:58] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 disabled.
[18:50:58] [Server thread/INFO]: [GraveStonesPlus] Enabling GraveStonesPlus v1.6.3
[18:50:58] [Server thread/INFO]: [GraveStonesPlus] Loaded LuckPerms hook!
[18:50:58] [Server thread/WARN]: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.craftbukkit.inventory.CraftItemStack
[18:50:58] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[18:50:58] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[18:50:58] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[18:50:58] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[18:50:58] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:534)
[18:50:58] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:513)
[18:50:58] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68)
[18:50:58] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source)
[18:50:58] [Server thread/WARN]:     at GraveStonesPlus.jar//com.bencodez.gravestonesplus.advancedcore.nms.ReflectionUtils.getClassForName(ReflectionUtils.java:27)
[18:50:58] [Server thread/WARN]:     at GraveStonesPlus.jar//com.bencodez.gravestonesplus.advancedcore.api.skull.SkullHandler.load(SkullHandler.java:122)
[18:50:58] [Server thread/WARN]:     at GraveStonesPlus.jar//com.bencodez.gravestonesplus.advancedcore.AdvancedCorePlugin.loadHook(AdvancedCorePlugin.java:550)
[18:50:58] [Server thread/WARN]:     at GraveStonesPlus.jar//com.bencodez.gravestonesplus.advancedcore.AdvancedCorePlugin.onEnable(AdvancedCorePlugin.java:961)
[18:50:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:50:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:50:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:50:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:50:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[18:50:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[18:50:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[18:50:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[18:50:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[18:50:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[18:50:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:58] [Server thread/ERROR]: Error occurred while enabling GraveStonesPlus v1.6.3 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "java.lang.Class.getName()" because "clazz" is null
    at io.papermc.paper.pluginremap.reflect.PaperReflection.mapDeclaredMethodName(PaperReflection.java:62) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredMethod(AbstractDefaultRulesReflectionProxy.java:95) ~[reflection-rewriter-runtime-0.0.1.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredMethod(Unknown Source) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at GraveStonesPlus.jar/com.bencodez.gravestonesplus.advancedcore.api.skull.SkullHandler.load(SkullHandler.java:131) ~[GraveStonesPlus.jar:?]
    at GraveStonesPlus.jar/com.bencodez.gravestonesplus.advancedcore.AdvancedCorePlugin.loadHook(AdvancedCorePlugin.java:550) ~[GraveStonesPlus.jar:?]
    at GraveStonesPlus.jar/com.bencodez.gravestonesplus.advancedcore.AdvancedCorePlugin.onEnable(AdvancedCorePlugin.java:961) ~[GraveStonesPlus.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[18:50:58] [Server thread/INFO]: [GraveStonesPlus] Disabling GraveStonesPlus v1.6.3
[18:50:58] [Server thread/INFO]: [GraveStonesPlus] Allowing background tasks to finish, this could take up to 5 seconds
[18:50:58] [Server thread/ERROR]: Error occurred while disabling GraveStonesPlus v1.6.3
java.lang.NullPointerException: Cannot invoke "java.util.List.iterator()" because "graves" is null
    at GraveStonesPlus.jar/com.bencodez.gravestonesplus.config.GraveLocations.setGraves(GraveLocations.java:28) ~[GraveStonesPlus.jar:?]
    at GraveStonesPlus.jar/com.bencodez.gravestonesplus.GraveStonesPlus.onUnLoad(GraveStonesPlus.java:279) ~[GraveStonesPlus.jar:?]
    at GraveStonesPlus.jar/com.bencodez.gravestonesplus.advancedcore.AdvancedCorePlugin.onDisable(AdvancedCorePlugin.java:937) ~[GraveStonesPlus.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[18:50:58] [Server thread/INFO]: [MessageAnnouncer] Enabling MessageAnnouncer v1.12.3
[18:50:58] [Server thread/ERROR]: [MessageAnnouncer] There was an error trying to find the server version!
java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at MessageAnnouncer-1.12.3.jar/me.clip.messageannouncer.MessageAnnouncer.setupCompatibility(MessageAnnouncer.java:62) ~[MessageAnnouncer-1.12.3.jar:?]
    at MessageAnnouncer-1.12.3.jar/me.clip.messageannouncer.MessageAnnouncer.onEnable(MessageAnnouncer.java:36) ~[MessageAnnouncer-1.12.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[18:50:58] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.12
[18:50:58] [Server thread/INFO]: [BetterRTP] Cooldown = 150
[18:50:59] [Server thread/INFO]: Running delayed init tasks
[18:50:59] [Craft Scheduler Thread - 5 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[18:50:59] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[18:50:59] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the bike shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Craft Scheduler Thread - 10 - Vault/INFO]: [Vault] Checking for Updates ... 
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the broom shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the car shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the helicopter shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the parachute shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the plane shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the submarine shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the tank shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the train shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the hoverbike shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the sportbike shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the racingcar shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the mecha shop, disabling...
[18:50:59] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
[18:50:59] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2418)
[18:50:59] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1904)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
[18:50:59] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[18:50:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1147)
[18:50:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[18:50:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:50:59] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[18:50:59] [Craft Scheduler Thread - 7 - CMILib/INFO]: New version of CMILib was detected. Please update it
[18:50:59] [Craft Scheduler Thread - 10 - Vault/INFO]: [Vault] No new version available
[18:50:59] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loaded 5 holograms!
[18:50:59] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[18:50:59] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[18:50:59] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[18:50:59] [Craft Scheduler Thread - 6 - Essentials/INFO]: [Essentials] Fetching version information...
[18:50:59] [Server thread/INFO]: [Skript] Loading variables...
[18:50:59] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[18:50:59] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[18:50:59] [Server thread/INFO]: [Skript] Loaded 2 scripts with a total of 5 structures in 0.15 seconds
[18:50:59] [Server thread/INFO]: [Skript] Finished loading.
[18:51:00] [Server thread/INFO]: [AuraSkills] Loaded 15 skills with 314 total sources
[18:51:00] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[18:51:00] [Server thread/INFO]: [AuraSkills] Loaded 30 pattern rewards and 0 level rewards
[18:51:00] [Server thread/INFO]: [AuraSkills] Loaded 32 loot entries in 4 pools and 2 tables
[18:51:01] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[18:51:01] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.0.3, you're on: 4.9.2
[18:51:01] [Server thread/INFO]: Done (87.764s)! For help, type "help"
[18:51:01] [Server thread/INFO]: Timings Reset
[18:51:01] [Server thread/INFO]: Stopping the server
[18:51:01] [Server thread/INFO]: Stopping server
[18:51:01] [Server thread/INFO]: [MessageAnnouncer] Disabling MessageAnnouncer v1.12.3
[18:51:01] [Server thread/INFO]: [TAB] Disabling TAB v4.1.6
[18:51:01] [Server thread/INFO]: [TAB] Disabled in 0ms
[18:51:01] [Server thread/INFO]: [AuraSkills] Disabling AuraSkills v2.2.1
[18:51:01] [Server thread/INFO]: [MyPortalsCommands] Disabling MyPortalsCommands v2.3.1
[18:51:01] [Server thread/INFO]: [Skript] Disabling Skript v2.8.7
[18:51:01] [Server thread/ERROR]: Error occurred while disabling Skript v2.8.7
org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register task while disabled
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.validate(CraftScheduler.java:550) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.runTaskTimer(CraftScheduler.java:226) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.runTaskTimer(CraftScheduler.java:211) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.runTaskLater(CraftScheduler.java:175) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.runTask(CraftScheduler.java:144) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at Skript-2.8.7.jar/ch.njol.skript.structures.StructCommand.scheduleCommandSync(StructCommand.java:341) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.structures.StructCommand.postUnload(StructCommand.java:334) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.ScriptLoader.unloadScripts(ScriptLoader.java:845) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.Skript.beforeDisable(Skript.java:1194) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.Skript.onDisable(Skript.java:1204) ~[Skript-2.8.7.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:161) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:595) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:978) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:842) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1273) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-148-20f5165]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[18:51:01] [Server thread/INFO]: [AdvancedBan] Disabling AdvancedBan v2.3.0
[18:51:01] [Server thread/INFO]: [hsqldb.db.HSQLDB9126AE785E.ENGINE] Database closed
[18:51:01] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[18:51:01] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[18:51:01] [Server thread/INFO]: 
 
[]=====[Disabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
[]================================[]
 
[18:51:01] [Server thread/INFO]: [MortisBountySystem] Disabling MortisBountySystem v1.1
[18:51:01] [Server thread/INFO]: [Jobs] Disabling Jobs v5.2.2.3
[18:51:01] [Server thread/INFO]: ------------- Jobs -------------
[18:51:01] [Server thread/INFO]: Cleared boss bar cache
[18:51:01] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[18:51:01] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[18:51:01] [Server thread/INFO]: Saved player data
[18:51:01] [Server thread/INFO]: Closed database connection
[18:51:01] [Server thread/INFO]: ------------------------------------
[18:51:01] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.0-dev+107-7b02d22
[18:51:01] [Server thread/INFO]: [MortisItemsPlus] Disabling MortisItemsPlus v1.1
[18:51:01] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v22.4
[18:51:01] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[18:51:02] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v22.4
[18:51:02] [Server thread/INFO]: [EconomyShopGUI] Disabling EconomyShopGUI v6.7.9
[18:51:02] [Server thread/INFO]: [Vehicles] Disabling Vehicles v14.8.1
[18:51:02] [Server thread/INFO]: [SimpleRename] Disabling SimpleRename v13.9
[18:51:02] [Server thread/INFO]: SimpleRename disabled!
[18:51:02] [Server thread/INFO]: [UltimateAutoRestart] Disabling UltimateAutoRestart v2024.07
[18:51:02] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v1.3.0-b10
[18:51:02] [Server thread/INFO]: [AuctionHouse] Saved 1 layouts.
[18:51:02] [Server thread/INFO]: [AuctionHouse] Zipped log 2024-08-10-004.
[18:51:02] [Server thread/INFO]: [ServersNPC] Disabling ServersNPC v4.7
[18:51:02] [Server thread/INFO]: [PlugManX] Disabling PlugManX v2.4.1
[18:51:02] [Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.2.3
[18:51:02] [Server thread/INFO]: [SkinsRestorer] Disabling SkinsRestorer v15.4.0
[18:51:02] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.12
[18:51:02] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.9
[18:51:02] [Server thread/INFO]: [MortisCore] Disabling MortisCore v1.0
[18:51:02] [Server thread/INFO]: [GriefPrevention] Disabling GriefPrevention v16.18.2
[18:51:02] [Server thread/INFO]: [GriefPrevention] GriefPrevention disabled.
[18:51:02] [Server thread/INFO]: [CMILib] Disabling CMILib v1.4.5.1
[18:51:02] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.21.0-dev+107-7b02d22
[18:51:02] [Server thread/INFO]: [ViaRewind] Disabling ViaRewind v3.0.6-SNAPSHOT
[18:51:02] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.12
[18:51:02] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.0-dev+107-7b02d22
[18:51:02] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[18:51:02] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.9+5934e49
[18:51:02] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[18:51:02] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v4.9.1
[18:51:02] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.2.19+6642-415ef95
[18:51:03] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[18:51:03] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[18:51:03] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.134
[18:51:03] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[18:51:03] [Server thread/INFO]: [LuckPerms] Closing messaging service...
[18:51:03] [Server thread/INFO]: [LuckPerms] Closing storage...
[18:51:03] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Shutdown initiated...
[18:51:03] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Shutdown completed.
[18:51:03] [Server thread/INFO]: [LuckPerms] Goodbye!
[18:51:03] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v4.9.2
[18:51:03] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[18:51:03] [Server thread/INFO]: Saving players
[18:51:03] [Server thread/INFO]: Saving worlds
[18:51:03] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[18:51:03] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[18:51:03] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[18:51:03] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[18:51:04] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world' in 1.19s
[18:51:04] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[18:51:04] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[18:51:04] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[18:51:04] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[18:51:04] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_nether' in 0.70s
[18:51:05] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[18:51:05] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.16s
[18:51:05] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[18:51:05] [Server thread/INFO]: Saving chunks for level 'ServerLevel[spawn]'/minecraft:spawn
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'spawn'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'spawn'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'spawn'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'spawn' in 0.31s
[18:51:05] [Server thread/INFO]: ThreadedAnvilChunkStorage (spawn): All chunks are saved
[18:51:05] [Server thread/INFO]: Saving chunks for level 'ServerLevel[spawn_backup]'/minecraft:spawn_backup
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'spawn_backup'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'spawn_backup'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'spawn_backup'
[18:51:05] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'spawn_backup' in 0.32s
[18:51:06] [Server thread/INFO]: ThreadedAnvilChunkStorage (spawn_backup): All chunks are saved
[18:51:06] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_backup]'/minecraft:world_backup
[18:51:06] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_backup'
[18:51:06] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_backup'
[18:51:06] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_backup'
[18:51:06] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_backup' in 0.40s
[18:51:06] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_backup): All chunks are saved
[18:51:06] [Server thread/INFO]: Saving chunks for level 'ServerLevel[pvp]'/minecraft:pvp
[18:51:06] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'pvp'
[18:51:06] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'pvp'
[18:51:06] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'pvp'
[18:51:06] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'pvp' in 0.25s
[18:51:06] [Server thread/INFO]: ThreadedAnvilChunkStorage (pvp): All chunks are saved
[18:51:06] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[18:51:06] [Server thread/INFO]: Flushing Chunk IO
[18:51:06] [Server thread/INFO]: Closing Thread Pool
[18:51:06] [Server thread/INFO]: Closing Server