Paste #121550: Server

Date: 2024/04/02 04:54:50 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[13:46:08] [ServerMain/INFO]: Building unoptimized datafixer
[13:46:15] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[13:46:24] [ServerMain/INFO]: Loaded 7 recipes
[13:46:33] [Server thread/INFO]: Starting minecraft server version 1.19.2
[13:46:33] [Server thread/WARN]: ****************************
[13:46:33] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[13:46:33] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[13:46:33] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[13:46:33] [Server thread/WARN]: ****************************
[13:46:33] [Server thread/INFO]: Loading properties
[13:46:33] [Server thread/INFO]: This server is running Paper version git-Paper-307 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: 476ef25)
[13:46:33] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:46:33] [Server thread/INFO]: Using 6 threads for Netty based IO
[13:46:34] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[13:46:36] [Server thread/INFO]: Default game type: SURVIVAL
[13:46:36] [Server thread/INFO]: Generating keypair
[13:46:36] [Server thread/INFO]: Starting Minecraft server on 45.93.250.178:44956
[13:46:36] [Server thread/INFO]: Using epoll channel type
[13:46:36] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[13:46:36] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[13:46:42] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[13:47:01] [Server thread/WARN]: Legacy plugin MysqlEcoBridge v3.4.1 does not specify an api-version.
[13:47:02] [Server thread/WARN]: Legacy plugin KillerMoney v4.6.0 does not specify an api-version.
[13:47:04] [Server thread/INFO]: [CloudNet-Bridge] Loading CloudNet-Bridge v1.2
[13:47:04] [Server thread/INFO]: [SepareWorldItems] Loading SepareWorldItems v1.2.20
[13:47:04] [Server thread/INFO]: [OneWayElytra] Loading OneWayElytra v1.0
[13:47:04] [Server thread/ERROR]: [org.bukkit.craftbukkit.v1_19_R1.CraftServer] This version of Minecraft is unsupported: This version of Minecraft is unsupported: 1.19.2 initializing OneWayElytra v1.0 (Is it up to date?)
dev.jorel.commandapi.exceptions.UnsupportedVersionException: This version of Minecraft is unsupported: This version of Minecraft is unsupported: 1.19.2
    at dev.jorel.commandapi.CommandAPIVersionHandler.getNMS(CommandAPIVersionHandler.java:41) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at dev.jorel.commandapi.CommandAPIHandler.<init>(CommandAPIHandler.java:151) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at dev.jorel.commandapi.CommandAPIHandler.getInstance(CommandAPIHandler.java:138) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at dev.jorel.commandapi.CommandAPI.onLoad(CommandAPI.java:156) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at de.greenman999.onewayelytra.OneWayElytra.onLoad(OneWayElytra.java:44) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.loadPlugins(CraftServer.java:429) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:47:04] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.5
[13:47:04] [Server thread/INFO]: [FriendsAPIForPartyAndFriends] Loading FriendsAPIForPartyAndFriends v1.6.1-RELEASE
[13:47:04] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.4
[13:47:04] [Server thread/INFO]: [CommandTimer] Loading CommandTimer v8.5.4
[13:47:04] [Server thread/INFO]: [Blue Slime Core] Loading BlueSlimeCore v2.9.4.402
[13:47:04] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.9.3
[13:47:04] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.3 is now loaded. Registering protocol transformers and injecting...
[13:47:06] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[13:47:07] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[13:47:07] [Server thread/INFO]: [ViaBackwards] Loading translations...
[13:47:07] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[13:47:09] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.12.2
[13:47:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[13:47:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[13:47:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[13:47:09] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.9.2
[13:47:09] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.121
[13:47:11] [Thread-8/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[13:47:11] [Thread-8/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.12.2' Newest Version: 2.12.3'
[13:47:11] [Thread-8/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:47:11] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[13:47:11] [Server thread/INFO]: [JSEngine] Loading JSEngine v3.3.0
[13:47:11] [Server thread/INFO]: [spark] Loading spark v1.10.34
[13:47:11] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.1.0
[13:47:16] [Server thread/INFO]: [NoCropTrample] Loading NoCropTrample v1.0.0-RELEASE
[13:47:16] [Server thread/INFO]: [TheBridge] Loading TheBridge v2.0.7
[13:47:16] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[13:47:16] [Server thread/INFO]: [AlonsoLevels] Loading AlonsoLevels v2.3.2-BETA-PRO
[13:47:16] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v15.0.7
[13:47:16] [Server thread/INFO]: [MysqlEconomyBank] Loading MysqlEconomyBank v1.16.4
[13:47:16] [Server thread/INFO]: [BungeeGuard] Loading BungeeGuard v1.3-SNAPSHOT
[13:47:16] [Server thread/INFO]: [LPC] Loading LPC v3.6.0
[13:47:16] [Server thread/INFO]: [NoBlackSky] Loading NoBlackSky v2.1
[13:47:16] [Server thread/INFO]: [NoBlackSky] Detected 1.19.2 server version
[13:47:16] [Server thread/INFO]: [MysqlEcoBridge] Loading MysqlEcoBridge v3.4.1
[13:47:16] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.6
[13:47:16] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.12
[13:47:16] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.6.4-SNAPSHOT-478;dae6c69
[13:47:21] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@10ba1eca]
[13:47:22] [Server thread/INFO]: [PlatinumArenas] Loading PlatinumArenas v0.7.5
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.8.0
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[13:47:22] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[13:47:22] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.14.0-Release
[13:47:22] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[13:47:22] [Server thread/INFO]: [PlayerKits2] Loading PlayerKits2 v1.9.2
[13:47:22] [Server thread/INFO]: [TAB] Loading TAB v4.1.2
[13:47:22] [Server thread/INFO]: [LootChest] Loading LootChest v2.4.0
[13:47:22] [Server thread/INFO]: [VoidTeleport] Loading VoidTeleport v2.4.3
[13:47:22] [Server thread/INFO]: [DeluxeHub] Loading DeluxeHub v3.5.5
[13:47:22] [Server thread/INFO]: [KillerMoney] Loading KillerMoney v4.6.0
[13:47:22] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.8+33cdb4a
[13:47:22] [Server thread/INFO]: [BetterTeams] Loading BetterTeams v4.9.1
[13:47:22] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[13:47:22] [Server thread/INFO]: [BetterTeams] File is up to date
[13:47:22] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.3
[13:47:22] [Server thread/INFO]: [SimpleScore] Loading SimpleScore v3.12.5
[13:47:23] [Server thread/INFO]: [Essentials] Loading Essentials v2.21.0-dev+73-2cb0af0
[13:47:23] [Server thread/INFO]: [SpeedBridge2] Loading SpeedBridge2 v1.1.0-56546dbe
[13:47:23] [Server thread/INFO]: [CustomJoinMessages] Loading CustomJoinMessages v17.3.2
[13:47:23] [Server thread/INFO]: [ntdLuckyBlock] Loading ntdLuckyBlock v2.8.18
[13:47:23] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.33-SNAPSHOT (build 3376)
[13:47:23] [Server thread/INFO]: [ItemJoin] Loading ItemJoin v6.0.5-RELEASE-b928
[13:47:23] [Server thread/INFO]: [ProCosmetics] Loading ProCosmetics v13.9.4
[13:47:23] [Server thread/INFO]: [GCore] Loading GCore v8.48.0
[13:47:23] [Server thread/INFO]: [WarpSystem] Loading WarpSystem v5.1.10-free
[13:47:23] [Server thread/INFO]: [CombatLogX] Loading CombatLogX v11.4.0.1.1193
[13:47:23] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[13:47:23] [Server thread/INFO]: [CombatLogX] Loading expansions...
[13:47:23] [Server thread/INFO]: [CombatLogX] There were no expansions to load.
[13:47:23] [Server thread/INFO]: [CustomCommands] Loading CustomCommands v4.3.0
[13:47:23] [Server thread/INFO]: [DeathMessages] Loading DeathMessages v1.4.15
[13:47:23] [Server thread/INFO]: [Duels] Loading Duels v3.5.3
[13:47:23] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.3.7
[13:47:23] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:47:23] [Server thread/INFO]: [FriendsAPIForPartyAndFriends] Enabling FriendsAPIForPartyAndFriends v1.6.1-RELEASE
[13:47:24] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.402
[13:47:24] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[13:47:24] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[13:47:26] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.121
[13:47:30] [Server thread/INFO]:         __    
[13:47:30] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.121
[13:47:30] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[13:47:30] [Server thread/INFO]: 
[13:47:30] [Server thread/INFO]: [LuckPerms] Loading configuration...
[13:47:33] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[13:47:33] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[13:47:34] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[13:47:38] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[13:47:41] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[13:47:42] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[13:47:46] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 19288ms)
[13:47:46] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[13:47:46] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[13:47:46] [Server thread/INFO]: [JSEngine] Enabling JSEngine v3.3.0
[13:47:46] [Server thread/INFO]: [JSEngine] JSEngine version 3.3.0 is Enabled
[13:47:46] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[13:47:46] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[13:47:46] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.21.0-dev+73-2cb0af0 which is not a depend or softdepend of this plugin.
[13:47:46] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[13:47:47] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:47:47] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[13:47:48] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[13:47:48] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.7
[13:47:50] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[13:47:50] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[13:47:50] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[13:47:50] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[13:47:50] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[13:47:50] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[13:47:52] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.19.2.
[13:47:52] [Server thread/INFO]: [MysqlEconomyBank] Enabling MysqlEconomyBank v1.16.4
[13:47:52] [Server thread/INFO]: [MysqlEconomyBank] Using economy system: EssentialsX Economy
[13:47:52] [Server thread/INFO]: [MysqlEconomyBank] Using permission system: LuckPerms
[13:47:52] [Server thread/INFO]: [MysqlEconomyBank] Loading the config file...
[13:47:52] [Server thread/INFO]: [MysqlEconomyBank] MysqlEconomyBank loaded successfully!
[13:47:52] [Server thread/INFO]: [MysqlEconomyBank] Interest task is disabled.
[13:47:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: economybank [1.16.4]
[13:47:52] [Server thread/INFO]: [MysqlEconomyBank] PlaceholdersAPI detected and placeholders activated!
[13:47:52] [Server thread/INFO]: [MysqlEconomyBank] MysqlEconomyBank has been successfully loaded!
[13:47:52] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[13:47:52] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[13:47:52] [Server thread/INFO]: [MysqlEcoBridge] Enabling MysqlEcoBridge v3.4.1*
[13:47:52] [Server thread/INFO]: [MysqlEcoBridge] Using economy system: EssentialsX Economy
[13:47:52] [Server thread/INFO]: [MysqlEcoBridge] Loading the config file...
[13:47:52] [Server thread/INFO]: [MysqlEcoBridge] Connecting to the database...
[13:47:52] [Server thread/INFO]: [MysqlEcoBridge] Database connection successful!
[13:47:52] [Server thread/INFO]: [MysqlEcoBridge] Data save task is enabled.
[13:47:52] [Server thread/INFO]: [MysqlEcoBridge] MysqlEcoBridge loaded successfully!
[13:47:52] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.4-SNAPSHOT-478;dae6c69
[13:47:52] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[13:47:53] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[13:47:53] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:47:53] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:47:54] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R1.PaperweightFaweAdapter as the Bukkit adapter
[13:47:57] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 234 build(s) out of date.
You are running build 478, the latest version is build 712.
Update at https://www.spigotmc.org/resources/13932/
[13:47:57] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v6.0.5-RELEASE-b928
[13:47:57] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.7
[13:47:58] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[13:47:58] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[13:47:58] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[13:47:58] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[13:47:58] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[13:47:58] [Server thread/INFO]: Preparing level "world"
[13:47:59] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:47:59] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:01] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:48:02] [Server thread/INFO]: Time elapsed: 637 ms
[13:48:02] [Server thread/INFO]: [CloudNet-Bridge] Enabling CloudNet-Bridge v1.2
[13:48:02] [Server thread/INFO]: [SepareWorldItems] Enabling SepareWorldItems v1.2.20
[13:48:02] [Server thread/INFO]: ------------------------------------
[13:48:02] [Server thread/INFO]:  On SepareWorldItems 1.2.20
[13:48:02] [Server thread/INFO]:  
[13:48:02] [Server thread/INFO]:  Thanks for using SepareWorldItems :D
[13:48:02] [Server thread/INFO]:  Created By: HappyRogelio7
[13:48:02] [Server thread/INFO]:  
[13:48:02] [Server thread/INFO]:  Version Server: git-Paper-307 (MC: 1.19.2)
[13:48:02] [Server thread/INFO]:  
[13:48:02] [Server thread/INFO]:  Discord: https://discord.gg/3EebYUyeUX
[13:48:02] [Server thread/INFO]:  GitHub: https://github.com/HappyRogelio7/SEPARE-WORLD-ITEMS
[13:48:02] [Server thread/INFO]: ------------------------------------
[13:48:02] [Server thread/INFO]:  
[13:48:02] [Server thread/INFO]: ------------------------------------
[13:48:03] [Server thread/INFO]:  [Register]: Load Files.
[13:48:03] [Server thread/INFO]: ------------------------------------
[13:48:03] [Server thread/INFO]:  [Register]: Load Langs Files.
[13:48:03] [Server thread/INFO]: ------------------------------------
[13:48:03] [Server thread/INFO]:  [Register]: Load Commands.
[13:48:03] [Server thread/INFO]: ------------------------------------
[13:48:03] [Server thread/INFO]:  [Register]: Load Events.
[13:48:03] [Server thread/INFO]: ------------------------------------
[13:48:03] [Server thread/INFO]:  [Register]: Reload Files.
[13:48:03] [Server thread/INFO]: ------------------------------------
[13:48:03] [Server thread/INFO]: [OneWayElytra] Enabling OneWayElytra v1.0
[13:48:03] [Server thread/ERROR]: Error occurred while enabling OneWayElytra v1.0 (Is it up to date?)
dev.jorel.commandapi.exceptions.UnsupportedVersionException: This version of Minecraft is unsupported: This version of Minecraft is unsupported: 1.19.2
    at dev.jorel.commandapi.CommandAPIVersionHandler.getNMS(CommandAPIVersionHandler.java:41) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at dev.jorel.commandapi.CommandAPIHandler.<init>(CommandAPIHandler.java:151) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at dev.jorel.commandapi.CommandAPIHandler.getInstance(CommandAPIHandler.java:138) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at dev.jorel.commandapi.CommandAPICommand.register(CommandAPICommand.java:496) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at de.greenman999.onewayelytra.Commands.registerPos1Command(Commands.java:25) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at de.greenman999.onewayelytra.OneWayElytra.registerAllCommands(OneWayElytra.java:38) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at de.greenman999.onewayelytra.OneWayElytra.onEnable(OneWayElytra.java:26) ~[one-way-elytra-1.0-SNAPSHOT-all.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:48:03] [Server thread/INFO]: [OneWayElytra] Disabling OneWayElytra v1.0
[13:48:03] [Server thread/INFO]: [OneWayElytra] Plugin successfully disabled and unloaded!
[13:48:03] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[13:48:04] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[13:48:04] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.4
[13:48:05] [Server thread/INFO]: [CommandTimer] Enabling CommandTimer v8.5.4
[13:48:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandtimer [8.5.4]
[13:48:05] [Server thread/INFO]: [CommandTimer] CommandTimer hooked in PlaceholderAPI
[13:48:05] [Server thread/INFO]: [CommandTimer] Processing task AR-CrystalPvP.json
[13:48:05] [Server thread/INFO]: [CommandTimer] Processing task AR-LuckyPvP.json
[13:48:06] [Server thread/INFO]: [CommandTimer] Server time : 13:48:06
[13:48:06] [Server thread/INFO]: [CommandTimer] Server day : TUESDAY
[13:48:06] [Server thread/INFO]: [CommandTimer] 8.5.4 loaded!
[13:48:06] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.3
[13:48:06] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.1/2 (760)
[13:48:06] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.2
[13:48:06] [Server thread/INFO]: [NBTAPI] Adding listeners...
[13:48:06] [Server thread/INFO]: [NBTAPI] Checking bindings...
[13:48:06] [Thread-13/INFO]: [CommandTimer] Checking for update...
[13:48:06] [Thread-13/INFO]: [CommandTimer] Update found!
[13:48:06] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[13:48:06] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[13:48:06] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[13:48:07] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[13:48:07] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.2
[13:48:07] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[13:48:09] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[13:48:09] [Server thread/INFO]: [spark] Starting background profiler...
[13:48:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.34]
[13:48:10] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[13:48:10] [Server thread/INFO]: [NoCropTrample] Enabling NoCropTrample v1.0.0-RELEASE
[13:48:10] [Server thread/INFO]: [TheBridge] Enabling TheBridge v2.0.7
[13:48:10] [Server thread/INFO]: [TheBridge] Connecting to services, please wait! Server may freeze a bit!
[13:48:10] [Server thread/INFO]: [TheBridge] Hooked with ServiceRegistry! Initialized services properly!
[13:48:10] [Server thread/WARN]: [TheBridge] [Debug] Fetched latest localization file from repository.
[13:48:10] [Server thread/WARN]: [TheBridge] [Debug] Loaded locale Default (Default ID: default) by Internal Plugin
[13:48:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: thebridge [2.0.0]
[13:48:11] [Server thread/INFO]: [TheBridge] -_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_-
[13:48:11] [Server thread/INFO]: [TheBridge] 
[13:48:11] [Server thread/INFO]: [TheBridge] Versions: 
[13:48:11] [Server thread/INFO]: [TheBridge] Plugin: 2.0.7 | Server: git-Paper-307 (MC: 1.19.2) | Detected: v1_19_R1 | Software: Paper | Java: 17.0.6
[13:48:11] [Server thread/INFO]: [TheBridge] 
[13:48:11] [Server thread/INFO]: [TheBridge] This plugin was created by Plugily Projects as part of an open source project ( https://donate.plugily.xyz )
[13:48:11] [Server thread/INFO]: [TheBridge] 
[13:48:11] [Server thread/INFO]: [TheBridge][SUPPORT] If you have any problems, you can always contact us on our Discord server! ( https://discord.plugily.xyz )
[13:48:11] [Server thread/INFO]: [TheBridge][SUPPORT] You can also check out our wiki at https://wiki.plugily.xyz
[13:48:11] [Server thread/INFO]: [TheBridge] 
[13:48:11] [Server thread/INFO]: [TheBridge]                               The plugin got fully enabled! Enjoy the plugin ;)
[13:48:11] [Server thread/INFO]: [TheBridge] -_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_--_-_-_-
[13:48:12] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-1
[13:48:12] [Server thread/INFO]: Time elapsed: 518 ms
[13:48:13] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/lobby
[13:48:14] [Server thread/INFO]: Time elapsed: 759 ms
[13:48:16] [Server thread/INFO]: Arena Fortress-1 instance successfully started!
[13:48:16] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-2
[13:48:17] [Server thread/INFO]: Time elapsed: 941 ms
[13:48:18] [Server thread/INFO]: Arena Fortress-2 instance successfully started!
[13:48:19] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-3
[13:48:19] [Server thread/INFO]: Time elapsed: 108 ms
[13:48:19] [Server thread/INFO]: Arena Fortress-3 instance successfully started!
[13:48:20] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-4
[13:48:20] [Server thread/INFO]: Time elapsed: 66 ms
[13:48:20] [Server thread/INFO]: Arena Fortress-4 instance successfully started!
[13:48:21] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-5
[13:48:21] [Server thread/INFO]: Time elapsed: 115 ms
[13:48:22] [Server thread/INFO]: Arena Fortress-5 instance successfully started!
[13:48:22] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-6
[13:48:23] [Server thread/INFO]: Time elapsed: 246 ms
[13:48:23] [Server thread/INFO]: Arena Fortress-6 instance successfully started!
[13:48:23] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-7
[13:48:24] [Server thread/INFO]: Time elapsed: 144 ms
[13:48:26] [Server thread/INFO]: Arena Fortress-7 instance successfully started!
[13:48:26] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-8
[13:48:26] [Server thread/INFO]: Time elapsed: 72 ms
[13:48:27] [Server thread/INFO]: Arena Fortress-8 instance successfully started!
[13:48:27] [Server thread/INFO]: Preparing start region for dimension minecraft:tb/arena-9
[13:48:27] [Server thread/INFO]: Time elapsed: 141 ms
[13:48:30] [Server thread/INFO]: Arena Fortress-9 instance successfully started!
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Enabling AlonsoLevels v2.3.2-BETA-PRO
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Max health Attribute check found. Using it..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Inventory title with support for more than 32 characters. Skipping..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Hex colors are available! Ready for RGB..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Old constructor for HoverEvent found! Using it..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] New sendTitle method found! Using it..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] New setUnbreakable method found! Using it..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] New isUnbreakable method found! Using it..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Damageable interface is available! Using it to set durability..
[13:48:31] [Server thread/INFO]:     _   _                  _                _      ___          Running v2.3.2-BETA-PRO (v1_19)
[13:48:31] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___| |   _____ _____| |___ | _ \_ _ ___  Server Paper vgit-Paper-307 (MC: 1.19.2)
[13:48:31] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ |__/ -_) V / -_) (_-< |  _/ '_/ _ \ Discord for support: https://alonsoaliaga.com/discord
[13:48:31] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/____\___|\_/\___|_/__/ |_| |_| \___/ Thanks for purchasing my plugin ❤  1567688!
[13:48:31] [Server thread/INFO]:                  Developed by AlonsoAliaga
[13:48:31] [Server thread/INFO]: 
[13:48:31] [Server thread/INFO]: ==============================================================================================
[13:48:31] [Server thread/INFO]: [AlonsoLevels] You are using a Paper fork (Paper), plugin should work fine!
[13:48:31] [Server thread/INFO]: [AlonsoLevels] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[13:48:31] [Server thread/INFO]: ==============================================================================================
[13:48:31] [Server thread/INFO]: 
[13:48:31] [Server thread/INFO]: [AlonsoLevels] BungeeCord action bar available. Hooking..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] ProtocolLib found! Checking..
[13:48:31] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[13:48:31] [Server thread/INFO]: [AlonsoLevels] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] [MySQL] Attempting to create 'alonsolevels' table..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] [MySQL] Attempting to connect to database..
[13:48:31] [Server thread/INFO]: [AlonsoLevels] [MySQL] Error connecting to database!
[13:48:31] [Server thread/WARN]: java.sql.SQLNonTransientConnectionException: Too many connections
[13:48:31] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:110)
[13:48:31] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[13:48:31] [Server thread/WARN]:     at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:828)
[13:48:31] [Server thread/WARN]:     at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448)
[13:48:31] [Server thread/WARN]:     at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
[13:48:31] [Server thread/WARN]:     at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
[13:48:31] [Server thread/WARN]:     at java.sql/java.sql.DriverManager.getConnection(DriverManager.java:681)
[13:48:31] [Server thread/WARN]:     at java.sql/java.sql.DriverManager.getConnection(DriverManager.java:229)
[13:48:31] [Server thread/WARN]:     at AlonsoLevelsPro-v2.3.2-BETA-PRO.jar//com.alonsoaliaga.alonsolevels.others.Database$MySQL.getConnection(Database.java:144)
[13:48:31] [Server thread/WARN]:     at AlonsoLevelsPro-v2.3.2-BETA-PRO.jar//com.alonsoaliaga.alonsolevels.others.Database$MySQL.firstConnection(Database.java:186)
[13:48:31] [Server thread/WARN]:     at AlonsoLevelsPro-v2.3.2-BETA-PRO.jar//com.alonsoaliaga.alonsolevels.others.Database$MySQL.<init>(Database.java:136)
[13:48:31] [Server thread/WARN]:     at AlonsoLevelsPro-v2.3.2-BETA-PRO.jar//com.alonsoaliaga.alonsolevels.AlonsoLevels.onEnable(AlonsoLevels.java:168)
[13:48:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[13:48:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370)
[13:48:31] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542)
[13:48:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565)
[13:48:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479)
[13:48:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636)
[13:48:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422)
[13:48:31] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:306)
[13:48:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1100)
[13:48:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[13:48:31] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[13:48:31] [Server thread/ERROR]: Error occurred while enabling AlonsoLevels v2.3.2-BETA-PRO (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "java.sql.Connection.prepareStatement(String)" because the return value of "com.alonsoaliaga.alonsolevels.others.Database$MySQL.getConnection(boolean)" is null
    at com.alonsoaliaga.alonsolevels.others.Database$MySQL.firstConnection(Database.java:186) ~[AlonsoLevelsPro-v2.3.2-BETA-PRO.jar:?]
    at com.alonsoaliaga.alonsolevels.others.Database$MySQL.<init>(Database.java:136) ~[AlonsoLevelsPro-v2.3.2-BETA-PRO.jar:?]
    at com.alonsoaliaga.alonsolevels.AlonsoLevels.onEnable(AlonsoLevels.java:168) ~[AlonsoLevelsPro-v2.3.2-BETA-PRO.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Disabling AlonsoLevels v2.3.2-BETA-PRO
[13:48:31] [Server thread/INFO]:  
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Plugin has been disabled!
[13:48:31] [Server thread/INFO]: [AlonsoLevels] Thank you for using my plugin!
[13:48:31] [Server thread/INFO]:  
[13:48:31] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[13:48:31] [Server thread/INFO]: [NoBlackSky] Enabling NoBlackSky v2.1
[13:48:32] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.6
[13:48:32] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[13:48:32] [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--].
[13:48:32] [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.
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Hub
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-11
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-10
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: FFA/Main
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-3
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-2
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-5
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-4
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-7
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-6
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-9
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-8
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: PVP/Crystal
[13:48:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:33] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:33] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:34] [Server thread/INFO]: Preparing start region for dimension minecraft:worlds/classickitpvp
[13:48:34] [Server thread/INFO]: Time elapsed: 257 ms
[13:48:34] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:34] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:34] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:34] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: SBI
[13:48:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:34] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:34] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels/Arena-1
[13:48:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:34] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:34] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Lucky/FFA
[13:48:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:34] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:34] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:34] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:34] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:35] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:35] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Soup
[13:48:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
[13:48:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:48:35] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:35] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:35] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:35] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:35] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:35] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[13:48:35] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[13:48:35] [Server thread/INFO]: [Multiverse-Core] 12 - World(s) loaded.
[13:48:35] [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.
[13:48:35] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[13:48:35] [Server thread/INFO]: [PlatinumArenas] Enabling PlatinumArenas v0.7.5
[13:48:35] [Server thread/INFO]: [PlatinumArenas] PlatinumArenas Enabled!
[13:48:35] [Server thread/INFO]: [PlatinumArenas] Loading arenas... this will be done async.
[13:48:35] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[13:48:38] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[13:48:40] [Server thread/INFO]: [ajLeaderboards] Loaded 3 boards
[13:48:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[13:48:40] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[13:48:40] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[13:48:40] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[13:48:40] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[13:48:42] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: game-selector already exists for another menu!
Skipping menu: game-selector
[13:48:42] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: cool-arena already exists for another menu!
Skipping menu: cool-arena
[13:48:42] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: ca-swords already exists for another menu!
Skipping menu: ca-swords
[13:48:42] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: ca-nethpot already exists for another menu!
Skipping menu: ca-nethpot
[13:48:42] [Server thread/INFO]: [DeluxeMenus] 8 GUI menus loaded!
[13:48:42] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[13:48:42] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[13:48:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[13:48:42] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.9.2
[13:48:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.9.2]
[13:48:42] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.9.2
[13:48:42] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[13:48:42] [Server thread/INFO]: There is a new version available. (1.9.3)
[13:48:42] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/playerkits-2
[13:48:42] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[13:48:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[13:48:44] [Server thread/INFO]: [TAB] Enabled in 563ms
[13:48:44] [Server thread/INFO]: [LootChest] Enabling LootChest v2.4.0
[13:48:44] [Server thread/INFO]: [LootChest] Server version: 1.19
[13:48:44] [Server thread/INFO]: [LootChest] Loading config files...
[13:48:44] [Server thread/INFO]: [LootChest] Checking for update...
[13:48:44] [Server thread/INFO]: [LootChest] Starting particles...
[13:48:44] [Server thread/INFO]: [VoidTeleport] Enabling VoidTeleport v2.4.3
[13:48:44] [Server thread/INFO]: 

                ===================================================
                                    VoidTeleport
                ===================================================

                              Current version: 2.4.3
                        You are running the latest version!

                ===================================================

[13:48:44] [Server thread/INFO]: [VoidTeleport] Developed by EndlessGames.
[13:48:44] [Server thread/INFO]: [DeluxeHub] Enabling DeluxeHub v3.5.5
[13:48:44] [Server thread/INFO]: [DeluxeHub]  _   _            _          _    _ 
[13:48:44] [Server thread/INFO]: [DeluxeHub] | \ |_ |  | | \/ |_ |_| | | |_)   _)
[13:48:44] [Server thread/INFO]: [DeluxeHub] |_/ |_ |_ |_| /\ |_ | | |_| |_)   _)
[13:48:44] [Server thread/INFO]: [DeluxeHub] 
[13:48:44] [Server thread/INFO]: [DeluxeHub] Version: 3.5.5
[13:48:44] [Server thread/INFO]: [DeluxeHub] Author: ItsLewizzz
[13:48:44] [Server thread/INFO]: [DeluxeHub] 
[13:48:44] [Server thread/INFO]: [DeluxeHub]  Hooked into PlaceholderAPI
[13:48:44] [Server thread/INFO]: [DeluxeHub] Loaded custom menu 'ps'.
[13:48:44] [Server thread/INFO]: [DeluxeHub] Loaded custom menu 'serverselector'.
[13:48:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[13:48:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[13:48:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DeluxeHub' to create a bStats instance!
[13:48:45] [Server thread/INFO]: [DeluxeHub] Loaded 13 plugin modules.
[13:48:46] [Server thread/INFO]: [DeluxeHub] 
[13:48:46] [Server thread/INFO]: [DeluxeHub] Successfully loaded in 1384ms
[13:48:46] [Server thread/INFO]: [KillerMoney] Enabling KillerMoney v4.6.0*
[13:48:46] [Server thread/WARN]: [[Minecraft]] [KillerMoney] Unknown entity type: PIG_ZOMBIE. Ignoring...
[13:48:46] [Server thread/WARN]: [[Minecraft]] [KillerMoney] Missing money value at PLAYER entity. Money reward disabled.
[13:48:46] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8+33cdb4a
[13:48:47] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-1) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-1) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-1) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-1) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-1'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Lobby) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Lobby) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Lobby) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Lobby) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Lobby'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-2) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-2) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-2) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-2) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-2'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-3) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-3) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-3) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-3) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-3'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-4) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-4) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-4) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-4) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-4'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-5) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-5) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-5) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-5) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-5'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-6) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-6) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-6) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-6) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-6'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-7) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-7) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-7) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-7) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-7'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-8) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-8) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-8) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-8) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-8'
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-9) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-9) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-9) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (TB/Arena-9) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TB/Arena-9'
[13:48:47] [Server thread/INFO]: [WorldGuard] (Worlds/ClassicKitPvP) TNT ignition is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (Worlds/ClassicKitPvP) Lighters are PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (Worlds/ClassicKitPvP) Lava fire is PERMITTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] (Worlds/ClassicKitPvP) Fire spread is UNRESTRICTED.
[13:48:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Worlds/ClassicKitPvP'
[13:48:47] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:48:49] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.9.1
[13:48:49] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[13:48:49] [Server thread/INFO]: [BetterTeams] File is up to date
[13:48:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.9.1]
[13:48:50] [Server thread/INFO]: Display team name config value: prefix
[13:48:50] [Server thread/INFO]: Loading below name. Type: PREFIX
[13:48:50] [Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@6eca26be
[13:48:50] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.3
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[13:48:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[13:48:50] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.5
[13:48:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SimpleScore [3.12.5]
[13:48:53] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+73-2cb0af0
[13:48:55] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[13:48:55] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[13:48:55] [Server thread/INFO]: [Essentials] No kits found to migrate.
[13:48:56] [Server thread/INFO]: [Essentials] Loaded 39095 items from items.json.
[13:48:56] [Server thread/INFO]: [Essentials] Using locale en_US
[13:48:57] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[13:48:58] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[13:48:58] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[13:48:58] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[13:48:58] [Server thread/INFO]: [SpeedBridge2] Enabling SpeedBridge2 v1.1.0-56546dbe
[13:48:59] [Server thread/INFO]: [SpeedBridge2] Searching for a compatible version of WorldEdit...
[13:48:59] [Server thread/INFO]: [SpeedBridge2] Found compatible version of WorldEdit for v1.19.2
[13:48:59] [Server thread/INFO]: [SpeedBridge2] Loading the `config.conf` & 'items.yml'...
[13:49:02] [Server thread/WARN]: [SpeedBridge2] Loaded class kotlin.Metadata from LootChest v2.4.0 which is not a depend or softdepend of this plugin.
[13:49:02] [Server thread/INFO]: [SpeedBridge2] Hooking into PlaceholderAPI...
[13:49:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sb [1.1.0-56546dbe]
[13:49:02] [Server thread/INFO]: [SpeedBridge2] Loading the `speedbridge2` world...
[13:49:15] [spark-asyncsampler-worker-thread/WARN]: [spark] Timed out waiting for world statistics
[13:49:24] [Server thread/INFO]: Preparing start region for dimension minecraft:speedbridge2
[13:49:25] [Server thread/INFO]: Time elapsed: 698 ms
[13:49:25] [Server thread/INFO]: [WorldGuard] (speedbridge2) TNT ignition is PERMITTED.
[13:49:25] [Server thread/INFO]: [WorldGuard] (speedbridge2) Lighters are PERMITTED.
[13:49:25] [Server thread/INFO]: [WorldGuard] (speedbridge2) Lava fire is PERMITTED.
[13:49:25] [Server thread/INFO]: [WorldGuard] (speedbridge2) Fire spread is UNRESTRICTED.
[13:49:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'speedbridge2'
[13:49:25] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[13:49:25] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[13:49:25] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[13:49:25] [Server thread/INFO]: [SpeedBridge2] Registering the commands...
[13:49:25] [Server thread/INFO]: [SpeedBridge2] Loading the Block Menu GUI.
[13:49:25] [Server thread/INFO]: [SpeedBridge2] Loading the database...
[13:49:25] [Server thread/INFO]: [SpeedBridge2] Loading the messages...
[13:49:25] [pool-115-thread-1/INFO]: [SpeedBridge2] Loading the island data...
[13:49:25] [Server thread/INFO]: [SpeedBridge2] Generating `/sb help` message...
[13:49:25] [Server thread/INFO]: [SpeedBridge2] Checking for an update...
[13:49:25] [pool-115-thread-2/INFO]: [SpeedBridge2] Loading the global/session leaderboard...
[13:49:25] [Server thread/INFO]: [CustomJoinMessages] Enabling CustomJoinMessages v17.3.2
[13:49:25] [ForkJoinPool.commonPool-worker-2/INFO]: [SpeedBridge2] You're using the latest version!
[13:49:27] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Asynchronous Tab Completion Support!
[13:49:27] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Brigadier Support!
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Enabling ntdLuckyBlock v2.8.18
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Starting LuckyBlock (ntdLuckyBlock) v2.8.18, build121(12/02/2024), free
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]   ╭╮╱╱╭╮╱╭┳━━━┳╮╭━┳╮╱╱╭┳━━╮╭╮╱╱╭━━━┳━━━┳╮╭━╮
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╱┃┃╱┃┃╭━╮┃┃┃╭┫╰╮╭╯┃╭╮┃┃┃╱╱┃╭━╮┃╭━╮┃┃┃╭╯
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╱┃┃╱┃┃┃╱╰┫╰╯╯╰╮╰╯╭┫╰╯╰┫┃╱╱┃┃╱┃┃┃╱╰┫╰╯╯
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╭┫┃╱┃┃┃╱╭┫╭╮┃╱╰╮╭╯┃╭━╮┃┃╱╭┫┃╱┃┃┃╱╭┫╭╮┃
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]   ┃╰━╯┃╰━╯┃╰━╯┃┃┃╰╮╱┃┃╱┃╰━╯┃╰━╯┃╰━╯┃╰━╯┃┃┃╰╮
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]   ╰━━━┻━━━┻━━━┻╯╰━╯╱╰╯╱╰━━━┻━━━┻━━━┻━━━┻╯╰━╯ NTD
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]           Made with love by DenBeKKer
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] 
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] =-= SUPPORT  BUG REPORTING  FEATURE REQUESTING =-=
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]  > Discord - https://discord.gg/vbYW3sperj
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock]  > Vkontakte - https://vk.com/danirodplay (Rus)
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] =-= SUPPORT  BUG REPORTING  FEATURE REQUESTING =-=
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Loaded main material version
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Loading NMS for your platform (git-Paper-307 (MC: 1.19.2), v1_19_R1)...
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Loading language file "en" by DenBeKKer
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] FastAsyncWorldEdit support enabled
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Vault connected
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] WorldEdit connected
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] WorldGuard connected
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] TokenManager not found
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] SlimeFun not found
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Found 3/5 compatible plugins
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Loading system...
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Loaded 11 internal custom items...
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Loaded 11 custom items... (Total)
[13:49:27] [Server thread/INFO]: [ntdLuckyBlock] Loaded 16 luckyblock types...
[13:49:28] [Server thread/INFO]: [ntdLuckyBlock] System loaded (took 332 ms)...
[13:49:28] [Server thread/WARN]: [ntdLuckyBlock] You are using bugged Spigot version 1.19.0-1.19.3! These versions contains critical issue that breaks plugins that uses PLAYER_HEADs. Enabled beta fix for 1.19.0-1.19.3 using caches.
[13:49:28] [Server thread/WARN]: [ntdLuckyBlock] It is recommended to update to 1.19.4!
[13:49:28] [Server thread/WARN]: [ntdLuckyBlock] CONVERT FACTORY IS STILL UNSUPPORTED ON 1.19.0-1.19.3
[13:49:28] [Server thread/INFO]: [ntdLuckyBlock] If you love my plugin, support me with 5 stars review(https://www.spigotmc.org/resources/92026/) or consider to purchase premium plugin version (https://www.spigotmc.org/resources/94872/)
[13:49:28] [Server thread/INFO]: [ntdLuckyBlock] Enabled (took 665 ms)... 
[13:49:28] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3376)
[13:49:28] [Server thread/INFO]: [Citizens] Loading external libraries
[13:49:29] [Server thread/ERROR]: [Citizens] v2.0.33-SNAPSHOT (build 3376) is not compatible with Minecraft v1_19_R1 - try upgrading Minecraft or Citizens. Disabling...
[13:49:29] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3376)
[13:49:29] [Server thread/INFO]: [ProCosmetics] Enabling ProCosmetics v13.9.4
[13:49:29] [Server thread/INFO]: [ProCosmetics] Initializing...
[13:49:29] [Server thread/INFO]: [ProCosmetics] Initializing configs...
[13:49:29] [Server thread/WARN]: [ProCosmetics]  
[13:49:29] [Server thread/WARN]: [ProCosmetics] This server version is not supported!
[13:49:29] [Server thread/WARN]: [ProCosmetics]  
[13:49:29] [Server thread/ERROR]: Error occurred while enabling ProCosmetics v13.9.4 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at se.file14.procosmetics.util.Q.m(Q.java) ~[ProCosmetics.jar:?]
    at se.file14.procosmetics.util.Q.b(Q.java) ~[ProCosmetics.jar:?]
    at se.file14.procosmetics.util.Q.a(Q.java) ~[ProCosmetics.jar:?]
    at se.file14.procosmetics.util.Q.<init>(Q.java) ~[ProCosmetics.jar:?]
    at se.file14.procosmetics.ProCosmetics.V(ProCosmetics.java) ~[ProCosmetics.jar:?]
    at se.file14.procosmetics.ProCosmetics.onEnable(ProCosmetics.java) ~[ProCosmetics.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "se.file14.procosmetics.user.UserManager.getUsers()" because "this.F" is null
    at se.file14.procosmetics.ProCosmetics.onDisable(ProCosmetics.java) ~[ProCosmetics.jar:?]
    at se.file14.procosmetics.util.d.<clinit>(d.java) ~[ProCosmetics.jar:?]
    ... 17 more
[13:49:29] [Server thread/INFO]: [ProCosmetics] Disabling ProCosmetics v13.9.4
[13:49:29] [Server thread/ERROR]: Error occurred while disabling ProCosmetics v13.9.4 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "se.file14.procosmetics.user.UserManager.getUsers()" because "this.F" is null
    at se.file14.procosmetics.ProCosmetics.onDisable(ProCosmetics.java) ~[ProCosmetics.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:399) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:579) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:374) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:49:29] [Server thread/INFO]: [GCore] Enabling GCore v8.48.0
[13:49:29] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (config)
[13:49:29] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (data)
[13:49:29] [Server thread/INFO]: [GCore-migration] Already processed v8.4 -> v8.5
[13:49:29] [Server thread/INFO]: [GCore-migration] Already processed v8.8 -> v8.9
[13:49:29] [Server thread/INFO]: [GCore-migration] Already processed v8.23 -> v8.24
[13:49:29] [Server thread/INFO]: [GCore-migration] Already processed v8.24 -> v8.25
[13:49:29] [Server thread/INFO]: [GCore-migration] Already processed v8.29 -> v8.30
[13:49:29] [Server thread/INFO]: [GCore-8.48.0] Found server version MC_1_19_R1
[13:49:30] [Server thread/INFO]: [GCore-8.48.0] Loading materials...
[13:49:31] [Server thread/INFO]: [GCore-8.48.0] Loading sounds...
[13:49:32] [Server thread/INFO]: [GCore-8.48.0] Loading particles...
[13:49:32] [Server thread/INFO]: [GCore-8.48.0] Enabled currency VAULT
[13:49:32] [Server thread/INFO]: [GCore-8.48.0] Enabled currency XP_LEVEL
[13:49:32] [Server thread/INFO]: [GCore-8.48.0] Enabled currency XP
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Loading texts...
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Text durationformatdays doesn't exist in default files (not even in en_US)
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Loaded 1 missing text from default lang for generic.yml : durationFormatDays
[13:49:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gcore [1.0.0]
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Enabled integration for PlaceholderAPI
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Initializing worker and caches
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Enabled NPC manager with ProtocolLib
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Registering integrations
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Initializing tasks and listeners
[13:49:33] [Server thread/INFO]: [GCore-8.48.0] Successfully enabled
[13:49:33] [Server thread/INFO]: [WarpSystem] Enabling WarpSystem v5.1.10-free
[13:49:34] [Server thread/INFO]: [WarpSystem]  
[13:49:34] [Server thread/INFO]: [WarpSystem] __________________________________________________________
[13:49:34] [Server thread/INFO]: [WarpSystem]  
[13:49:34] [Server thread/INFO]: [WarpSystem]                        WarpSystem [5.1.10-free]
[13:49:34] [Server thread/INFO]: [WarpSystem]  
[13:49:34] [Server thread/INFO]: [WarpSystem] Status:
[13:49:34] [Server thread/INFO]: [WarpSystem]  
[13:49:34] [Server thread/INFO]: [WarpSystem] MC-Version: 1.19.2 (R0.1-SNAPSHOT, Paper)
[13:49:34] [Server thread/INFO]: [WarpSystem]  
[13:49:34] [Server thread/INFO]: [WarpSystem] Loading features
[13:49:34] [Server thread/INFO]: [WarpSystem]   > Loading RandomTeleports
[13:49:34] [Server thread/INFO]: [WarpSystem]     ...got 3 WorldOption(s)
[13:49:34] [Server thread/INFO]: [WarpSystem]     ...preloading is disabled
[13:49:35] [Server thread/INFO]: [WarpSystem]     ...got 0 InteractBlock(s)
[13:49:35] [Server thread/INFO]: [WarpSystem]   > Loading Icons
[13:49:35] [Server thread/INFO]: [WarpSystem]     > Loading background
[13:49:35] [Server thread/INFO]: [WarpSystem]       ...got 1 background
[13:49:35] [Server thread/INFO]: [WarpSystem]     > Loading Icons
[13:49:35] [Server thread/INFO]: [WarpSystem]       ...got 0 Icons
[13:49:35] [Server thread/INFO]: [WarpSystem]   > Loading PlayerWarps [Bungee: false; TimeDependent: true]
[13:49:35] [Server thread/INFO]: [WarpSystem]     ...got 6 Class(es)
[13:49:35] [Server thread/INFO]: [WarpSystem]     ...got 0 PlayerWarp(s)
[13:49:35] [Server thread/INFO]: [WarpSystem]   > Loading Animations
[13:49:35] [Server thread/INFO]: [WarpSystem]     ...got 0 animation(s)
[13:49:35] [Server thread/INFO]: [WarpSystem]   > Loading Portals
[13:49:35] [Server thread/INFO]: [WarpSystem]     ...got 0 Portal(s)
[13:49:35] [Server thread/INFO]: [WarpSystem]   > Loading WarpSigns
[13:49:35] [Server thread/INFO]: [WarpSystem]     ...got 0 WarpSign(s)
[13:49:35] [Server thread/INFO]: [WarpSystem]   > Loading SimpleWarps
[13:49:35] [Server thread/INFO]: [WarpSystem]     ...got 16 SimpleWarp(s)
[13:49:35] [Server thread/INFO]: [WarpSystem]   > Loading Shortcuts
[13:49:35] [Server thread/INFO]: [WarpSystem]     ...got 0 Shortcut(s)
[13:49:35] [Server thread/INFO]: [WarpSystem]  
[13:49:35] [Server thread/INFO]: [WarpSystem] Loading TeleportManager
[13:49:35] [Server thread/INFO]: [WarpSystem] Starting AutoSaver
[13:49:35] [Server thread/INFO]: [WarpSystem]  
[13:49:35] [Server thread/INFO]: [WarpSystem] Finished (1984ms)
[13:49:35] [Server thread/INFO]: [WarpSystem]  
[13:49:35] [Server thread/INFO]: [WarpSystem] __________________________________________________________
[13:49:35] [Server thread/INFO]: [WarpSystem]  
[13:49:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: warpsystem [5.1.10-free]
[13:49:35] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.4.0.1.1193
[13:49:36] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[13:49:36] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[13:49:36] [Server thread/INFO]: CombatLogX was loaded successfully.
[13:49:36] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[13:49:36] [Server thread/INFO]: [CombatLogX] There were no expansions to enable.
[13:49:36] [Server thread/INFO]: CombatLogX was enabled successfully.
[13:49:36] [Server thread/INFO]: [CustomCommands] Enabling CustomCommands v4.3.0
[13:49:36] [Server thread/INFO]: [CustomCommands-migration] Already processed v3 -> v4 (config)
[13:49:36] [Server thread/INFO]: [CustomCommands-migration] Already processed v3 -> v4 (data)
[13:49:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gcore [1.0.0]
[13:49:36] [Server thread/INFO]: [CustomCommands-4.3.0] Enabled integration for PlaceholderAPI
[13:49:36] [Server thread/INFO]: [CustomCommands-4.3.0] Successfully loaded 1 custom command : entry_spawn
[13:49:36] [Server thread/INFO]: [CustomCommands-4.3.0] Loading texts...
[13:49:36] [Server thread/INFO]: [CustomCommands-4.3.0] Successfully enabled
[13:49:36] [Server thread/INFO]: [DeathMessages] Enabling DeathMessages v1.4.15
[13:49:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deathmessages [1.4.15]
[13:49:36] [Server thread/INFO]: [DeathMessages] PlaceholderAPI Hook Enabled!
[13:49:36] [Server thread/INFO]: [DeathMessages] WorldGuard Hook Enabled!
[13:49:36] [Server thread/INFO]: [DeathMessages] PlugMan found. Adding this plugin to its ignored plugins list due to WorldGuard hook being enabled!
[13:49:36] [Server thread/INFO]: [DeathMessages] bStats Hook Enabled!
[13:49:36] [Server thread/INFO]: [Duels] Enabling Duels v3.5.3
[13:49:37] [Server thread/WARN]: [Duels] Failed to hook into CombatLogX: This version of CombatLogX is not supported. Please try upgrading to the latest version.
[13:49:37] [Server thread/INFO]: [Duels] Successfully hooked into 'Essentials'!
[13:49:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: duels [1.0]
[13:49:37] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[13:49:37] [Server thread/INFO]: [Duels] Using Economy Provider: com.earth2me.essentials.economy.vault.VaultEconomyProvider
[13:49:37] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[13:49:37] [Server thread/INFO]: [Duels] Successfully hooked into 'WorldGuard'!
[13:49:37] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.inventory.ItemStack org.bukkit.inventory.ItemStack.deserialize(java.util.Map)' of class org.bukkit.inventory.ItemStack for deserialization
java.lang.IllegalArgumentException: Newer version! Server downgrades are not supported!
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:145) ~[guava-31.0.1-jre.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.util.CraftMagicNumbers.getMaterial(CraftMagicNumbers.java:264) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.inventory.ItemStack.deserialize(ItemStack.java:508) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at jdk.internal.reflect.GeneratedMethodAccessor65.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:48) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:207) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:191) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.Yaml.loadAs(Yaml.java:457) ~[snakeyaml-1.33.jar:?]
    at me.realized.duels.util.yaml.YamlUtil.bukkitYamlLoadAs(YamlUtil.java:46) ~[Duels-3.5.3.jar:?]
    at me.realized.duels.data.ItemData.toItemStack(ItemData.java:69) ~[Duels-3.5.3.jar:?]
    at me.realized.duels.data.ItemData.toItemStack(ItemData.java:74) ~[Duels-3.5.3.jar:?]
    at me.realized.duels.data.KitData.toKit(KitData.java:55) ~[Duels-3.5.3.jar:?]
    at me.realized.duels.kit.KitManagerImpl.handleLoad(KitManagerImpl.java:88) ~[Duels-3.5.3.jar:?]
    at me.realized.duels.DuelsPlugin.load(DuelsPlugin.java:242) ~[Duels-3.5.3.jar:?]
    at me.realized.duels.DuelsPlugin.onEnable(DuelsPlugin.java:175) ~[Duels-3.5.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:49:37] [Server thread/INFO]: [Duels] There was an error while loading KitManagerImpl! If you believe this is an issue from the plugin, please contact the developer.
[13:49:37] [Server thread/INFO]: [Duels] Disabling Duels v3.5.3
[13:49:37] [Server thread/INFO]: [Duels] Disable process took 22ms.
[13:49:38] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:49:38] [Server thread/INFO]: Running delayed init tasks
[13:49:38] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.8+33cdb4a which is not a depend or softdepend of this plugin.
[13:49:38] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[13:49:38] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[13:49:38] [Craft Scheduler Thread - 8 - ItemJoin/INFO]: [ItemJoin] Running a developer version ... skipping NMS check.
[13:49:39] [Craft Scheduler Thread - 4 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[13:49:39] [Craft Scheduler Thread - 4 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[13:49:39] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] Checking for updates...
[13:49:39] [Craft Scheduler Thread - 8 - ItemJoin/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, PlaceholderAPI, ProtocolLib, Vault }
[13:49:39] [Craft Scheduler Thread - 8 - ItemJoin/INFO]: [ItemJoin] 5 Custom item(s) loaded!
[13:49:39] [Craft Scheduler Thread - 12 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[13:49:39] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/WARN]: [PlatinumArenas] Arena "**BrokenArena**" was made in a newer version of minecraft!
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/WARN]: [PlatinumArenas] PlatinumArenas will attempt to load it but may fail if it runs into unknown blockstates!
[13:49:39] [Craft Scheduler Thread - 12 - Essentials/INFO]: [Essentials] Fetching version information...
[13:49:39] [Craft Scheduler Thread - 12 - Essentials/INFO]: [Essentials] Update checking disabled in config.
[13:49:39] [ForkJoinPool.commonPool-worker-5/WARN]: [PlatinumArenas] Arena "**BrokenArena**" was made in a newer version of minecraft!
[13:49:39] [ForkJoinPool.commonPool-worker-5/WARN]: [PlatinumArenas] PlatinumArenas will attempt to load it but may fail if it runs into unknown blockstates!
[13:49:39] [ForkJoinPool.commonPool-worker-5/WARN]: [PlatinumArenas] Could not locate world "Lucky/FFA" for arena "lucky"! Using default world
[13:49:39] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[13:49:39] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[13:49:39] [ForkJoinPool.commonPool-worker-4/WARN]: [PlatinumArenas] Arena "**BrokenArena**" was made in a newer version of minecraft!
[13:49:39] [ForkJoinPool.commonPool-worker-4/WARN]: [PlatinumArenas] PlatinumArenas will attempt to load it but may fail if it runs into unknown blockstates!
[13:49:39] [Craft Scheduler Thread - 18 - Duels/WARN]: [Duels] Plugin Duels v3.5.3 generated an exception while executing task 111
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at me.realized.duels.data.UserManagerImpl.lambda$handleLoad$24(UserManagerImpl.java:103) ~[Duels-3.5.3.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.2.jar:git-Paper-307]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.2.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     Version: 15.0.7
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     Commit: 301d078
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[13:49:39] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[13:49:39] [ForkJoinPool.commonPool-worker-5/INFO]: [PlatinumArenas] Loaded arena "lucky" from file lucky.datc
[13:49:39] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] You are up to date!
[13:49:39] [Craft Scheduler Thread - 19 - SpeedBridge2/INFO]: [SpeedBridge2] Loading the island leaderboard...
[13:49:39] [Craft Scheduler Thread - 4 - Vault/INFO]: [Vault] Checking for Updates ... 
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/INFO]: [PlatinumArenas] Loaded arena "lifesteal" from file lifesteal.datc
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/WARN]: [PlatinumArenas] Arena "**BrokenArena**" was made in a newer version of minecraft!
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/WARN]: [PlatinumArenas] PlatinumArenas will attempt to load it but may fail if it runs into unknown blockstates!
[13:49:39] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: [DecentHolograms] Loaded 4 holograms!
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/INFO]: [PlatinumArenas] Loaded arena "weaken" from file weaken.datc
[13:49:39] [Craft Scheduler Thread - 4 - Vault/INFO]: [Vault] No new version available
[13:49:39] [ForkJoinPool.commonPool-worker-4/INFO]: [PlatinumArenas] Loaded arena "cpvp" from file cpvp.datc
[13:49:39] [ForkJoinPool.commonPool-worker-4/WARN]: [PlatinumArenas] Arena "**BrokenArena**" was made in a newer version of minecraft!
[13:49:39] [ForkJoinPool.commonPool-worker-4/WARN]: [PlatinumArenas] PlatinumArenas will attempt to load it but may fail if it runs into unknown blockstates!
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/WARN]: [PlatinumArenas] Arena "**BrokenArena**" was made in a newer version of minecraft!
[13:49:39] [ForkJoinPool.commonPool-worker-4/INFO]: [PlatinumArenas] Loaded arena "uhc" from file uhc.datc
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/WARN]: [PlatinumArenas] PlatinumArenas will attempt to load it but may fail if it runs into unknown blockstates!
[13:49:39] [ForkJoinPool.commonPool-worker-5/WARN]: [PlatinumArenas] Arena "**BrokenArena**" was made in a newer version of minecraft!
[13:49:39] [ForkJoinPool.commonPool-worker-5/WARN]: [PlatinumArenas] PlatinumArenas will attempt to load it but may fail if it runs into unknown blockstates!
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/WARN]: [PlatinumArenas] Could not locate world "PVP/Crystal" for arena "crystalpvp"! Using default world
[13:49:39] [Craft Scheduler Thread - 17 - LootChest/INFO]: [LootChest] The plugin seems up to date.
[13:49:39] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:49:39] [Server thread/WARN]: [Duels] Task #109 for Duels v3.5.3 generated an exception
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at me.realized.duels.player.PlayerInfoManager.lambda$new$42(PlayerInfoManager.java:70) ~[Duels-3.5.3.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1114) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:49:39] [Server thread/WARN]: [Duels] Task #110 for Duels v3.5.3 generated an exception
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at me.realized.duels.duel.DuelManager.lambda$new$53(DuelManager.java:111) ~[Duels-3.5.3.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1114) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:49:39] [Server thread/INFO]: Done (186.478s)! For help, type "help"
[13:49:39] [Server thread/INFO]: Timings Reset
[13:49:39] [Craft Scheduler Thread - 15 - SpeedBridge2/INFO]: [SpeedBridge2] The database has been fully loaded.
[13:49:39] [ForkJoinPool.commonPool-worker-5/INFO]: [PlatinumArenas] Loaded arena "manhunt" from file manhunt.datc
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/INFO]: [PlatinumArenas] Loaded arena "crystalpvp" from file crystalpvp.datc
[13:49:39] [Craft Scheduler Thread - 11 - PlatinumArenas/INFO]: [PlatinumArenas] Loaded 7 arenas in 578ms!
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: kdratio [1.1.0]
[13:49:40] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.4]
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[13:49:40] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[13:49:40] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion servertime. Identifier is already in use.
[13:49:40] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion servertime due to an unknown issue.
[13:49:40] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.121 which is not a depend or softdepend of this plugin.
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[13:49:40] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.craftersland.money.Money from MysqlEconomyBank v1.16.4 which is not a depend or softdepend of this plugin.
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: mysqleconomybank [1.0.1]
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[13:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[13:49:40] [Server thread/INFO]: 12 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[13:49:41] [User Authenticator #0/INFO]: UUID of player Bitxception is 86f8fa5a-1adf-4d03-a394-8757158ecc8b
[13:49:44] [Server thread/INFO]: [+] Bitxception
[13:49:44] [Server thread/INFO]: Bitxception[/2.210.100.72:49559] logged in with entity id 407 at ([world]-1169.5226688482796, 80.0, 534.5375227302787)
[13:49:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: friendsapi [1.0]
[13:49:45] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5693ms or 113 ticks behind
[13:49:47] [Server thread/INFO]: [PlatinumArenas] Resetting arena "crystalpvp"!
[13:49:56] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-307 (MC: 1.19.2) ---
[13:49:56] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
[13:49:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:49:56] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[13:49:56] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait task info below: 
[13:49:56] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait: [( -10,-9) in 'world']
[13:49:56] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk holder: NewChunkHolder{world=world, chunkX=-10, chunkZ=-9, entityChunkFromDisk=false, lastChunkCompletion={chunk_class=null,status=null}, currentGenStatus=null, requestedGenStatus=minecraft:full, generationTask=ChunkProgressionTask{class: io.papermc.paper.chunk.system.scheduling.ChunkLoadTask, for world: world, chunk: (-10,-9), hashcode: 1587777810, priority: BLOCKING, status: minecraft:empty, scheduled: true}, generationTaskStatus=minecraft:empty, priority=BLOCKING, priorityLocked=false, neighbourRequestedPriority=IDLE, effective_priority=BLOCKING, oldTicketLevel=33, currentTicketLevel=33, totalNeighboursUsingThisChunk=1, fullNeighbourChunksLoadedBitset=3247335, chunkStatusRaw=0, currentChunkStatus=INACCESSIBLE, pendingChunkStatus=INACCESSIBLE, is_unload_safe=ticket_level, killed=false}
[13:49:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:49:56] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[13:49:56] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: false | State: TIMED_WAITING
[13:49:56] [Paper Watchdog Thread/ERROR]:     Stack:
[13:49:56] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[13:49:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.waitForTasks(BlockableEventLoop.java:148)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:137)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerChunkCache.getChunk(ServerChunkCache.java:450)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getChunk(Level.java:502)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getBlockState(Level.java:780)
[13:49:56] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.getNMS(CraftBlock.java:82)
[13:49:56] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setTypeAndData(CraftBlock.java:195)
[13:49:56] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setBlockData(CraftBlock.java:191)
[13:49:56] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Section.reset(Section.java:129)
[13:49:56] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.loopyReset(Arena.java:172)
[13:49:56] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.reset(Arena.java:148)
[13:49:56] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.resetArena(ResetCommand.java:110)
[13:49:56] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.execute(ResetCommand.java:95)
[13:49:56] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand.lambda$getCommandExecutor$0(ArenaCommand.java:92)
[13:49:56] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand$$Lambda$9387/0x0000000802782338.onCommand(Unknown Source)
[13:49:56] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[13:49:56] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[13:49:56] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916)
[13:49:56] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.runConsoleCommand(TasksManager.java:150)
[13:49:56] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.processCommandExecution(TasksManager.java:258)
[13:49:56] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.lambda$run$0(TasksManager.java:279)
[13:49:56] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1$$Lambda$11816/0x0000000802ff2250.accept(Unknown Source)
[13:49:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.forEach(ArrayList.java:1511)
[13:49:56] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.run(TasksManager.java:278)
[13:49:56] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[13:49:56] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[13:49:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$4355/0x00000008015dbd98.run(Unknown Source)
[13:49:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[13:49:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:49:56] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[13:49:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:01] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-307 (MC: 1.19.2) ---
[13:50:01] [Paper Watchdog Thread/ERROR]: The server has not responded for 15 seconds! Creating thread dump
[13:50:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:01] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[13:50:01] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait task info below: 
[13:50:01] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait: [( -7,-2) in 'world']
[13:50:01] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk holder: NewChunkHolder{world=world, chunkX=-7, chunkZ=-2, entityChunkFromDisk=false, lastChunkCompletion={chunk_class=net.minecraft.world.level.chunk.ProtoChunkExtension,status=minecraft:empty}, currentGenStatus=minecraft:empty, requestedGenStatus=minecraft:full, generationTask=ChunkProgressionTask{class: io.papermc.paper.chunk.system.scheduling.ChunkUpgradeGenericStatusTask, for world: world, chunk: (-7,-2), hashcode: 2081863790, priority: BLOCKING, status: minecraft:structure_starts, scheduled: true}, generationTaskStatus=minecraft:structure_starts, priority=BLOCKING, priorityLocked=false, neighbourRequestedPriority=IDLE, effective_priority=BLOCKING, oldTicketLevel=33, currentTicketLevel=33, totalNeighboursUsingThisChunk=1, fullNeighbourChunksLoadedBitset=3247335, chunkStatusRaw=0, currentChunkStatus=INACCESSIBLE, pendingChunkStatus=INACCESSIBLE, is_unload_safe=ticket_level, killed=false}
[13:50:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:01] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[13:50:01] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: false | State: TIMED_WAITING
[13:50:01] [Paper Watchdog Thread/ERROR]:     Stack:
[13:50:01] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[13:50:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.waitForTasks(BlockableEventLoop.java:148)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:137)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerChunkCache.getChunk(ServerChunkCache.java:450)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getChunk(Level.java:502)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getBlockState(Level.java:780)
[13:50:01] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.getNMS(CraftBlock.java:82)
[13:50:01] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setTypeAndData(CraftBlock.java:195)
[13:50:01] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setBlockData(CraftBlock.java:191)
[13:50:01] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Section.reset(Section.java:129)
[13:50:01] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.loopyReset(Arena.java:172)
[13:50:01] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.reset(Arena.java:148)
[13:50:01] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.resetArena(ResetCommand.java:110)
[13:50:01] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.execute(ResetCommand.java:95)
[13:50:01] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand.lambda$getCommandExecutor$0(ArenaCommand.java:92)
[13:50:01] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand$$Lambda$9387/0x0000000802782338.onCommand(Unknown Source)
[13:50:01] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[13:50:01] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[13:50:01] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916)
[13:50:01] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.runConsoleCommand(TasksManager.java:150)
[13:50:01] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.processCommandExecution(TasksManager.java:258)
[13:50:01] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.lambda$run$0(TasksManager.java:279)
[13:50:01] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1$$Lambda$11816/0x0000000802ff2250.accept(Unknown Source)
[13:50:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.forEach(ArrayList.java:1511)
[13:50:01] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.run(TasksManager.java:278)
[13:50:01] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[13:50:01] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[13:50:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$4355/0x00000008015dbd98.run(Unknown Source)
[13:50:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[13:50:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:01] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[13:50:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:06] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-307 (MC: 1.19.2) ---
[13:50:06] [Paper Watchdog Thread/ERROR]: The server has not responded for 20 seconds! Creating thread dump
[13:50:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:06] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[13:50:06] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait task info below: 
[13:50:06] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait: [( -5,-3) in 'world']
[13:50:06] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk holder: NewChunkHolder{world=world, chunkX=-5, chunkZ=-3, entityChunkFromDisk=false, lastChunkCompletion={chunk_class=null,status=null}, currentGenStatus=null, requestedGenStatus=minecraft:full, generationTask=ChunkProgressionTask{class: io.papermc.paper.chunk.system.scheduling.ChunkLoadTask, for world: world, chunk: (-5,-3), hashcode: 1480579931, priority: COMPLETING, status: minecraft:empty, scheduled: true}, generationTaskStatus=minecraft:empty, priority=BLOCKING, priorityLocked=false, neighbourRequestedPriority=IDLE, effective_priority=BLOCKING, oldTicketLevel=33, currentTicketLevel=33, totalNeighboursUsingThisChunk=1, fullNeighbourChunksLoadedBitset=3247335, chunkStatusRaw=0, currentChunkStatus=INACCESSIBLE, pendingChunkStatus=INACCESSIBLE, is_unload_safe=ticket_level, killed=false}
[13:50:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:06] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[13:50:06] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: false | State: TIMED_WAITING
[13:50:06] [Paper Watchdog Thread/ERROR]:     Stack:
[13:50:06] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[13:50:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.waitForTasks(BlockableEventLoop.java:148)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:137)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerChunkCache.getChunk(ServerChunkCache.java:450)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getChunk(Level.java:502)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getBlockState(Level.java:780)
[13:50:06] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.getNMS(CraftBlock.java:82)
[13:50:06] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setTypeAndData(CraftBlock.java:195)
[13:50:06] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setBlockData(CraftBlock.java:191)
[13:50:06] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Section.reset(Section.java:129)
[13:50:06] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.loopyReset(Arena.java:172)
[13:50:06] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.reset(Arena.java:148)
[13:50:06] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.resetArena(ResetCommand.java:110)
[13:50:06] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.execute(ResetCommand.java:95)
[13:50:06] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand.lambda$getCommandExecutor$0(ArenaCommand.java:92)
[13:50:06] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand$$Lambda$9387/0x0000000802782338.onCommand(Unknown Source)
[13:50:06] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[13:50:06] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[13:50:06] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916)
[13:50:06] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.runConsoleCommand(TasksManager.java:150)
[13:50:06] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.processCommandExecution(TasksManager.java:258)
[13:50:06] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.lambda$run$0(TasksManager.java:279)
[13:50:06] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1$$Lambda$11816/0x0000000802ff2250.accept(Unknown Source)
[13:50:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.forEach(ArrayList.java:1511)
[13:50:06] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.run(TasksManager.java:278)
[13:50:06] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[13:50:06] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[13:50:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$4355/0x00000008015dbd98.run(Unknown Source)
[13:50:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[13:50:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:06] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[13:50:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:11] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-307 (MC: 1.19.2) ---
[13:50:11] [Paper Watchdog Thread/ERROR]: The server has not responded for 25 seconds! Creating thread dump
[13:50:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:11] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[13:50:11] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait task info below: 
[13:50:11] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait: [( -1,5) in 'world']
[13:50:11] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk holder: NewChunkHolder{world=world, chunkX=-1, chunkZ=5, entityChunkFromDisk=false, lastChunkCompletion={chunk_class=null,status=null}, currentGenStatus=null, requestedGenStatus=minecraft:full, generationTask=ChunkProgressionTask{class: io.papermc.paper.chunk.system.scheduling.ChunkLoadTask, for world: world, chunk: (-1,5), hashcode: 360488438, priority: BLOCKING, status: minecraft:empty, scheduled: true}, generationTaskStatus=minecraft:empty, priority=BLOCKING, priorityLocked=false, neighbourRequestedPriority=IDLE, effective_priority=BLOCKING, oldTicketLevel=33, currentTicketLevel=33, totalNeighboursUsingThisChunk=1, fullNeighbourChunksLoadedBitset=3303, chunkStatusRaw=0, currentChunkStatus=INACCESSIBLE, pendingChunkStatus=INACCESSIBLE, is_unload_safe=ticket_level, killed=false}
[13:50:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:11] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[13:50:11] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: false | State: TIMED_WAITING
[13:50:11] [Paper Watchdog Thread/ERROR]:     Stack:
[13:50:11] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[13:50:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.waitForTasks(BlockableEventLoop.java:148)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:137)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerChunkCache.getChunk(ServerChunkCache.java:450)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getChunk(Level.java:502)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getBlockState(Level.java:780)
[13:50:11] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.getNMS(CraftBlock.java:82)
[13:50:11] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setTypeAndData(CraftBlock.java:195)
[13:50:11] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setBlockData(CraftBlock.java:191)
[13:50:11] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Section.reset(Section.java:129)
[13:50:11] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.loopyReset(Arena.java:172)
[13:50:11] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.reset(Arena.java:148)
[13:50:11] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.resetArena(ResetCommand.java:110)
[13:50:11] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.execute(ResetCommand.java:95)
[13:50:11] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand.lambda$getCommandExecutor$0(ArenaCommand.java:92)
[13:50:11] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand$$Lambda$9387/0x0000000802782338.onCommand(Unknown Source)
[13:50:11] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[13:50:11] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[13:50:11] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916)
[13:50:11] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.runConsoleCommand(TasksManager.java:150)
[13:50:11] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.processCommandExecution(TasksManager.java:258)
[13:50:11] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.lambda$run$0(TasksManager.java:279)
[13:50:11] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1$$Lambda$11816/0x0000000802ff2250.accept(Unknown Source)
[13:50:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.forEach(ArrayList.java:1511)
[13:50:11] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.run(TasksManager.java:278)
[13:50:11] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[13:50:11] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[13:50:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$4355/0x00000008015dbd98.run(Unknown Source)
[13:50:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[13:50:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:11] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[13:50:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:15] [spark-asyncsampler-worker-thread/WARN]: [spark] Timed out waiting for world statistics
[13:50:16] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-307 (MC: 1.19.2) ---
[13:50:16] [Paper Watchdog Thread/ERROR]: The server has not responded for 30 seconds! Creating thread dump
[13:50:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:16] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[13:50:16] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait task info below: 
[13:50:16] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait: [( 1,-7) in 'world']
[13:50:16] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk holder: NewChunkHolder{world=world, chunkX=1, chunkZ=-7, entityChunkFromDisk=false, lastChunkCompletion={chunk_class=net.minecraft.world.level.chunk.ProtoChunkExtension,status=minecraft:empty}, currentGenStatus=minecraft:empty, requestedGenStatus=minecraft:full, generationTask=ChunkProgressionTask{class: io.papermc.paper.chunk.system.scheduling.ChunkUpgradeGenericStatusTask, for world: world, chunk: (1,-7), hashcode: 475328542, priority: BLOCKING, status: minecraft:structure_starts, scheduled: true}, generationTaskStatus=minecraft:structure_starts, priority=BLOCKING, priorityLocked=false, neighbourRequestedPriority=IDLE, effective_priority=BLOCKING, oldTicketLevel=33, currentTicketLevel=33, totalNeighboursUsingThisChunk=1, fullNeighbourChunksLoadedBitset=3247335, chunkStatusRaw=0, currentChunkStatus=INACCESSIBLE, pendingChunkStatus=INACCESSIBLE, is_unload_safe=ticket_level, killed=false}
[13:50:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:16] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[13:50:16] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: false | State: TIMED_WAITING
[13:50:16] [Paper Watchdog Thread/ERROR]:     Stack:
[13:50:16] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[13:50:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.waitForTasks(BlockableEventLoop.java:148)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:137)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerChunkCache.getChunk(ServerChunkCache.java:450)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getChunk(Level.java:502)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getBlockState(Level.java:780)
[13:50:16] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.getNMS(CraftBlock.java:82)
[13:50:16] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setTypeAndData(CraftBlock.java:195)
[13:50:16] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setBlockData(CraftBlock.java:191)
[13:50:16] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Section.reset(Section.java:129)
[13:50:16] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.loopyReset(Arena.java:172)
[13:50:16] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.reset(Arena.java:148)
[13:50:16] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.resetArena(ResetCommand.java:110)
[13:50:16] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.execute(ResetCommand.java:95)
[13:50:16] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand.lambda$getCommandExecutor$0(ArenaCommand.java:92)
[13:50:16] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand$$Lambda$9387/0x0000000802782338.onCommand(Unknown Source)
[13:50:16] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[13:50:16] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[13:50:16] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916)
[13:50:16] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.runConsoleCommand(TasksManager.java:150)
[13:50:16] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.processCommandExecution(TasksManager.java:258)
[13:50:16] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.lambda$run$0(TasksManager.java:279)
[13:50:16] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1$$Lambda$11816/0x0000000802ff2250.accept(Unknown Source)
[13:50:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.forEach(ArrayList.java:1511)
[13:50:16] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.run(TasksManager.java:278)
[13:50:16] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[13:50:16] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[13:50:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$4355/0x00000008015dbd98.run(Unknown Source)
[13:50:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[13:50:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:16] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[13:50:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:21] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-307 (MC: 1.19.2) ---
[13:50:21] [Paper Watchdog Thread/ERROR]: The server has not responded for 35 seconds! Creating thread dump
[13:50:21] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:21] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[13:50:21] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait task info below: 
[13:50:21] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk wait: [( 5,-10) in 'world']
[13:50:21] [Paper Watchdog Thread/ERROR]: [ChunkTaskScheduler] Chunk holder: NewChunkHolder{world=world, chunkX=5, chunkZ=-10, entityChunkFromDisk=false, lastChunkCompletion={chunk_class=null,status=null}, currentGenStatus=null, requestedGenStatus=minecraft:full, generationTask=ChunkProgressionTask{class: io.papermc.paper.chunk.system.scheduling.ChunkLoadTask, for world: world, chunk: (5,-10), hashcode: 1430847026, priority: BLOCKING, status: minecraft:empty, scheduled: true}, generationTaskStatus=minecraft:empty, priority=BLOCKING, priorityLocked=false, neighbourRequestedPriority=IDLE, effective_priority=BLOCKING, oldTicketLevel=33, currentTicketLevel=33, totalNeighboursUsingThisChunk=1, fullNeighbourChunksLoadedBitset=3247335, chunkStatusRaw=0, currentChunkStatus=INACCESSIBLE, pendingChunkStatus=INACCESSIBLE, is_unload_safe=ticket_level, killed=false}
[13:50:21] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:21] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[13:50:21] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: false | State: RUNNABLE
[13:50:21] [Paper Watchdog Thread/ERROR]:     Stack:
[13:50:21] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.yield(Native Method)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.waitForTasks(BlockableEventLoop.java:147)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:137)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerChunkCache.getChunk(ServerChunkCache.java:450)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getChunk(Level.java:502)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getBlockState(Level.java:780)
[13:50:21] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.getNMS(CraftBlock.java:82)
[13:50:21] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setTypeAndData(CraftBlock.java:195)
[13:50:21] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.block.CraftBlock.setBlockData(CraftBlock.java:191)
[13:50:21] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Section.reset(Section.java:129)
[13:50:21] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.loopyReset(Arena.java:172)
[13:50:21] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.Arena.reset(Arena.java:148)
[13:50:21] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.resetArena(ResetCommand.java:110)
[13:50:21] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.commands.ResetCommand.execute(ResetCommand.java:95)
[13:50:21] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand.lambda$getCommandExecutor$0(ArenaCommand.java:92)
[13:50:21] [Paper Watchdog Thread/ERROR]:         PlatinumArenas-0.7.5.jar//com.strangeone101.platinumarenas.ArenaCommand$$Lambda$9387/0x0000000802782338.onCommand(Unknown Source)
[13:50:21] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[13:50:21] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[13:50:21] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916)
[13:50:21] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.runConsoleCommand(TasksManager.java:150)
[13:50:21] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager.processCommandExecution(TasksManager.java:258)
[13:50:21] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.lambda$run$0(TasksManager.java:279)
[13:50:21] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1$$Lambda$11816/0x0000000802ff2250.accept(Unknown Source)
[13:50:21] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.forEach(ArrayList.java:1511)
[13:50:21] [Paper Watchdog Thread/ERROR]:         commandtimer-java17.jar//me.playbosswar.com.tasks.TasksManager$1.run(TasksManager.java:278)
[13:50:21] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[13:50:21] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[13:50:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$4355/0x00000008015dbd98.run(Unknown Source)
[13:50:21] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[13:50:21] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:21] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[13:50:21] [Paper Watchdog Thread/ERROR]: ------------------------------
[13:50:25] [Server thread/INFO]: [PlatinumArenas] Resetting arena "lucky"!
[13:50:25] [Server thread/INFO]: [LootChest] Loading chests...
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop01 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop02 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop03 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop04 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop05 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop06 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop07 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop08 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop09 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop10 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop11 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop12 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop13 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop14 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop15 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop16 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop17 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop18 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop19 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop20 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop21 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop22 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop23 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop24 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop25 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop26 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Couldn't load chest AirDrop27 : the world Lucky/FFA is not loaded.
[13:50:25] [Server thread/INFO]: [LootChest] Loaded 0 Lootchests in 1 miliseconds
[13:50:25] [Server thread/INFO]: [LootChest] Starting LootChest timers asynchronously...
[13:50:25] [Server thread/INFO]: [LootChest] Plugin loaded
[13:50:26] [Server thread/INFO]: Bitxception lost connection: Disconnected
[13:50:26] [Server thread/INFO]: [-] Bitxception
[13:50:26] [Server thread/INFO]: Bitxception issued server command: /npc
[13:50:26] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.33-SNAPSHOT (build 3376) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.19.2.jar:git-Paper-307]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[paper-1.19.2.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:305) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:289) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2294) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2248) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:185) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1389) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:50:27] [Server thread/INFO]: Bitxception issued server command: /npc
[13:50:27] [Server thread/INFO]: Bitxception issued server command: /tps
[13:50:35] [Server thread/INFO]: Arena "lucky" reset 5.78% complete
[13:50:41] [Server thread/INFO]: Arena "crystalpvp" reset 5.08% complete
[13:50:46] [Server thread/INFO]: Arena "lucky" reset 14.18% complete
[13:50:50] [Server thread/INFO]: Unknown dimension 'minecraft:lucky/ffa'
[13:50:51] [Server thread/INFO]: [CombatLogX] Using non-NMS Paper EntityHandler
[13:50:52] [Server thread/INFO]: Arena "crystalpvp" reset 11.55% complete
[13:50:56] [Server thread/INFO]: Arena "lucky" reset 28.17% complete
[13:51:02] [Server thread/INFO]: >> All chests were respawned!
[13:51:02] [Server thread/INFO]: Arena "crystalpvp" reset 20.51% complete
[13:51:07] [Server thread/INFO]: Arena "lucky" reset 48.70% complete
[13:51:12] [Server thread/INFO]: Arena "crystalpvp" reset 31.46% complete
[13:51:17] [Server thread/INFO]: Arena "lucky" reset 67.35% complete
[13:51:22] [Server thread/INFO]: Arena "crystalpvp" reset 42.42% complete
[13:51:28] [Server thread/INFO]: Arena "lucky" reset 88.81% complete
[13:51:33] [Server thread/INFO]: Arena "crystalpvp" reset 53.37% complete
[13:51:33] [Server thread/INFO]: [PlatinumArenas] Arena "lucky" reset complete (took 68s)!
[13:51:37] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 82833ms or 1656 ticks behind
[13:51:42] [User Authenticator #1/INFO]: UUID of player Bitxception is 86f8fa5a-1adf-4d03-a394-8757158ecc8b
[13:51:42] [Server thread/INFO]: [+] Bitxception
[13:51:42] [Server thread/INFO]: Bitxception[/2.210.100.72:35983] logged in with entity id 1215 at ([world]-1169.5226688482796, 80.0, 534.5375227302787)
[13:51:43] [Craft Scheduler Thread - 29 - MysqlEcoBridge/INFO]: [MysqlEcoBridge] Saving online players data...
[13:51:43] [Craft Scheduler Thread - 29 - MysqlEcoBridge/INFO]: [MysqlEcoBridge] Data save complete for 1 players.
[13:51:43] [Server thread/INFO]: Arena "crystalpvp" reset 65.82% complete
[13:51:48] [Server thread/INFO]: Bitxception issued server command: /npc
[13:51:48] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.33-SNAPSHOT (build 3376) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.19.2.jar:git-Paper-307]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[paper-1.19.2.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:305) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:289) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2294) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2248) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:185) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1389) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:51:54] [Server thread/INFO]: Arena "crystalpvp" reset 78.26% complete