Paste #135810: DenizenMetaBot Auto-Repaste Of log From arcshadowops

Date: 2025/08/27 08:27:39 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


[13:40:44] [ServerMain/INFO]: [bootstrap] Running Java 21 (Java HotSpot(TM) 64-Bit Server VM 21.0.8+12-LTS-250; Oracle Corporation null) on Windows 11 10.0 (amd64)
[13:40:44] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) for Minecraft 1.21.4
[13:40:45] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[13:40:47] [ServerMain/INFO]: [PluginInitializerManager] Initialized 54 plugins
[13:40:47] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - CommandHook (3.1.0), PlugManX (3.0.1)
[13:40:47] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (52):
 - AmazingTitles (5.1), AxPlayerWarps (1.10.4), ChatColor2 (1.16.1), ChatEx (3.2.2), ChatFilter (2.0.14), ChatGames (2.1.8), ChestShop (3.12.3-SNAPSHOT (build 445)), Chunky (1.4.40), Citizens (2.0.39-SNAPSHOT (build 3897)), CleanroomGenerator (1.2.1), ClearLag (3.2.2), CommandAliases (1.1.0), CreativeItemControl (5.4.14), DecentHolograms (2.9.6), DeluxeCommands (1.11.3), DeluxeMenus (1.14.1-Release), DeluxeTags (1.8.2-Release), DiscordSRV (1.30.0), DynamicAliases (0.0.4), Essentials (2.21.2), EssentialsGeoIP (2.21.2), F3Name (3.3.0), Geyser-Spigot (2.8.3-SNAPSHOT), GriefPrevention (16.18.4), HeadDatabase (4.21.2), HeadDisplays (1.12.5), HubParkour (2.8.2), HubThat (10.1.184), InteractiveChat (4.3.2.0), InteractiveChatDiscordSrvAddon (4.3.2.0), LuckPerms (5.5.11), Multiverse-Core (5.2.1), Multiverse-Inventories (5.1.2), Multiverse-NetherPortals (5.0.3), Multiverse-Portals (5.1.0), Multiverse-SignPortals (5.0.1), MyCommand (5.7.4), NoPlugins (8.1), OpenInv (5.1.13), PlaceholderAPI (2.11.6), ProtocolLib (5.4.0), ServerListPlus (3.5.1-SNAPSHOT), SimpleTabList (4.8), Themis (0.17.6), TradeSystem (2.6.3), Vault (1.7.3-b131), ViaVersion (5.4.2), Wild (2.29-7da6164), WorldEdit (7.3.16+cbf4bd5), WorldGuard (7.0.14+2339-43997ec), WorldGuardExtraFlags (4.2.4-SNAPSHOT), floodgate (2.2.4-SNAPSHOT (b118-40d320a))
[13:40:50] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:40:51] [ServerMain/INFO]: Loaded 1370 recipes
[13:40:51] [ServerMain/INFO]: Loaded 1481 advancements
[13:40:51] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[13:40:52] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 127.5ms
[13:40:52] [Server thread/INFO]: Starting minecraft server version 1.21.4
[13:40:52] [Server thread/INFO]: Loading properties
[13:40:52] [Server thread/INFO]: This server is running Paper version 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[13:40:52] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[13:40:52] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:40:52] [Server thread/INFO]: Using 4 threads for Netty based IO
[13:40:52] [Server thread/INFO]: [MoonriseCommon] Paper is using 6 worker threads, 1 I/O threads
[13:40:52] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[13:40:52] [Server thread/INFO]: Default game type: SURVIVAL
[13:40:52] [Server thread/INFO]: Generating keypair
[13:40:53] [Server thread/INFO]: Starting Minecraft server on *:25565
[13:40:53] [Server thread/INFO]: Using default channel type
[13:40:53] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[13:40:53] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[13:40:53] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'worldguard-bukkit-7.0.14-dist.jar' in folder 'plugins\.paper-remapped'
org.bukkit.plugin.InvalidPluginException: Unsupported API version 1.21.5
    at org.bukkit.craftbukkit.util.CraftMagicNumbers.checkSupported(CraftMagicNumbers.java:379) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:121) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:564) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:277) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:40:54] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'WorldGuardExtraFlags (1).jar' in folder 'plugins\.paper-remapped'
org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: com/sk89q/worldguard/protection/flags/Flag
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:129) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:564) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:277) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.NoClassDefFoundError: com/sk89q/worldguard/protection/flags/Flag
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    ... 9 more
Caused by: java.lang.ClassNotFoundException: com.sk89q.worldguard.protection.flags.Flag
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    ... 9 more
[13:40:54] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'F3Name.jar' in folder 'plugins\.paper-remapped'
org.bukkit.plugin.InvalidPluginException: Exception initializing main class `ua.coolboy.f3name.bukkit.F3NameBukkit'
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:106) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:564) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:277) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.reflect.InvocationTargetException
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:74) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:98) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    ... 10 more
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at F3Name.jar/ua.coolboy.f3name.bukkit.F3NameBukkit.<init>(F3NameBukkit.java:48) ~[F3Name.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:98) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    ... 10 more
[13:40:54] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[13:40:57] [Server thread/WARN]: Legacy plugin DynamicAliases v0.0.4 does not specify an api-version.
[13:40:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[13:40:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\henry\OneDrive\Desktop\Sparkmc\Sparkmc LATEST\libraries\ch\ethz\globis\phtree\phtree\2.8.2\phtree-2.8.2.jar
[13:40:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\henry\OneDrive\Desktop\Sparkmc\Sparkmc LATEST\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[13:40:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\henry\OneDrive\Desktop\Sparkmc\Sparkmc LATEST\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[13:40:58] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.4.2
[13:40:58] [Server thread/INFO]: [ViaVersion] ViaVersion 5.4.2 is now loaded. Registering protocol transformers and injecting...
[13:40:58] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[13:40:58] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[13:40:58] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.11
[13:40:59] [Server thread/INFO]: [LuckPerms] Loading configuration...
[13:40:59] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[13:40:59] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[13:40:59] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[13:40:59] [Server thread/INFO]: [floodgate] Took 411ms to boot Floodgate
[13:40:59] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.16+cbf4bd5
[13:41:00] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@58f1c87d]
[13:41:00] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.2.1
[13:41:00] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.2
[13:41:00] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.8.3-SNAPSHOT
[13:41:00] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[13:41:00] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[13:41:00] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[13:41:00] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.30.0
[13:41:00] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.21.2
[13:41:00] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.4
[13:41:00] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v5.1.0
[13:41:00] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.3.2.0
[13:41:00] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.6
[13:41:00] [Server thread/INFO]: [Wild] Loading server plugin Wild v2.29-7da6164
[13:41:00] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.3
[13:41:00] [Server thread/INFO]: [Themis] Loading server plugin Themis v0.17.6
[13:41:00] [Server thread/INFO]: [SimpleTabList] Loading server plugin SimpleTabList v4.8
[13:41:00] [Server thread/INFO]: [ServerListPlus] Loading server plugin ServerListPlus v3.5.1-SNAPSHOT
[13:41:00] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v3.0.1
[13:41:00] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v5.1.13
[13:41:00] [Server thread/INFO]: [NoPlugins] Loading server plugin NoPlugins v8.1
[13:41:00] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[13:41:00] [Server thread/INFO]: [Multiverse-SignPortals] Loading server plugin Multiverse-SignPortals v5.0.1
[13:41:00] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v5.0.3
[13:41:00] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v5.1.2
[13:41:00] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.3.2.0
[13:41:00] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[13:41:00] [Server thread/INFO]: [HubThat] Loading server plugin HubThat v10.1.184
[13:41:00] [Server thread/INFO]: [HubParkour] Loading server plugin HubParkour v2.8.2
[13:41:00] [Server thread/INFO]: [HeadDisplays] Loading server plugin HeadDisplays v1.12.5
[13:41:00] [Server thread/INFO]: [EssentialsGeoIP] Loading server plugin EssentialsGeoIP v2.21.2
[13:41:00] [Server thread/INFO]: [DynamicAliases] Loading server plugin DynamicAliases v0.0.4
[13:41:00] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[13:41:00] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-Release
[13:41:00] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version! The following Item options will not work: nbt_int, nbt_ints, nbt_string and nbt_strings.
[13:41:00] [Server thread/INFO]: [DeluxeCommands] Loading server plugin DeluxeCommands v1.11.3
[13:41:00] [Server thread/INFO]: [CreativeItemControl] Loading server plugin CreativeItemControl v5.4.14
[13:41:00] [Server thread/INFO]: [CommandHook] Loading server plugin CommandHook v3.1.0
[13:41:00] [Server thread/INFO]: [CommandAliases] Loading server plugin CommandAliases v1.1.0
[13:41:00] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[13:41:00] [Server thread/INFO]: [CleanroomGenerator] Loading server plugin CleanroomGenerator v1.2.1
[13:41:00] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.39-SNAPSHOT (build 3897)
[13:41:00] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.40
[13:41:00] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.3-SNAPSHOT (build 445)
[13:41:01] [Server thread/INFO]: [ChestShop] GriefPrevention version 16.18.4 loaded.
[13:41:01] [Server thread/INFO]: [CG] Loading server plugin ChatGames v2.1.8
[13:41:01] [Server thread/INFO]: [ChatFilter] Loading server plugin ChatFilter v2.0.14
[13:41:01] [Server thread/INFO]: [ChatEx] Loading server plugin ChatEx v3.2.2
[13:41:01] [Server thread/INFO]: [ChatColor2] Loading server plugin ChatColor2 v1.16.1
[13:41:01] [Server thread/INFO]: [AxPlayerWarps] Loading server plugin AxPlayerWarps v1.10.4
[13:41:01] [Server thread/INFO]: [AmazingTitles] Loading server plugin AmazingTitles v5.1
[13:41:01] [Server thread/WARN]: [AmazingTitles] Could not save options.yml to plugins\AmazingTitles\options.yml because options.yml already exists.
[13:41:01] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:41:01] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.11
[13:41:01] [Server thread/INFO]:         __    
[13:41:01] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.11
[13:41:01] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[13:41:01] [Server thread/INFO]: 
[13:41:01] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[13:41:01] [Server thread/WARN]: [LuckPerms] [DB Upgrade] Found an old (v1) H2 database file. LuckPerms will now attempt to upgrade it to v2 (this is a one time operation).
[13:41:01] [Server thread/INFO]: [LuckPerms] [DB Upgrade] Stage 1: Exporting the old database to an intermediary file...
[13:41:01] [Server thread/INFO]: [LuckPerms] [DB Upgrade] Stage 2: Importing the intermediary file into the new database...
[13:41:01] [Server thread/WARN]: [LuckPerms] Something went wrong whilst upgrading the LuckPerms database. Please report this on GitHub.
org.h2.jdbc.JdbcSQLSyntaxErrorException: Sequence "SYSTEM_SEQUENCE_C0EA9E73_12E7_4856_BFC1_F826B1A5F0CD" already exists; SQL statement:
           
CREATE SEQUENCE "PUBLIC"."SYSTEM_SEQUENCE_C0EA9E73_12E7_4856_BFC1_F826B1A5F0CD" START WITH 470 BELONGS_TO_TABLE [90035-214]
    at org.h2.message.DbException.getJdbcSQLException(DbException.java:632) ~[?:?]
    at org.h2.message.DbException.getJdbcSQLException(DbException.java:477) ~[?:?]
    at org.h2.message.DbException.get(DbException.java:223) ~[?:?]
    at org.h2.message.DbException.get(DbException.java:199) ~[?:?]
    at org.h2.command.ddl.CreateSequence.update(CreateSequence.java:53) ~[?:?]
    at org.h2.command.ddl.SchemaOwnerCommand.update(SchemaOwnerCommand.java:33) ~[?:?]
    at org.h2.command.CommandContainer.update(CommandContainer.java:169) ~[?:?]
    at org.h2.command.Command.executeUpdate(Command.java:252) ~[?:?]
    at org.h2.command.dml.RunScriptCommand.execute(RunScriptCommand.java:108) ~[?:?]
    at org.h2.command.dml.RunScriptCommand.update(RunScriptCommand.java:70) ~[?:?]
    at org.h2.command.CommandContainer.update(CommandContainer.java:169) ~[?:?]
    at org.h2.command.Command.executeUpdate(Command.java:252) ~[?:?]
    at org.h2.jdbc.JdbcStatement.executeInternal(JdbcStatement.java:252) ~[?:?]
    at org.h2.jdbc.JdbcStatement.execute(JdbcStatement.java:223) ~[?:?]
    at me.lucko.luckperms.common.storage.implementation.sql.connection.file.H2ConnectionFactory$MigrateH2ToVersion2.run(H2ConnectionFactory.java:147) ~[?:?]
    at me.lucko.luckperms.common.storage.implementation.sql.connection.file.H2ConnectionFactory.init(H2ConnectionFactory.java:74) ~[?:?]
    at me.lucko.luckperms.common.storage.implementation.sql.SqlStorage.init(SqlStorage.java:167) ~[?:?]
    at me.lucko.luckperms.common.storage.Storage.init(Storage.java:90) ~[?:?]
    at me.lucko.luckperms.common.storage.StorageFactory.getInstance(StorageFactory.java:88) ~[?:?]
    at me.lucko.luckperms.common.plugin.AbstractLuckPermsPlugin.enable(AbstractLuckPermsPlugin.java:204) ~[?:?]
    at me.lucko.luckperms.bukkit.LPBukkitBootstrap.onEnable(LPBukkitBootstrap.java:175) ~[?:?]
    at LuckPerms-Bukkit-5.5.11.jar/me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin.onEnable(BukkitLoaderPlugin.java:50) ~[LuckPerms-Bukkit-5.5.11.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:41:01] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[13:41:02] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[13:41:02] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1179ms)
[13:41:02] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[13:41:02] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[13:41:02] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:41:02] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[13:41:02] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[13:41:02] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.16+cbf4bd5
[13:41:02] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:41:02] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:41:02] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21_4.PaperweightAdapter as the Bukkit adapter
[13:41:02] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[13:41:02] [Server thread/INFO]: [PlugManX] Enabling PlugManX v3.0.1
[13:41:03] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:41:03] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[13:41:03] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[13:41:03] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[13:41:03] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/Test-Account666/PlugMan
[13:41:03] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:41:03] [Server thread/INFO]: [PlugManX] You can disable this warning by setting 'showPaperWarning' to false in the config.yml
[13:41:03] [Server thread/INFO]: [CleanroomGenerator] Enabling CleanroomGenerator v1.2.1
[13:41:03] [Server thread/INFO]: [CleanroomGenerator] CleanroomGenerator v1.2.1 enabled
[13:41:03] [Server thread/INFO]: Preparing level "world"
[13:41:03] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:41:04] [Server thread/INFO]: Preparing spawn area: 0%
[13:41:04] [Server thread/INFO]: Preparing spawn area: 0%
[13:41:04] [Server thread/INFO]: Time elapsed: 620 ms
[13:41:04] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[13:41:04] [Server thread/INFO]: Preparing spawn area: 0%
[13:41:04] [Server thread/INFO]: Time elapsed: 132 ms
[13:41:04] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[13:41:04] [Server thread/INFO]: Preparing spawn area: 0%
[13:41:04] [Server thread/INFO]: Time elapsed: 44 ms
[13:41:04] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.4.2
[13:41:04] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[13:41:04] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[13:41:04] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[13:41:04] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[13:41:05] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.2.1
[13:41:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.2.1]
[13:41:05] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[13:41:05] [Server thread/INFO]: [Multiverse-Core] Version 5.2.1 (API v5.2) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[13:41:05] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.2
[13:41:05] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[13:41:05] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[13:41:05] [Server thread/INFO]: [Essentials] No kits found to migrate.
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[13:41:06] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[13:41:06] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[13:41:06] [Server thread/INFO]: [Essentials] Using locale en_GB
[13:41:06] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[13:41:06] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[13:41:06] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[13:41:06] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[13:41:06] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.8.3-SNAPSHOT
[13:41:07] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.30.0
[13:41:07] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.21.2
[13:41:07] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax Modified by Henry
[13:41:07] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:41:07] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using CURRENCY!
[13:41:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.21.2]
[13:41:07] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[13:41:07] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:1) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:10) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:101) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:102) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:103) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:104) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:105) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:106) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:107) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:108) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:109) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:11) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:110) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:111) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:112) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:116) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:117) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:118) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:12) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:121) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:122) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:124) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:127) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:13) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:130) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:131) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:132) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:133) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:135) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:136) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:137) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:14) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:140) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:142) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:143) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:146) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:147) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:148) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:149) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:15) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:150) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:151) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:153) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:159) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:16) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:160) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:161) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:162) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:164) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:165) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:166) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:169) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:17) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:170) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:171) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:172) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:174) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:176) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:177) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:178) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:179) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:18) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:180) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:181) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:182) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:183) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:184) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:185) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:186) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:187) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:188) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:189) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:190) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:191) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:192) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:193) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:195) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:196) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:198) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:2) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:20) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:200) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:201) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:202) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:204) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:207) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:209) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:21) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:211) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:212) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:214) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:215) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:216) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:218) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:219) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:22) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:220) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:221) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:222) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:226) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:227) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:228) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:229) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:23) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:231) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:233) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:237) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:239) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:24) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:243) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:244) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:245) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:247) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:248) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:249) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:25) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:252) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:255) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:256) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:257) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:258) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:259) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:26) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:260) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:261) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:262) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:263) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:264) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:265) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:266) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:267) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:268) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:269) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:27) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:270) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:271) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:272) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:273) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:274) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:275) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:276) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:277) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:278) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:279) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:28) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:280) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:281) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:282) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:283) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:284) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:287) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:288) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:289) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:29) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:290) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:292) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:293) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:294) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:30) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:31) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:32) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:33) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:34) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:35) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:38) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:41) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:42) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:44) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:51) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:52) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:53) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:55) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:56) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:57) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:58) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:59) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:6) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:60) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:61) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:62) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:63) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:64) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:65) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:66) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:67) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:68) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:69) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:70) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:71) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:72) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:73) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:74) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:76) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:77) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:78) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:79) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:80) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:81) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:82) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:83) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:84) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:86) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:88) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:91) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:94) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:95) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:96) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[13:41:07] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
[13:41:07] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[13:41:07] [pool-36-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (b5a58d4cfcf67fe05de1e89dac15ecf2b6aaadeb)
[13:41:07] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[13:41:07] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[13:41:07] [Server thread/INFO]: [GriefPrevention] Boot finished.
[13:41:07] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v5.1.0
[13:41:08] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[13:41:08] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[13:41:08] [Server thread/INFO]: [Multiverse-Portals 5.1.0]  Enabled - By Rigby, fernferret and benwoo1110
[13:41:08] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.3.2.0
[13:41:08] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[13:41:08] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 87684 heads!
[13:41:08] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] invalid Vanilla Head: alex!
[13:41:08] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[13:41:09] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[13:41:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console(926786798745698374)
[13:41:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Saved linked accounts in 6ms
[13:41:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[13:41:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[13:41:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Multiverse-Core hook
[13:41:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[13:41:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling voice module
[13:41:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 2 alerts registered
[13:41:10] [pool-16-thread-1/WARN]: [floodgate] 
**********************************
* The prefix you entered in your Floodgate config (_) could lead to username conflicts!
* Should a Java player join with the username _Notch, and a Bedrock player join as Notch (who will be given the name _Notch), unwanted results will happen!
* We strongly recommend using . as the prefix, but other alternatives that will not conflict include: +, - and *
**********************************
[13:41:10] [Server thread/INFO]: [InteractiveChat] No custom ProtocolProvider provided, using default ProtocolLib provider.
[13:41:10] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[13:41:10] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[13:41:10] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[13:41:10] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[13:41:10] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[13:41:10] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[13:41:10] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Floodgate!
[13:41:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.3.2.0]
[13:41:10] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[13:41:10] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.6
[13:41:10] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R3 (1.21.4).
[13:41:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[13:41:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[13:41:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[13:41:10] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[13:41:10] [Server thread/INFO]: [Wild] Enabling Wild v2.29-7da6164
[13:41:10] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.3
[13:41:10] [Server thread/INFO]:  
[13:41:10] [Server thread/INFO]: __________________________________________________________
[13:41:10] [Server thread/INFO]:  
[13:41:10] [Server thread/INFO]:                        TradeSystem [2.6.3]
[13:41:10] [Server thread/INFO]:  
[13:41:10] [Server thread/INFO]: Status:
[13:41:10] [Server thread/INFO]:  
[13:41:10] [Server thread/INFO]: MC-Version: Paper (1.21.4)
[13:41:10] [Server thread/INFO]:  
[13:41:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[13:41:11] [Server thread/INFO]:   > Loading sounds
[13:41:11] [Server thread/INFO]:   > Loading blacklist
[13:41:11] [Server thread/INFO]:     ...got 3 blocked item(s)
[13:41:11] [Server thread/INFO]:   > Loading layouts
[13:41:11] [Server thread/INFO]:     ...got 6 layout(s)
[13:41:11] [Server thread/INFO]:   > Queuing database initializing task
[13:41:11] [Folia Async Scheduler Thread #11/INFO]: [TradeSystem] Database was started successfully.
[13:41:11] [Server thread/INFO]:  
[13:41:11] [Server thread/INFO]: Finished (411ms)
[13:41:11] [Server thread/INFO]:  
[13:41:11] [Server thread/INFO]: __________________________________________________________
[13:41:11] [Server thread/INFO]:  
[13:41:11] [Server thread/INFO]: [Themis] Enabling Themis v0.17.6
[13:41:11] [Server thread/INFO]: [SimpleTabList] Enabling SimpleTabList v4.8
[13:41:11] [Server thread/INFO]: [SimpleTabList] Thread pools initialized
[13:41:11] [Server thread/INFO]: [SimpleTabList] Thread utilities initialized
[13:41:11] [Server thread/INFO]: [SimpleTabList] Sidebar configuration loaded
[13:41:11] [Server thread/INFO]: [SimpleTabList] Sidebar manager initialized
[13:41:11] [Server thread/INFO]: bStats metrics enabled
[13:41:11] [Server thread/INFO]: [SimpleTabList] Animation interval started with period: 1 seconds
[13:41:11] [Server thread/INFO]: [SimpleTabList] Sidebar update interval started with period: 2 seconds
[13:41:11] [Server thread/INFO]: [SimpleTabList] Sidebar animations will sync with tablist animations
[13:41:11] [Server thread/INFO]: Simple TabList has started!
[13:41:11] [Server thread/INFO]: [ServerListPlus] Enabling ServerListPlus v3.5.1-SNAPSHOT
[13:41:11] [Server thread/INFO]: [ServerListPlus] [Core] Reloading configuration...
[13:41:11] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: ServerStatusConf
[13:41:11] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: PluginConf
[13:41:11] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: BukkitConf
[13:41:11] [Server thread/WARN]: [ServerListPlus] [Core] You have hidden the player count in your configuration but still have the maximum online count / hover message configured. They will not work if the player count is hidden.
[13:41:11] [Server thread/INFO]: [ServerListPlus] ProtocolLib is no longer required (and used) by default when using Paper. If this causes compatibility issues with other plugins, try setting ProtocolLib: ENABLE
[13:41:11] [Server thread/INFO]: [ServerListPlus] [Core] Reloading saved player identities...
[13:41:11] [Server thread/INFO]: [ServerListPlus] Successfully loaded!
[13:41:11] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.5.1-SNAPSHOT enabled.
[13:41:11] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.13
[13:41:11] [Server thread/INFO]: [NoPlugins] Enabling NoPlugins v8.1
[13:41:11] [Server thread/INFO]: [NoPlugins] Minecraft version: craftbukkit
[13:41:11] [Server thread/INFO]: [NoPlugins] Loaded assets for newer minecraft (1.13+)
[13:41:11] [Server thread/INFO]: [NoPlugins] Successfully loaded.
[13:41:11] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[13:41:11] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[13:41:11] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[13:41:11] [Server thread/INFO]: | Command file(s) found : 1
[13:41:11] [Server thread/INFO]: | Config : Ready.
[13:41:11] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[13:41:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[13:41:11] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[13:41:11] [Server thread/INFO]: | Custom commands loaded : 44
[13:41:11] [Server thread/INFO]: | New update available : MyCommand v5.7.5
[13:41:11] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[13:41:11] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[13:41:11] [Server thread/INFO]: [Multiverse-SignPortals] Enabling Multiverse-SignPortals v5.0.1
[13:41:11] [Server thread/INFO]: [Multiverse-SignPortals 5.0.1]  Enabled - By Rigby and fernferret
[13:41:11] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v5.0.3
[13:41:11] [Server thread/INFO]: [Multiverse-NetherPortals 5.0.3]  Enabled - By Rigby, fernferret and benwoo1110
[13:41:11] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v5.1.2
[13:41:11] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'survival' are not loaded: survival_nether, survival, survival_the_end, pvp
[13:41:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-inventories [5.1.2]
[13:41:12] [Server thread/INFO]: [Multiverse-Inventories] Loading player names map...
[13:41:12] [Server thread/INFO]: [Multiverse-Inventories] Version 5.1.2 (API v5.1) Enabled - By dumptruckman and benwoo1110
[13:41:12] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.3.2.0
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[13:41:12] [Server thread/INFO]: [InteractiveChat] Loading languages...
[13:41:12] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[13:41:12] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[13:41:12] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[13:41:12] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[13:41:12] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[13:41:12] [Server thread/INFO]: [HubThat] Enabling HubThat v10.1.184
[13:41:12] [Server thread/WARN]: [HubThat] HubThat: Checking if config exists...
[13:41:12] [Server thread/WARN]: [HubThat] Loading config...
[13:41:12] [Server thread/INFO]: [HubThat] All files are working correctly.
[13:41:12] [Server thread/INFO]: [HubThat] Plugin HubThat Successfully Loaded!
[13:41:12] [Server thread/INFO]: [HubParkour] Enabling HubParkour v2.8.2
[13:41:12] [Server thread/INFO]: [HubParkour] 1.13+ server version detected.
[13:41:12] [Server thread/INFO]: [HubParkour] Server UUID has been registered as: 8be3b6f0-5dc7-4c15-935e-e7724c85d874
[13:41:12] [Server thread/INFO]: [HubParkour] DecentHolograms has been detected.
[13:41:12] [Server thread/ERROR]: [HubParkour] One of your parkours has a material that is not valid. We have defaulted the value to a Slime Ball. Please change this using edit mode. Stack trace:
java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.-1
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.Material.valueOf(Material.java:138) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at HubParkour-2.8.2.jar/me.block2block.hubparkour.managers.DatabaseManager.loadParkours(DatabaseManager.java:558) ~[HubParkour-2.8.2.jar:?]
    at HubParkour-2.8.2.jar/me.block2block.hubparkour.managers.DatabaseManager.load(DatabaseManager.java:66) ~[HubParkour-2.8.2.jar:?]
    at HubParkour-2.8.2.jar/me.block2block.hubparkour.HubParkour.onEnable(HubParkour.java:234) ~[HubParkour-2.8.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:41:12] [Server thread/ERROR]: [HubParkour] There has been an error accessing the database. Try checking your database is online. Stack trace:
java.sql.SQLException: column 8 out of bounds [1,7]
    at org.sqlite.core.CoreResultSet.checkCol(CoreResultSet.java:100) ~[sqlite-jdbc-3.47.0.0.jar:?]
    at org.sqlite.core.CoreResultSet.markCol(CoreResultSet.java:113) ~[sqlite-jdbc-3.47.0.0.jar:?]
    at org.sqlite.jdbc3.JDBC3ResultSet.lambda$getInt$1(JDBC3ResultSet.java:331) ~[sqlite-jdbc-3.47.0.0.jar:?]
    at org.sqlite.core.SafeStmtPtr.safeRunInt(SafeStmtPtr.java:84) ~[sqlite-jdbc-3.47.0.0.jar:?]
    at org.sqlite.jdbc3.JDBC3ResultSet.getInt(JDBC3ResultSet.java:331) ~[sqlite-jdbc-3.47.0.0.jar:?]
    at org.sqlite.jdbc3.JDBC3ResultSet.getShort(JDBC3ResultSet.java:351) ~[sqlite-jdbc-3.47.0.0.jar:?]
    at HubParkour-2.8.2.jar/me.block2block.hubparkour.managers.DatabaseManager.loadParkours(DatabaseManager.java:579) ~[HubParkour-2.8.2.jar:?]
    at HubParkour-2.8.2.jar/me.block2block.hubparkour.managers.DatabaseManager.load(DatabaseManager.java:66) ~[HubParkour-2.8.2.jar:?]
    at HubParkour-2.8.2.jar/me.block2block.hubparkour.HubParkour.onEnable(HubParkour.java:234) ~[HubParkour-2.8.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:41:12] [Server thread/INFO]: [HubParkour] A world that a leaderboard hologram was in does not exist.
[13:41:12] [Server thread/INFO]: [HubParkour] A world that a leaderboard hologram was in does not exist.
[13:41:12] [Server thread/INFO]: [HubParkour] A world that a leaderboard hologram was in does not exist.
[13:41:12] [Server thread/INFO]: [HubParkour] A world that a leaderboard hologram was in does not exist.
[13:41:12] [Server thread/INFO]: [HubParkour] A world that a leaderboard hologram was in does not exist.
[13:41:12] [Server thread/INFO]: [HubParkour] PlaceholderAPI detected, registering HubParkour placeholder expansion.
[13:41:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hubparkour [2.8.2]
[13:41:12] [Server thread/INFO]: [HubParkour] Plugin successfully enabled!
[13:41:12] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 8 slash commands (0 conflicted) for 1 plugins in 2/2 guilds (0 cancelled)
[13:41:12] [Server thread/INFO]: [HubParkour] Your HubParkour version is up to date!
[13:41:12] [Server thread/INFO]: [HeadDisplays] Enabling HeadDisplays v1.12.5
[13:41:13] [Server thread/INFO]: [HeadDisplays] Loading fonts!
[13:41:13] [Server thread/INFO]: [HeadDisplays] Loaded 5 fonts!
[13:41:13] [Server thread/INFO]: [HeadDisplays] Starting to load data for HeadDisplays
[13:41:13] [Server thread/INFO]: [HeadDisplays] Finished loading data for HeadDisplays
[13:41:13] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.21.2
[13:41:13] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/.
[13:41:13] [Server thread/INFO]: [EssentialsGeoIP] Starting Metrics. Opt-out using the global bStats config.
[13:41:13] [Server thread/INFO]: [DynamicAliases] Enabling DynamicAliases v0.0.4*
[13:41:13] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[13:41:13] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[13:41:13] [Server thread/INFO]: [DeluxeTags] 1 tag loaded
[13:41:13] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[13:41:13] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[13:41:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[13:41:13] [Server thread/INFO]: [DeluxeTags] ----------------------------
[13:41:13] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[13:41:13] [Server thread/INFO]: [DeluxeTags]  
[13:41:13] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[13:41:13] [Server thread/INFO]: [DeluxeTags] The latest version
[13:41:13] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[13:41:13] [Server thread/INFO]: [DeluxeTags]  
[13:41:13] [Server thread/INFO]: [DeluxeTags] ----------------------------
[13:41:13] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-Release
[13:41:13] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[13:41:13] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Found 'data' option for item: teststone in menu: basics_menu. This option is deprecated and will be removed soon. Please use 'damage' instead.
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'example' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplecd' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplenoperm' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Menu size for menu: smc_main_menu is higher than 54
Defaulting to 54.
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'menu_close' in menu 'smc_main_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'menu_home' in menu 'smc_main_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'link_travel' in menu 'smc_main_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'link_quickchat' in menu 'smc_main_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'link_quickcommands' in menu 'smc_main_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Menu size for menu: smc_travel_menu is higher than 54
Defaulting to 54.
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'menu_close' in menu 'smc_travel_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'menu_home' in menu 'smc_travel_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'teleport_hub' in menu 'smc_travel_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'teleport_pvp' in menu 'smc_travel_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'teleport_survival' in menu 'smc_travel_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'teleport_creative' in menu 'smc_travel_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'teleport_event' in menu 'smc_travel_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Menu size for menu: smc_quickchat_menu is higher than 54
Defaulting to 54.
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'menu_close' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'menu_home' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_0' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_0' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_1' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_1' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_2' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_2' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_3' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_3' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_4' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_4' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_5' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_5' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_6' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_6' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_7' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_7' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_8' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_8' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_9' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_9' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_10' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_10' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_11' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_11' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_12' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_12' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_13' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_13' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_14' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_14' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_15' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_15' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qc_16' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qc_16' in menu 'smc_quickchat_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Menu size for menu: smc_quickcommands_menu is higher than 54
Defaulting to 54.
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'menu_close' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'menu_home' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qcmd_0' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qcmd_0' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qcmd_1' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qcmd_1' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qcmd_2' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qcmd_2' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'qcmd_3' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[13:41:14] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'qcmd_3' in menu 'smc_quickcommands_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[13:41:14] [Server thread/INFO]: [DeluxeMenus] 7 GUI menus loaded!
[13:41:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-Release]
[13:41:14] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[13:41:14] [Server thread/INFO]: [DeluxeCommands] Enabling DeluxeCommands v1.11.3
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Enabling CreativeItemControl v5.4.14
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Setting the event prirority for InventoryCreativeEvent to LOWEST
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Setting the event prirority for PlayerDropItemEvent to LOWEST
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Setting the event prirority for PlayerPickupItemEvent to LOWEST
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Setting the event prirority for EntityPickupItemEvent to LOWEST
[13:41:14] [Server thread/INFO]: [CreativeItemControl] 1 listener manager found!
[13:41:14] [Server thread/INFO]: [CreativeItemControl] 4 listeners found!
[13:41:14] [Server thread/INFO]: [CreativeItemControl] registered InventoryCreativeEvent at the priority MONITOR
[13:41:14] [Server thread/INFO]: [CreativeItemControl] registered InventoryCreativeEvent at the priority LOWEST
[13:41:14] [Server thread/INFO]: [CreativeItemControl] registered InventoryCloseEvent at the priority MONITOR
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Registered com.vk2gpz.creativeitemcontrol.i.J
[13:41:14] [Server thread/INFO]: [CreativeItemControl] registered PlayerDropItemEvent at the priority LOWEST
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Registered com.vk2gpz.creativeitemcontrol.i.f
[13:41:14] [Server thread/INFO]: [CreativeItemControl] registered EntityPickupItemEvent at the priority LOWEST
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Registered com.vk2gpz.creativeitemcontrol.i.i
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Registered Listener Manager com.vk2gpz.creativeitemcontrol.i.P
[13:41:14] [Server thread/INFO]: [CreativeItemControl] 1 commands found!
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Registered sub command reload
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Registered sub command debug
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Registered sub command help
[13:41:14] [Server thread/INFO]: [CreativeItemControl] register: cic
[13:41:14] [Server thread/INFO]: [CreativeItemControl] Registered creativeitemcontrol
[13:41:14] [Server thread/INFO]: [CreativeItemControl] using the item file: items_1.21.4.yml
[13:41:14] [Server thread/INFO]: [CommandHook] Enabling CommandHook v3.1.0
[13:41:14] [Server thread/INFO]: [CommandAliases] Enabling CommandAliases v1.1.0
[13:41:14] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[13:41:14] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[13:41:14] [Server thread/INFO]: [ClearLag] Loading modules...
[13:41:14] [Server thread/WARN]: [ClearLag] Failed to initialize 'mob-range' controller ~ This is possibly caused by an unsupported Bukkit/Spigot server version
[13:41:14] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (Index 3 out of bounds for length 3)
[13:41:14] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[13:41:14] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[13:41:14] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[13:41:14] [Thread-41/WARN]: [ClearLag] Clearlag failed to check for updates - bukkit may be down
[13:41:14] [Thread-41/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[13:41:14] [Thread-41/WARN]:     at Clearlag (1).jar//me.minebuilders.clearlag.Util.getBukkitVersion(Util.java:105)
[13:41:14] [Thread-41/WARN]:     at Clearlag (1).jar//me.minebuilders.clearlag.BukkitUpdater.updateAvailable(BukkitUpdater.java:32)
[13:41:14] [Thread-41/WARN]:     at Clearlag (1).jar//me.minebuilders.clearlag.BukkitUpdater.run(BukkitUpdater.java:82)
[13:41:14] [Thread-41/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[13:41:14] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.39-SNAPSHOT (build 3897)
[13:41:14] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[13:41:14] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cv: [[cv.
[13:41:14] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cv: [[null.
[13:41:14] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.39-SNAPSHOT (build 3897) (Is it up to date?)
java.lang.NoSuchFieldError: Class org.bukkit.entity.EntityType does not have member field 'org.bukkit.entity.EntityType HAPPY_GHAST'
    at Citizens-2.0.39-b3897.jar/net.citizensnpcs.nms.v1_21_R5.util.NMSImpl.<clinit>(NMSImpl.java:2755) ~[Citizens-2.0.39-b3897.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at Citizens-2.0.39-b3897.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:174) ~[Citizens-2.0.39-b3897.jar:?]
    at Citizens-2.0.39-b3897.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:179) ~[Citizens-2.0.39-b3897.jar:?]
    at Citizens-2.0.39-b3897.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:377) ~[Citizens-2.0.39-b3897.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:41:14] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.39-SNAPSHOT (build 3897)
[13:41:14] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.40
[13:41:14] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.3-SNAPSHOT (build 445)
[13:41:15] [Server thread/INFO]: [ChestShop] Found locales ga, cs, zh, sr, pl, zh_tw, ca, el, ro, fr, bg, en_pt, ko, es_mx, fi, de, no, lol, ja, vi, ru, lb, ku, uk, he, la, en, lt, pt_br, ar, da, nl, sk, sl, tr, kk, af, hu, es, is, cy, sv, it, pt, th
[13:41:15] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now.
[13:41:15] [Server thread/INFO]: [ChestShop] Vault loaded!
[13:41:15] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[13:41:15] [Server thread/INFO]: [CG] Enabling ChatGames v2.1.8
[13:41:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [2.1.5]
[13:41:15] [Server thread/INFO]: [CG] Plugin has loaded successfully.
[13:41:15] [Server thread/INFO]: [ChatFilter] Enabling ChatFilter v2.0.14
[13:41:15] [Server thread/INFO]: [ChatFilter] Loaded using locale: en
[13:41:15] [Server thread/INFO]: [ChatFilter] 57 Enabled word filters.
[13:41:15] [Server thread/INFO]: [ChatFilter] 2 Enabled advertising filters.
[13:41:15] [Server thread/INFO]: [ChatFilter] 392 whitelisted items.
[13:41:15] [Server thread/INFO]: [ChatEx] Enabling ChatEx v3.2.2
[13:41:15] [Server thread/INFO]: [ChatEx] Successfully hooked into: LuckPerms
[13:41:15] [Server thread/INFO]: [ChatEx] Hooked into PlaceholderAPI
[13:41:15] [Server thread/INFO]: [ChatEx] Server version:1.21.4-232-12d8fe0 (MC: 1.21.4)
[13:41:15] [Server thread/INFO]: [ChatEx] Version is later than 1.16. Loading RGB ColorCodes!
[13:41:15] [Server thread/INFO]: [ChatEx] Is now enabled!
[13:41:15] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.16.1
[13:41:15] [Server thread/INFO]: [ChatColor] ChatColor 2 Version 1.16.1 has been enabled.
[13:41:15] [Server thread/INFO]: [ChatColor] Current update: SQL support tweaks & bug fixes.
[13:41:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cc [1.16.1]
[13:41:15] [Server thread/INFO]: [ChatColor] PlaceholderAPI has been hooked.
[13:41:15] [Server thread/INFO]: [ChatColor] Metrics is enabled for this plugin. Stats sent to https://bstats.org/plugin/bukkit/ChatColor2
[13:41:15] [Server thread/INFO]: [AxPlayerWarps] Enabling AxPlayerWarps v1.10.4
[13:41:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axplayerwarps [1.0.0]
[13:41:15] [Server thread/INFO]: [AxPlayerWarps] Hooked into Vault!
[13:41:16] [Server thread/INFO]: [AxPlayerWarps] Loaded plugin! Using H2 database to store data!
[13:41:16] [Server thread/INFO]: [AmazingTitles] Enabling AmazingTitles v5.1
[13:41:16] [Server thread/INFO]: Trying to access NMS implementation with: craftbukkit
[13:41:16] [Server thread/INFO]: Failed...
[13:41:16] [Server thread/INFO]: Trying to access NMS implementation with: 1.21.4-R0.1-SNAPSHOT
[13:41:16] [Server thread/INFO]: Failed...
[13:41:16] [Server thread/INFO]: [AmazingTitles] [STDOUT] You're using unsupported version of the plugin, use 1.13 or higher...
[13:41:16] [Server thread/WARN]: Nag author(s): '[M3II0]' of 'AmazingTitles v5.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[13:41:16] [Server thread/INFO]: [spark] Starting background profiler...
[13:41:16] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[13:41:16] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:41:16] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[13:41:16] [Server thread/INFO]: [Geyser-Spigot] 
[13:41:16] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.8.3-b915 (git-master-8e295a9)
[13:41:16] [Server thread/INFO]: [Geyser-Spigot] 
[13:41:16] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[13:41:18] [Server thread/WARN]: [Geyser-Spigot] Third-party ears/capes have been removed from Geyser, if you still wish to have this functionality please use the extension: https://github.com/GeyserMC/ThirdPartyCosmetics
[13:41:18] [GeyserServer-3-1/ERROR]: [Geyser-Spigot] Failed to start Geyser on 216.201.78.70:19132
[13:41:18] [GeyserServer-3-1/INFO]: [Geyser-Spigot] Suggestion: try setting `address` under `bedrock` in the Geyser config back to 0.0.0.0
[13:41:18] [GeyserServer-3-1/INFO]: [Geyser-Spigot] Then, restart this server.
[13:41:18] [Server thread/ERROR]: Could not pass event ServerLoadEvent to Geyser-Spigot v2.8.3-SNAPSHOT
java.util.concurrent.CompletionException: java.net.BindException: Cannot assign requested address: bind
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:332) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:347) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$BiRelay.tryFire(CompletableFuture.java:1498) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$CoCompletion.tryFire(CompletableFuture.java:1219) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeExceptionally(CompletableFuture.java:2194) ~[?:?]
    at Geyser-Spigot (7).jar/org.geysermc.geyser.network.netty.Bootstraps.lambda$allOf$0(Bootstraps.java:128) ~[Geyser-Spigot (7).jar:?]
    at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:557) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.concurrent.DefaultPromise.addListener(DefaultPromise.java:185) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.DefaultChannelPromise.addListener(DefaultChannelPromise.java:95) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.DefaultChannelPromise.addListener(DefaultChannelPromise.java:30) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:380) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.net.BindException: Cannot assign requested address: bind
    at java.base/sun.nio.ch.Net.bind0(Native Method) ~[?:?]
    at java.base/sun.nio.ch.Net.bind(Net.java:565) ~[?:?]
    at java.base/sun.nio.ch.DatagramChannelImpl.bindInternal(DatagramChannelImpl.java:1329) ~[?:?]
    at java.base/sun.nio.ch.DatagramChannelImpl.bind(DatagramChannelImpl.java:1299) ~[?:?]
    at io.netty.util.internal.SocketUtils$6.run(SocketUtils.java:133) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.util.internal.SocketUtils$6.run(SocketUtils.java:130) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at java.base/java.security.AccessController.doPrivileged(AccessController.java:571) ~[?:?]
    at io.netty.util.internal.SocketUtils.bind(SocketUtils.java:130) ~[netty-common-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.socket.nio.NioDatagramChannel.doBind0(NioDatagramChannel.java:202) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.socket.nio.NioDatagramChannel.doBind(NioDatagramChannel.java:197) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:561) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1281) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:600) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:579) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:922) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.AbstractChannel.bind(AbstractChannel.java:259) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at Geyser-Spigot (7).jar/org.cloudburstmc.netty.handler.codec.raknet.ProxyOutboundRouter.bind(ProxyOutboundRouter.java:48) ~[Geyser-Spigot (7).jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:606) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:579) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at io.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:922) ~[netty-transport-4.1.115.Final.jar:4.1.115.Final]
    at Geyser-Spigot (7).jar/org.cloudburstmc.netty.channel.proxy.ProxyChannel.bind(ProxyChannel.java:188) ~[Geyser-Spigot (7).jar:?]
    ... 9 more
[13:41:18] [Server thread/INFO]: Done preparing level "world" (15.305s)
[13:41:18] [Server thread/INFO]: Running delayed init tasks
[13:41:18] [Craft Scheduler Thread - 1 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[13:41:18] [Craft Scheduler Thread - 4 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[13:41:18] [Craft Scheduler Thread - 20 - ChatEx/INFO]: [ChatEx] Checking for update...
[13:41:18] [Craft Scheduler Thread - 22 - Vault/INFO]: [Vault] Checking for Updates ... 
[13:41:18] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:41:18] [Craft Scheduler Thread - 0 - Essentials/INFO]: [Essentials] Fetching version information...
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value creative! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value event! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value hub! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value hub! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value hub! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value hub! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value hub! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value hub! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value hub! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value pvp! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value survival! It's neither a valid name nor UUID.
[13:41:18] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: [DecentHolograms] Loaded 71 holograms!
[13:41:18] [Craft Scheduler Thread - 22 - Vault/INFO]: [Vault] No new version available
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.30.0]
[13:41:18] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion ChatColorPlusPremium due to a missing plugin: ChatColorPlus
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: floodgate [1.4.3]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: geolocation [1.1]
[13:41:18] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 4 scripts loaded!
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.0]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.5]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ViaVersion [2.0.0]
[13:41:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[13:41:18] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion worldguard due to an unknown issue.
[13:41:18] [Server thread/INFO]: 11 placeholder hook(s) registered! 6 placeholder hook(s) have an update available.
[13:41:18] [Server thread/INFO]: Checking for conflicts in groups...
[13:41:18] [Server thread/INFO]: No group conflicts found!
[13:41:18] [Server thread/INFO]: Done (34.558s)! For help, type "help"
[13:41:18] [Server thread/INFO]: [HeadDisplays] Loading extra fonts from HeadDatabase!
[13:41:18] [Craft Scheduler Thread - 20 - ChatEx/INFO]: [ChatEx] Version installed is 3.2.2
[13:41:18] [Craft Scheduler Thread - 20 - ChatEx/INFO]: [ChatEx] Latest version found online is 3.2.2
[13:41:18] [Craft Scheduler Thread - 20 - ChatEx/INFO]: [ChatEx] No update found.
[13:41:18] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Hash changed! Re-downloading default resources! Please wait... (f4663b450c4cb596ad1d5f7b82cbd55217ed6fc7 -> d05feae3d6185f689387eb3e08862e126c08559a)
[13:41:18] [Server thread/INFO]: [HeadDisplays] Loaded 44 extra fonts from HeadDatabase! Total: 49
[13:41:18] [Craft Scheduler Thread - 6 - SimpleTabList/INFO]: [SimpleTabList] You are running the latest version
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]: java.io.FileNotFoundException: https://plugin-version-manager.herokuapp.com/plugins/CommandAliases/checkVersion?version=1.1.0
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:2010)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1615)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at CommandAliases.jar//me.kneesnap.CommandAliases.Updater.httpRequest(Updater.java:48)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at CommandAliases.jar//me.kneesnap.CommandAliases.Updater.isUpToDate(Updater.java:60)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at CommandAliases.jar//me.kneesnap.CommandAliases.CommandAliases.lambda$onEnable$0(CommandAliases.java:25)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[13:41:19] [Craft Scheduler Thread - 17 - CommandAliases/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[13:41:19] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 8 slash commands (0 conflicted) for 1 plugins in 2/2 guilds (0 cancelled)
[13:41:21] [Craft Scheduler Thread - 13 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[13:41:22] [Craft Scheduler Thread - 23 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[13:41:28] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[13:41:30] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Done!
[13:41:30] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[13:41:30] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[13:41:30] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[13:41:30] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[13:41:30] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[13:41:30] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[13:41:33] [Craft Scheduler Thread - 11 - CreativeItemControl/INFO]: [CreativeItemControl] Checking updates...
[13:41:33] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[13:41:34] [Craft Scheduler Thread - 11 - CreativeItemControl/INFO]: [CreativeItemControl] Checking updates completed.
[13:41:51] [Server thread/INFO]: ℹ Server Plugins (54):
[13:41:51] [Server thread/INFO]: Paper Plugins (2):
[13:41:51] [Server thread/INFO]:  - CommandHook, PlugManX
[13:41:51] [Server thread/INFO]: Bukkit Plugins (52):
[13:41:51] [Server thread/INFO]:  - AmazingTitles, AxPlayerWarps, ChatColor2, ChatEx, ChatFilter, ChatGames, ChestShop, Chunky, Citizens, CleanroomGenerator
[13:41:51] [Server thread/INFO]:  ClearLag, CommandAliases, CreativeItemControl, DecentHolograms, DeluxeCommands, DeluxeMenus, DeluxeTags, DiscordSRV, *DynamicAliases, Essentials
[13:41:51] [Server thread/INFO]:  EssentialsGeoIP, F3Name, floodgate, Geyser-Spigot, GriefPrevention, HeadDatabase, HeadDisplays, HubParkour, HubThat, InteractiveChat
[13:41:51] [Server thread/INFO]:  InteractiveChatDiscordSrvAddon, LuckPerms, Multiverse-Core, Multiverse-Inventories, Multiverse-NetherPortals, Multiverse-Portals, Multiverse-SignPortals, MyCommand, NoPlugins, OpenInv
[13:41:51] [Server thread/INFO]:  PlaceholderAPI, ProtocolLib, ServerListPlus, SimpleTabList, Themis, TradeSystem, Vault, ViaVersion, Wild, WorldEdit
[13:41:51] [Server thread/INFO]:  WorldGuard, WorldGuardExtraFlags
[13:42:23] [Server thread/WARN]: Unexpected exception while parsing console command "citizens"
org.bukkit.command.CommandException: Cannot execute command 'citizens' in plugin Citizens v2.0.39-SNAPSHOT (build 3897) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1018) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.dispatchServerCommand(CraftServer.java:1003) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.handleConsoleInputs(DedicatedServer.java:478) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.tickConnection(DedicatedServer.java:428) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1738) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1529) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1251) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:42:26] [Server thread/INFO]: Stopping the server
[13:42:26] [Server thread/INFO]: Stopping server
[13:42:26] [Server thread/INFO]: [AmazingTitles] Disabling AmazingTitles v5.1
[13:42:26] [Server thread/INFO]: [AxPlayerWarps] Disabling AxPlayerWarps v1.10.4
[13:42:26] [Server thread/INFO]: [ChatColor2] Disabling ChatColor2 v1.16.1
[13:42:26] [Server thread/INFO]: [ChatColor] ChatColor 2 Version 1.16.1 has been disabled.
[13:42:26] [Server thread/INFO]: [ChatEx] Disabling ChatEx v3.2.2
[13:42:26] [Server thread/INFO]: [ChatEx] Is now disabled!
[13:42:26] [Server thread/INFO]: [ChatFilter] Disabling ChatFilter v2.0.14
[13:42:26] [Server thread/INFO]: [CG] Disabling ChatGames v2.1.8
[13:42:26] [Server thread/INFO]: [CG] Plugin has unloaded successfully.
[13:42:26] [Server thread/INFO]: [ChestShop] Disabling ChestShop v3.12.3-SNAPSHOT (build 445)
[13:42:26] [Server thread/INFO]: [Chunky] Disabling Chunky v1.4.40
[13:42:26] [Server thread/INFO]: [CleanroomGenerator] Disabling CleanroomGenerator v1.2.1
[13:42:26] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.2.2
[13:42:26] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[13:42:26] [Server thread/INFO]: [CommandAliases] Disabling CommandAliases v1.1.0
[13:42:26] [Server thread/INFO]: [CommandHook] Disabling CommandHook v3.1.0
[13:42:26] [Server thread/INFO]: [CreativeItemControl] Disabling CreativeItemControl v5.4.14
[13:42:26] [Server thread/INFO]: [DeluxeCommands] Disabling DeluxeCommands v1.11.3
[13:42:26] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.14.1-Release
[13:42:26] [Server thread/INFO]: [DeluxeTags] Disabling DeluxeTags v1.8.2-Release
[13:42:26] [Server thread/INFO]: [DynamicAliases] Disabling DynamicAliases v0.0.4
[13:42:26] [Server thread/INFO]: [EssentialsGeoIP] Disabling EssentialsGeoIP v2.21.2
[13:42:26] [Server thread/INFO]: [HeadDisplays] Disabling HeadDisplays v1.12.5
[13:42:26] [Server thread/INFO]: [HeadDisplays] Starting save data for HeadDisplays
[13:42:26] [Server thread/INFO]: [HeadDisplays] Finished saving data for HeadDisplays
[13:42:26] [Server thread/INFO]: [HubParkour] Disabling HubParkour v2.8.2
[13:42:26] [Server thread/INFO]: [HubThat] Disabling HubThat v10.1.184
[13:42:26] [Server thread/INFO]: [HubThat] Plugin HubThat Successfully Unloaded!
[13:42:26] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Disabling InteractiveChatDiscordSrvAddon v4.3.2.0
[13:42:26] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Disabled!
[13:42:26] [Server thread/INFO]: [Multiverse-Inventories] Disabling Multiverse-Inventories v5.1.2
[13:42:26] [Server thread/INFO]: [Multiverse-NetherPortals] Disabling Multiverse-NetherPortals v5.0.3
[13:42:26] [Server thread/INFO]: [Multiverse-NetherPortals] - Disabled
[13:42:26] [Server thread/INFO]: [Multiverse-SignPortals] Disabling Multiverse-SignPortals v5.0.1
[13:42:26] [Server thread/INFO]: [Multiverse-SignPortals] - Disabled
[13:42:26] [Server thread/INFO]: [MyCommand] Disabling MyCommand v5.7.4
[13:42:26] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[13:42:26] [Server thread/INFO]: | Tasks : Stopped all tasks.
[13:42:26] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*    Bye!   *-=-=-=-=-=-=-=-=-=-=-*
[13:42:26] [Server thread/INFO]: [NoPlugins] Disabling NoPlugins v8.1
[13:42:26] [Server thread/INFO]: [NoPlugins] disabled.
[13:42:26] [Server thread/INFO]: [OpenInv] Disabling OpenInv v5.1.13
[13:42:26] [Server thread/INFO]: [PlugManX] Disabling PlugManX v3.0.1
[13:42:26] [Server thread/INFO]: [ServerListPlus] Disabling ServerListPlus v3.5.1-SNAPSHOT
[13:42:26] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.5.1-SNAPSHOT disabled.
[13:42:26] [Server thread/INFO]: [SimpleTabList] Disabling SimpleTabList v4.8
[13:42:26] [Server thread/INFO]: [SimpleTabList] Animation interval stopped
[13:42:26] [Server thread/INFO]: [SimpleTabList] Sidebar update interval stopped
[13:42:26] [Server thread/INFO]: [SimpleTabList] Thread utilities shutdown gracefully
[13:42:26] [Server thread/INFO]: [SimpleTabList] Thread utilities force shutdown complete
[13:42:26] [Server thread/INFO]: Simple TabList has been disabled
[13:42:26] [Server thread/INFO]: [Themis] Disabling Themis v0.17.6
[13:42:26] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.6.3
[13:42:26] [Server thread/INFO]:  
[13:42:26] [Server thread/INFO]: __________________________________________________________
[13:42:26] [Server thread/INFO]:  
[13:42:26] [Server thread/INFO]:                        TradeSystem [2.6.3]
[13:42:26] [Server thread/INFO]:  
[13:42:26] [Server thread/INFO]: Status:
[13:42:26] [Server thread/INFO]:  
[13:42:26] [Server thread/INFO]: MC-Version: Paper (1.21.4)
[13:42:26] [Server thread/INFO]:  
[13:42:26] [Server thread/INFO]:   > Cancelling all active trades
[13:42:26] [Server thread/INFO]:  
[13:42:26] [Server thread/INFO]: Finished (0ms)
[13:42:26] [Server thread/INFO]:  
[13:42:26] [Server thread/INFO]: __________________________________________________________
[13:42:26] [Server thread/INFO]:  
[13:42:26] [Server thread/INFO]: [Wild] Disabling Wild v2.29-7da6164
[13:42:26] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.9.6
[13:42:26] [Server thread/INFO]: [InteractiveChat] Disabling InteractiveChat v4.3.2.0
[13:42:26] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion interactivechat
[13:42:26] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin InteractiveChat was disabled.
[13:42:26] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Disabled!
[13:42:26] [Server thread/INFO]: [Multiverse-Portals] Disabling Multiverse-Portals v5.1.0
[13:42:26] [Server thread/INFO]: [GriefPrevention] Disabling GriefPrevention v16.18.4
[13:42:26] [Server thread/INFO]: [GriefPrevention] GriefPrevention disabled.
[13:42:26] [Server thread/INFO]: [HeadDatabase] Disabling HeadDatabase v4.21.2
[13:42:26] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.30.0
[13:42:27] [Timer-1/WARN]: [ClearLag] Clearlag has detected a possible lag spike on tick #1365 (Tick is currently at 505 milliseconds)
[13:42:27] [Timer-1/WARN]: [ClearLag] Thread name: Server thread Id: 72
[13:42:27] [Timer-1/WARN]: [ClearLag] Thread state: TIMED_WAITING
[13:42:27] [Timer-1/WARN]: [ClearLag] Thread stack-trace: 
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > java.base/jdk.internal.misc.Unsafe.park(Native Method)
[13:42:27] [Timer-1/WARN]: Nag author(s): '[bob7l]' of 'ClearLag v3.2.2' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > java.base/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > java.base/java.util.concurrent.FutureTask.awaitDone(FutureTask.java:497)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > java.base/java.util.concurrent.FutureTask.get(FutureTask.java:203)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > java.base/java.util.concurrent.AbstractExecutorService.invokeAll(AbstractExecutorService.java:289)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > java.base/java.util.concurrent.Executors$DelegatedExecutorService.invokeAll(Executors.java:808)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > DiscordSRV-Build-1.30.0.jar//github.scarsz.discordsrv.DiscordSRV.onDisable(DiscordSRV.java:1413)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:161)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:627)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1007)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:757)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1294)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[13:42:27] [Timer-1/INFO]: [ClearLag] [STDOUT]  > java.base/java.lang.Thread.run(Thread.java:1583)
[13:42:27] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Shutdown completed in 419ms
[13:42:27] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.4.0
[13:42:27] [Server thread/INFO]: [Geyser-Spigot] Disabling Geyser-Spigot v2.8.3-SNAPSHOT
[13:42:27] [Server thread/INFO]: [Geyser-Spigot] Geyser shutdown successfully.
[13:42:27] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.2
[13:42:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[13:42:27] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v5.2.1
[13:42:27] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.3.16+cbf4bd5
[13:42:27] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[13:42:27] [Server thread/INFO]: [floodgate] Disabling floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[13:42:27] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion floodgate
[13:42:27] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin floodgate was disabled.
[13:42:27] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[13:42:27] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[13:42:27] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.5.11
[13:42:27] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[13:42:27] [Server thread/INFO]: [LuckPerms] Closing storage...
[13:42:27] [Server thread/INFO]: [LuckPerms] Goodbye!
[13:42:27] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v5.4.2
[13:42:27] [Server thread/INFO]: [ViaVersion] ViaVersion has been disabled; uninjected the platform and shut down the scheduler.
[13:42:27] [Server thread/INFO]: Saving players
[13:42:27] [Server thread/INFO]: Saving worlds
[13:42:27] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world' in 0.20s
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world'
[13:42:27] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world_nether' in 0.03s
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world_nether'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world_nether'
[13:42:27] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world_the_end' in 0.03s
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world_the_end'
[13:42:27] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world_the_end'
[13:42:27] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[13:42:27] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[13:42:27] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[13:42:27] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[13:42:27] [Server thread/INFO]: Waiting for I/O tasks to complete...
[13:42:27] [Server thread/INFO]: All I/O tasks to complete
[13:42:27] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of worker pool for up to 60s...
[13:42:27] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of I/O pool for up to 60s...