Paste #126196: Unnamed Server Log Paste

Date: 2024/09/02 20:22:41 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


[05:01:09] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.3+9-LTS; Eclipse Adoptium Temurin-21.0.3+9) on Linux 6.1.0-22-amd64 (amd64)
[05:01:09] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.1-2287-ver/1.21.1@07979c3 (2024-08-14T07:33:47Z) for Minecraft 1.21.1
[05:01:09] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[05:01:10] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/Cheat Prevention.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
java.lang.RuntimeException: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/Cheat Prevention.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at net.minecraft.server.Main.main(Main.java:129) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.Main.main(Main.java:289) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/Cheat Prevention.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    ... 10 more
[05:01:10] [ServerMain/INFO]: [PluginInitializerManager] Initialized 63 plugins
[05:01:10] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - FancyHolograms (2.3.3)
[05:01:10] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (62):
 - AdvancedPortals (1.0.0), BlueSlimeCore (2.9.6.431), ChatColor (2.7.10), ChatColor (2.7.9), Citizens (2.0.35-SNAPSHOT (build 3479)), ClearLag (3.2.2), CombatLogX (11.5.0.0.1242), CustomDrops (1.17.1), DeathBackpack (1.0.0), DecentHolograms (2.8.11), DeluxeMenus (1.14.0-Release), DiSky (4.18.0), Duel (1.46), EffectLib (9.0), Essentials (2.21.0-dev+110-f1a5caf), EssentialsSpawn (2.21.0-dev+110-f1a5caf), ExcellentCrates (5.3.1), FancyGlow (2.0.1), FastAsyncWorldEdit (2.11.1), FreedomChat (1.7.0), IP (5.3.0), ImageFrame (1.7.10.0), Images (2.5.1), ItemEdit (3.5.2), ItemTag (3.4.3), KOTH (6.1), LPC (3.6.0), LiteBans (2.15.1), LuckPerms (5.4.131), MineResetLite (5.4.1), MiniMOTD (2.1.2), Multiverse-Core (4.3.1-b861), Multiverse-Core (4.3.13-SNAPSHOT), Multiverse-Inventories (4.2.6), OpenInv (5.1.1), PL-Hide (1.5.22), PhysicsControl (1.2.2), PlaceholderAPI (2.11.6), PlayerParticles (8.6), PlayerVaults (4.3.1), ProtocolLib (5.3.0-SNAPSHOT-726), PyrsCore (1.6), PyrsPlots (1.2), PyrsShulkers (1.0), Shopkeepers (2.23.0), SkBee (3.6.1), Skript (2.9.1), Skuishy (2.7), TAB (4.1.7), Tebex (2.0.6), UltimateAirdrops (0.5.3-BETA), Vault (1.7.3-b131), ViaBackwards (5.0.4-SNAPSHOT), ViaVersion (5.0.4-SNAPSHOT), VoidGen (2.2.1), Vulcan (2.9.0), WorldGuard (7.0.11-beta1+a801a9d), ajLeaderboards (2.9.0), nightcore (2.6.3), skRayFall (1.9.28), skript-placeholders (1.7.0), skript-reflect (2.5.1)
[05:01:12] [ServerMain/INFO]: Environment: Environment[sessionHost=https://api.minehut.com/mitm/proxy, servicesHost=https://api.minecraftservices.com/, name=properties]
[05:01:12] [ServerMain/INFO]: Loaded 1290 recipes
[05:01:12] [ServerMain/INFO]: Loaded 1399 advancements
[05:01:12] [Server thread/INFO]: Starting minecraft server version 1.21.1
[05:01:12] [Server thread/INFO]: Loading properties
[05:01:13] [Server thread/INFO]: This server is running Purpur version 1.21.1-2287-ver/1.21.1@07979c3 (2024-08-14T07:33:47Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[05:01:13] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[05:01:13] [Server thread/INFO]: Server Ping Player Sample Count: 12
[05:01:13] [Server thread/INFO]: Using 4 threads for Netty based IO
[05:01:13] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[05:01:13] [Server thread/INFO]: Default game type: SURVIVAL
[05:01:13] [Server thread/INFO]: Generating keypair
[05:01:13] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25593
[05:01:13] [Server thread/INFO]: Using epoll channel type
[05:01:13] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[05:01:13] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[05:01:13] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'ChatColor' for files 'plugins/.paper-remapped/ChatColor-2.7.10.jar' and 'plugins/.paper-remapped/ChatColor-2.7.9.jar' in 'plugins/.paper-remapped'
[05:01:13] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'Multiverse-Core' for files 'plugins/.paper-remapped/390 - Multiverse-Core.jar' and 'plugins/.paper-remapped/multiverse-core-4.3.13-pre.2.jar' in 'plugins/.paper-remapped'
[05:01:15] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[05:01:15] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[05:01:15] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[05:01:15] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[05:01:15] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.0.4-SNAPSHOT
[05:01:15] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.4-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[05:01:16] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[05:01:16] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[05:01:16] [Server thread/INFO]: [ViaBackwards] Loading translations...
[05:01:16] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[05:01:17] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[05:01:17] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[05:01:17] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.1
[05:01:18] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2df032fa]
[05:01:18] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[05:01:18] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[05:01:18] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-726
[05:01:18] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.1) has not yet been tested! Proceed with caution.
[05:01:18] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.15.1
[05:01:18] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[05:01:18] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.6
[05:01:18] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3479)
[05:01:18] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+110-f1a5caf
[05:01:18] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.6.431
[05:01:18] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[05:01:18] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.1
[05:01:18] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.0
[05:01:19] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[05:01:19] [Server thread/INFO]: [Effect Library] Loading server plugin EffectLib v9.0
[05:01:19] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.5.2
[05:01:19] [Server thread/INFO]: [PyrsCore] Loading server plugin PyrsCore v1.6
[05:01:19] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.7
[05:01:19] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.5.0.0.1242
[05:01:19] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[05:01:19] [Server thread/INFO]: [CombatLogX] Loading expansions...
[05:01:19] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v17.7'...
[05:01:19] [Server thread/INFO]: [CombatLogX]  
[05:01:19] [Server thread/INFO]: [CombatLogX] Successfully loaded 1 expansion.
[05:01:19] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.3
[05:01:19] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v4.2.6
[05:01:19] [Server thread/INFO]: [skript-reflect] Loading server plugin skript-reflect v2.5.1
[05:01:19] [Server thread/INFO]: [Skuishy] Loading server plugin Skuishy v2.7
[05:01:19] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[05:01:19] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[05:01:19] [Server thread/INFO]: [DiSky] Loading server plugin DiSky v4.18.0
[05:01:19] [Server thread/INFO]: [skript-placeholders] Loading server plugin skript-placeholders v1.7.0
[05:01:19] [Server thread/INFO]: [PhysicsControl] Loading server plugin PhysicsControl v1.2.2
[05:01:19] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.3.3
[05:01:19] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v1.0.0
[05:01:19] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.1
[05:01:19] [Server thread/INFO]: [FancyGlow] Loading server plugin FancyGlow v2.0.1
[05:01:19] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[05:01:19] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.22
[05:01:19] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.0.6
[05:01:19] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.0.4-SNAPSHOT
[05:01:19] [Server thread/INFO]: [FreedomChat] Loading server plugin FreedomChat v1.7.0
[05:01:19] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.0
[05:01:19] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (477 ms).
[05:01:19] [Server thread/INFO]: [Shopkeepers] Loading config.
[05:01:19] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[05:01:19] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[05:01:19] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[05:01:19] [Server thread/INFO]: [ItemTag] Loading server plugin ItemTag v3.4.3
[05:01:19] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[05:01:19] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+110-f1a5caf
[05:01:19] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v5.1.1
[05:01:19] [Server thread/INFO]: [PyrsPlots] Loading server plugin PyrsPlots v1.2
[05:01:19] [Server thread/INFO]: [PyrsShulkers] Loading server plugin PyrsShulkers v1.0
[05:01:19] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.7.10.0
[05:01:19] [Server thread/INFO]: [UltimateAirdrops] Loading server plugin UltimateAirdrops v0.5.3-BETA
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[05:01:19] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[05:01:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[05:01:20] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.2
[05:01:20] [Server thread/INFO]: [KOTH] Loading server plugin KOTH v6.1
[05:01:20] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.1
[05:01:20] [Server thread/INFO]: [MineResetLite] Loading server plugin MineResetLite v5.4.1
[05:01:20] [Server thread/INFO]: [CustomDrops] Loading server plugin CustomDrops v1.17.1
[05:01:20] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[05:01:20] [Server thread/INFO]: [Duel] Loading server plugin Duel v1.46
[05:01:20] [Server thread/INFO]: [ChatColor] Loading server plugin ChatColor v2.7.10
[05:01:20] [Server thread/INFO]: [DeathBackpack] Loading server plugin DeathBackpack v1.0.0
[05:01:20] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.6.1
[05:01:20] [Server thread/INFO]: [IP] Loading server plugin IP v5.3.0
[05:01:20] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.3.1
[05:01:20] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[05:01:20] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[05:01:20] [Server thread/INFO]:         __    
[05:01:20] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[05:01:20] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[05:01:20] [Server thread/INFO]: 
[05:01:20] [Server thread/INFO]: [LuckPerms] Loading configuration...
[05:01:20] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[05:01:21] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[05:01:21] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[05:01:21] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1278ms)
[05:01:21] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[05:01:21] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[05:01:21] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[05:01:21] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[05:01:21] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[05:01:21] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.1
[05:01:21] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[05:01:21] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[05:01:21] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[05:01:21] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[05:01:22] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[05:01:22] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[05:01:22] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[05:01:22] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[05:01:22] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.6.431
[05:01:22] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[05:01:22] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[05:01:22] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.3
[05:01:22] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[05:01:22] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[05:01:22] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[05:01:22] [Server thread/INFO]: [nightcore] Server Version: 1.21 โœ”
[05:01:22] [Server thread/INFO]: [nightcore] Entity Id Counter: OK โœ”
[05:01:23] [Server thread/INFO]: [nightcore] Item NBT Compress: OK โœ”
[05:01:23] [Server thread/WARN]: [nightcore] ========== WARNING ==========
[05:01:23] [Server thread/WARN]: [nightcore] Enabled Mojang's DataFixer for ItemStacks to update/fix NBT structure from <= 1.20.4 to 1.20.6+
[05:01:23] [Server thread/WARN]: [nightcore] This may significally affect server's performance.
[05:01:23] [Server thread/WARN]: [nightcore] Please, re-save all configuration(s) using in-game GUI editor(s) (if there is any).
[05:01:23] [Server thread/WARN]: [nightcore] Then disable this 'feature' in the config.yml of nightcore.
[05:01:23] [Server thread/INFO]: [nightcore] Plugin loaded in 248 ms!
[05:01:23] [Server thread/INFO]: Preparing level "world"
[05:01:23] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[05:01:23] [Server thread/INFO]: Time elapsed: 439 ms
[05:01:23] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.4-SNAPSHOT
[05:01:23] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[05:01:23] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[05:01:23] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[05:01:23] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[05:01:23] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[05:01:23] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[05:01:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[05:01:23] [Server thread/INFO]: [WorldGuard] Loading region data...
[05:01:24] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[05:01:24] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[05:01:24] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.15.1
[05:01:24] [Server thread/INFO]: [LiteBans] Using system locale (en)
[05:01:24] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[05:01:24] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[05:01:24] [Server thread/INFO]: [LiteBans] Connecting to database...
[05:01:24] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[05:01:24] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[05:01:24] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (78.1 ms).
[05:01:24] [Server thread/INFO]: [LiteBans] Database connection fully initialized (80.3 ms).
[05:01:24] [Server thread/INFO]: [LiteBans] v2.15.1 enabled. Startup took 188 ms.
[05:01:24] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.6
[05:01:24] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[05:01:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.6]
[05:01:24] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3479)
[05:01:24] [Server thread/INFO]: [Citizens] Loading external libraries
[05:01:24] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[05:01:25] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[05:01:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[05:01:25] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[05:01:25] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+110-f1a5caf
[05:01:25] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[05:01:25] [Server thread/INFO]: [Essentials] No kits found to migrate.
[05:01:25] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[05:01:25] [Server thread/INFO]: [Essentials] Using locale en_US
[05:01:25] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[05:01:26] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[05:01:26] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[05:01:26] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[05:01:26] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[05:01:26] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[05:01:26] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[05:01:26] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
[05:01:26] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[05:01:26] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
[05:01:26] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[05:01:26] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:01:26] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:01:26] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[05:01:26] [Server thread/INFO]: Time elapsed: 134 ms
[05:01:26] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[05:01:26] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[05:01:26] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[05:01:26] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[05:01:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[05:01:26] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:01:26] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:01:26] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:01:26] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:01:26] [Server thread/INFO]: Preparing start region for dimension minecraft:main
[05:01:26] [Server thread/INFO]: Time elapsed: 96 ms
[05:01:26] [Server thread/INFO]: [WorldGuard] (Main) TNT ignition is PERMITTED.
[05:01:26] [Server thread/INFO]: [WorldGuard] (Main) Lighters are PERMITTED.
[05:01:26] [Server thread/INFO]: [WorldGuard] (Main) Lava fire is PERMITTED.
[05:01:26] [Server thread/INFO]: [WorldGuard] (Main) Fire spread is UNRESTRICTED.
[05:01:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Main'
[05:01:26] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:01:26] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:01:26] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[05:01:26] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[05:01:26] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[05:01:26] [Server thread/INFO]: [Skript] Enabling Skript v2.9.1
[05:01:26] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.9.2 (you're currently running 2.9.1)
[05:01:26] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.9.2/Skript-2.9.2.jar>https://github.com/SkriptLang/Skript/releases/download/2.9.2/Skript-2.9.2.jar
[05:01:32] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 5493ms
[05:01:32] [Server thread/INFO]: [Skript]  ~ created by & ยฉ Peter Gรผttinger aka Njol ~
[05:01:33] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.0
[05:01:33] [Server thread/INFO]: [Vulcan] Server Version: 1.21 detected!
[05:01:33] [Server thread/INFO]: [Vulcan] BStats enabled!
[05:01:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.0]
[05:01:33] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[05:01:33] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[05:01:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[05:01:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[05:01:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[05:01:33] [Server thread/INFO]: [Effect Library] Enabling EffectLib v9.0
[05:01:33] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.5.2
[05:01:33] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[05:01:33] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[05:01:33] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[05:01:33] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[05:01:33] [Server thread/INFO]: [ItemEdit] placeholders:
[05:01:33] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[05:01:33] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[05:01:33] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[05:01:33] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[05:01:33] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[05:01:33] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[05:01:33] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[05:01:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[05:01:33] [Server thread/INFO]: [ItemEdit] # Enabled (took 106 ms)
[05:01:33] [Server thread/INFO]: [PyrsCore] Enabling PyrsCore v1.6
[05:01:33] [Server thread/INFO]: [TAB] Enabling TAB v4.1.7
[05:01:33] [Server thread/INFO]: [TAB] Loaded NMS hook in 48ms
[05:01:34] [Server thread/INFO]: [TAB] Enabled in 276ms
[05:01:34] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.5.0.0.1242
[05:01:34] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[05:01:34] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[05:01:34] [Server thread/INFO]: CombatLogX was loaded successfully.
[05:01:34] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[05:01:34] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v17.7'...
[05:01:34] [Server thread/INFO]: [CombatLogX]  
[05:01:34] [Server thread/INFO]: [CombatLogX] Successfully enabled 1 expansion.
[05:01:34] [Server thread/INFO]: CombatLogX was enabled successfully.
[05:01:34] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.6
[05:01:34] [Server thread/INFO]: [Multiverse-Inventories 4.2.6] enabled.
[05:01:34] [Server thread/INFO]: [skript-reflect] Enabling skript-reflect v2.5.1
[05:01:34] [Server thread/INFO]: [Skuishy] Enabling Skuishy v2.7
[05:01:34] [Server thread/INFO]: [Skuishy] DecentHolograms elements loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] Vivecraft elements not loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] Vulcan elements loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] General elements loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] Note elements loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] Permission elements loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] Persistence elements loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] Plugin elements loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] Skin elements loaded.
[05:01:34] [Server thread/INFO]: [Skuishy] Skuishy has been enabled!
[05:01:34] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[05:01:34] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[05:01:35] [Server thread/INFO]: [DeluxeMenus] 5 GUI menus loaded!
[05:01:35] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[05:01:35] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[05:01:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[05:01:35] [Server thread/INFO]: [DiSky] Enabling DiSky v4.18.0
[05:01:35] [Server thread/INFO]: [DiSky] Loading emoji library ...
[05:01:35] [Server thread/INFO]: [DiSky] Success!
[05:01:36] [Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.7.0
[05:01:36] [Server thread/INFO]: [PhysicsControl] Enabling PhysicsControl v1.2.2
[05:01:36] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.3.3
[05:01:36] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v1.0.0
[05:01:36] [FancyHolograms-Holograms/INFO]: [FancyHolograms] Loaded 37 holograms for all loaded worlds
[05:01:36] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[05:01:36] [Server thread/WARN]: [AdvancedPortals] Proxy features disabled for Advanced Portals as bungee isn't enabled on the server (spigot.yml).If you are using Paper proxies.velocity.enabled (config/paper-global.yml) or settings.velocity-support.enabled (paper.yml) may not be enabled 
[05:01:36] [Server thread/INFO]: Advanced portals have been successfully enabled!
[05:01:36] [Server thread/INFO]: [Images] Enabling Images v2.5.1
[05:01:36] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[05:01:36] [Server thread/INFO]: [FancyGlow] Enabling FancyGlow v2.0.1
[05:01:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fancyglow [1.0]
[05:01:36] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[05:01:36] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[05:01:36] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[05:01:36] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[05:01:36] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
[05:01:36] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[05:01:36] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[05:01:36] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[05:01:36] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[05:01:36] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[05:01:36] [Server thread/INFO]: [skRayFall] Bacon is ready!
[05:01:36] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.22
[05:01:36] [Server thread/INFO]: [Tebex] Enabling Tebex v2.0.6
[05:01:37] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.0.4-SNAPSHOT
[05:01:37] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.7.0
[05:01:37] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.0
[05:01:37] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[05:01:37] [Server thread/INFO]: Environment: Environment[sessionHost=https://api.minehut.com/mitm/proxy, servicesHost=https://api.minecraftservices.com/, name=properties]
[05:01:37] [Server thread/INFO]: [Shopkeepers] Loading the data of 36 shopkeepers ...
[05:01:37] [Server thread/INFO]: [ItemTag] Enabling ItemTag v3.4.3
[05:01:37] [Server thread/INFO]: [ItemTag] Data using Spigot PersistentDataContainer
[05:01:37] [Server thread/INFO]: [ItemTag] EquipmentChangeListener
[05:01:37] [Server thread/INFO]: [ItemTag] Hooking into PlaceholderApi
[05:01:37] [Server thread/INFO]: [ItemTag] Hooked into PlaceHolderAPI:
[05:01:37] [Server thread/INFO]: [ItemTag] placeholders:
[05:01:37] [Server thread/INFO]: [ItemTag]   %itemtag_cooldown_<timeunit>_[cooldownid]%
[05:01:37] [Server thread/INFO]: [ItemTag]     shows how much cooldown has selected cooldownid for player
[05:01:37] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[05:01:37] [Server thread/INFO]: [ItemTag]     [cooldownid] for cooldown type, by default default
[05:01:37] [Server thread/INFO]: [ItemTag]     example: %itemtag_cooldown_s_anid%
[05:01:37] [Server thread/INFO]: [ItemTag]   %itemtag_handcooldown_<timeunit>%
[05:01:37] [Server thread/INFO]: [ItemTag]     shows how much cooldown has player on the item in his hand
[05:01:37] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[05:01:37] [Server thread/INFO]: [ItemTag]     example: %itemtag_handcooldown_s%
[05:01:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemtag [1.0]
[05:01:37] [Server thread/INFO]: [ItemTag] # Enabled (took 52 ms)
[05:01:37] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[05:01:37] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[05:01:37] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to fastbox - Minecraft: Java Edition server.
[05:01:37] [Server thread/INFO]: [ClearLag] Loading modules...
[05:01:37] [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)
[05:01:37] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[05:01:37] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[05:01:37] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[05:01:37] [Thread-12/WARN]: [ClearLag] Clearlag failed to check for updates - bukkit may be down
[05:01:37] [Thread-12/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[05:01:37] [Thread-12/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.Util.getBukkitVersion(Util.java:105)
[05:01:37] [Thread-12/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.updateAvailable(BukkitUpdater.java:32)
[05:01:37] [Thread-12/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.run(BukkitUpdater.java:82)
[05:01:37] [Thread-12/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[05:01:37] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+110-f1a5caf
[05:01:37] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[05:01:37] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.1
[05:01:37] [Server thread/INFO]: [PyrsPlots] Enabling PyrsPlots v1.2
[05:01:37] [Server thread/INFO]: [PyrsShulkers] Enabling PyrsShulkers v1.0
[05:01:37] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.7.10.0
[05:01:38] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
[05:01:38] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[05:01:38] [Server thread/INFO]: [UltimateAirdrops] Enabling UltimateAirdrops v0.5.3-BETA
[05:01:38] [Server thread/INFO]: [UltimateAirdrops]<-------------------------------------------------------------->
[05:01:38] [Server thread/INFO]: [UltimateAirdrops] Has been successfully enabled (version: 0.5.3-BETA)
[05:01:38] [Server thread/INFO]: [UltimateAirdrops] Thanks for using UltimateAirdrops by KeySet Studios :)
[05:01:38] [Server thread/INFO]: [UltimateAirdrops]<-------------------------------------------------------------->
[05:01:38] [Server thread/INFO]: [UltimateAirdrops] NOTE: This plugin will change its name to "ksAirdrops" in upcoming versions
[05:01:38] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[05:01:38] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[05:01:38] [Server thread/INFO]: [ajLeaderboards] Loaded 0 boards
[05:01:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[05:01:38] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[05:01:38] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[05:01:38] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.2
[05:01:39] [Server thread/WARN]: [MiniMOTD] Could not load Revenant.png: image must be 64x64px
[05:01:39] [Server thread/INFO]: [KOTH] Enabling KOTH v6.1
[05:01:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: koth [6.1]
[05:01:39] [pool-73-thread-1/INFO]: [KOTH] Sorting through upcoming KOTH schedules...
[05:01:39] [Server thread/INFO]: ===================================
[05:01:39] [Server thread/INFO]: 
[05:01:39] [Server thread/INFO]: - Plugin: KOTH
[05:01:39] [Server thread/INFO]: - Version: 6.1
[05:01:39] [Server thread/INFO]: - Server Version: null
[05:01:39] [Server thread/INFO]: - Author: Benzimmer
[05:01:39] [Server thread/INFO]: - Discord: https://discord.gg/fuffySb
[05:01:39] [Server thread/INFO]: 
[05:01:39] [Server thread/INFO]: - Searching for plugin updates...
[05:01:39] [Server thread/INFO]: : Latest plugin version found.
[05:01:39] [Server thread/INFO]: 
[05:01:39] [Server thread/INFO]: - Successfully registered placeholders with PlaceholderAPI.
[05:01:39] [Server thread/INFO]: 
[05:01:40] [Server thread/INFO]: - Loaded 1 koths.
[05:01:40] [Server thread/INFO]: - Loaded 45 commands.
[05:01:40] [Server thread/INFO]: 
[05:01:40] [Server thread/INFO]: - Enabled plugin in 125 ms
[05:01:40] [Server thread/INFO]: 
[05:01:40] [Server thread/INFO]: ===================================
[05:01:40] [pool-73-thread-1/INFO]: [KOTH] Successfully sorted through all KOTH schedules.
[05:01:40] [Server thread/ERROR]: [KOTH] Failed to register events for class com.benzimmer123.koth.d.b.b because com/SirBlobman/combatlogx/api/event/PlayerUntagEvent does not exist.
[05:01:40] [Server thread/INFO]: [KOTH] Successfully hooked into CombatLogX.
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.1
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[05:01:40] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[05:01:40] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@30b1dc57
[05:01:40] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Loaded 6 rarities!
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crates.
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[05:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[05:01:40] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 806 ms!
[05:01:40] [Server thread/INFO]: [MineResetLite] Enabling MineResetLite v5.4.1
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Diamond.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Lapis.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Iron.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Quartz.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Wood.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Revenant.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Custom.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Netherite.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Gold.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Pumpkin.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Debris.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Legend.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Obsidian.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Emerald.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Stone.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Coal.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Beacon.mine.yml'...
[05:01:40] [Server thread/INFO]: [MineResetLite] Registering BlockEventListener
[05:01:40] [Server thread/INFO]: [MineResetLite] TokenEnchant was not found... skipping.
[05:01:40] [Server thread/INFO]: [MineResetLite] Registering ExplodeEventListener
[05:01:40] [Server thread/INFO]: [MineResetLite] Registering PlayerEventListener
[05:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mineresetlite [5.4.1]
[05:01:40] [Server thread/INFO]: [MineResetLite] Registered PAPI expansion
[05:01:40] [Server thread/INFO]: [MineResetLite] MineResetLite version 5.4.1 enabled!
[05:01:40] [Server thread/INFO]: [CustomDrops] Enabling CustomDrops v1.17.1
[05:01:41] [pool-69-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[05:01:41] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[05:01:41] [Server thread/INFO]: [Duel] Enabling Duel v1.46
[05:01:41] [Server thread/WARN]: [Duel] Could not find MiniPlaceholders! This is not required to install.
[05:01:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: duel [1.46]
[05:01:41] [Server thread/INFO]: [ChatColor] Enabling ChatColor v2.7.10
[05:01:41] [Server thread/INFO]: [ChatColor] Enabling ChatColor v2.7.10
[05:01:41] [Server thread/INFO]: [ChatColor] PlaceholderAPI support: Yes
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern dark_red...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern dark_red!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern red...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern red!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern gold...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern gold!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern yellow...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern yellow!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern green...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern green!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern lime...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern lime!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern aqua...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern aqua!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern dark_aqua...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern dark_aqua!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern blue...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern blue!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern dark_blue...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern dark_blue!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern pink...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern pink!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern purple...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern purple!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern white...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern white!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern gray...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern gray!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern dark_gray...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern dark_gray!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern black...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern black!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern monochromatic...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern monochromatic!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern rainbow...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern rainbow!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern rainbow_random...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern rainbow_random!
[05:01:41] [Server thread/INFO]: [ChatColor] Loading pattern rainbow_gradient...
[05:01:41] [Server thread/INFO]: [ChatColor] Loaded pattern rainbow_gradient!
[05:01:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatcolor [1.0]
[05:01:41] [Server thread/INFO]: [DeathBackpack] Enabling DeathBackpack v1.0.0
[05:01:41] [Server thread/INFO]: +---------------- DeathBackpack ------------------+
[05:01:41] [Server thread/INFO]: [DeathBackpack] The plugin has been Enabled!
[05:01:41] [Server thread/INFO]: [DeathBackpack] Plugin creator: Bosternike
[05:01:41] [Server thread/INFO]: [DeathBackpack] Plugin version: 1.0.0
[05:01:41] [Server thread/INFO]: +---------------- DeathBackpack ------------------+
[05:01:41] [Server thread/INFO]: [SkBee] Enabling SkBee v3.6.1
[05:01:41] [Server thread/INFO]: [SkBee] Loading NBTApi...
[05:01:41] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[05:01:41] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[05:01:41] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[05:01:41] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[05:01:41] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[05:01:41] [Server thread/INFO]: [SkBee] Loaded (426) elements:
[05:01:41] [Server thread/INFO]: [SkBee]  - 56 events
[05:01:41] [Server thread/INFO]: [SkBee]  - 70 effects
[05:01:41] [Server thread/INFO]: [SkBee]  - 258 expressions
[05:01:41] [Server thread/INFO]: [SkBee]  - 27 conditions
[05:01:41] [Server thread/INFO]: [SkBee]  - 15 sections
[05:01:41] [Server thread/INFO]: [SkBee] Checking for update...
[05:01:41] [Server thread/INFO]: [SkBee] Plugin is up to date!
[05:01:41] [Server thread/INFO]: [SkBee] Successfully enabled v3.6.1 in 0.58 seconds
[05:01:41] [Server thread/INFO]: [IP] Enabling IP v5.3.0
[05:01:41] [Server thread/INFO]: [IP] Registered PlaceholderAPI hook
[05:01:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: witp [5.3.0]
[05:01:44] [Server thread/INFO]: Preparing start region for dimension minecraft:witp
[05:01:44] [Server thread/INFO]: Time elapsed: 4 ms
[05:01:44] [Server thread/INFO]: [WorldGuard] (witp) TNT ignition is PERMITTED.
[05:01:44] [Server thread/INFO]: [WorldGuard] (witp) Lighters are PERMITTED.
[05:01:44] [Server thread/INFO]: [WorldGuard] (witp) Lava fire is PERMITTED.
[05:01:44] [Server thread/INFO]: [WorldGuard] (witp) Fire spread is UNRESTRICTED.
[05:01:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'witp'
[05:01:44] [FancyHolograms-Holograms/INFO]: [FancyHolograms] Loading holograms for world witp
[05:01:44] [FancyHolograms-Holograms/INFO]: [FancyHolograms] Loaded 0 holograms for world witp
[05:01:45] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.3.1
[05:01:45] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[05:01:45] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[05:01:45] [Server thread/INFO]: [PlayerVaults] Loaded! Took 296ms
[05:01:45] [Server thread/INFO]: [spark] Starting background profiler...
[05:01:45] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[05:01:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateairdrops [0.5.3-BETA]
[05:01:46] [Server thread/INFO]: [UltimateAirdrops] Enabled Soft-Dependencies: DecentHolograms, PlaceHolderAPI, WorldGuard
[05:01:46] [Server thread/INFO]: [UltimateAirdrops] Missing Soft-Dependencies: HolographicDisplay, RedProtect, GriefPrevention, Dynmap, Towny
[05:01:46] [Server thread/INFO]: Done preparing level "world" (22.938s)
[05:01:46] [Server thread/INFO]: Running delayed init tasks
[05:01:46] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[05:01:46] [Craft Scheduler Thread - 29 - IP/INFO]: [IP] Checking for updates
[05:01:46] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[05:01:46] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[05:01:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[05:01:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[05:01:46] [Craft Scheduler Thread - 23 - UltimateAirdrops/INFO]: [UltimateAirdrops] There is not a new update available, you are up to date!
[05:01:46] [Craft Scheduler Thread - 27 - IP/INFO]: [IP] Loaded all schematics!
[05:01:46] [Craft Scheduler Thread - 29 - IP/INFO]: [IP] No new version found
[05:01:46] [Craft Scheduler Thread - 16 - Skuishy/INFO]: [Skuishy] Got latest version.
[05:01:46] [Craft Scheduler Thread - 12 - Essentials/INFO]: [Essentials] Fetching version information...
[05:01:46] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[05:01:46] [Server thread/INFO]: [Skript] Loading variables...
[05:01:46] [Server thread/INFO]: [Skript] Loaded 1044 variables in 0.0 seconds
[05:01:46] [Server thread/INFO]: [Skript] Line 3: (DiscordBot.sk)
[05:01:46] [Server thread/INFO]:     Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section.
[05:01:46] [Server thread/INFO]:     Line: token:#your token
[05:01:46] [Server thread/INFO]:  
[05:01:46] [Server thread/INFO]: [Skript] Line 34: (DiscordBot.sk)
[05:01:46] [Server thread/INFO]:     undefined option {@token}
[05:01:46] [Server thread/INFO]:     Line: token: "{@token}"
[05:01:46] [Server thread/INFO]:  
[05:01:46] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[05:01:46] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[05:01:47] [Server thread/INFO]: [Skript] Line 34: (DiscordBot.sk)
[05:01:47] [Server thread/INFO]:     undefined option {@token}
[05:01:47] [Server thread/INFO]:     Line: token: "{@token}"
[05:01:47] [Server thread/INFO]:  
[05:01:48] [Server thread/WARN]: net.dv8tion.jda.api.exceptions.InvalidTokenException: The provided token is invalid!
[05:01:48] [Server thread/WARN]:     at DiSky 4.18.0.jar//net.dv8tion.jda.internal.JDAImpl.verifyToken(JDAImpl.java:408)
[05:01:48] [Server thread/WARN]:     at DiSky 4.18.0.jar//net.dv8tion.jda.internal.JDAImpl.login(JDAImpl.java:325)
[05:01:48] [Server thread/WARN]:     at DiSky 4.18.0.jar//net.dv8tion.jda.internal.JDAImpl.login(JDAImpl.java:291)
[05:01:48] [Server thread/WARN]:     at DiSky 4.18.0.jar//net.dv8tion.jda.api.JDABuilder.build(JDABuilder.java:1849)
[05:01:48] [Server thread/WARN]:     at DiSky 4.18.0.jar//info.itsthesky.disky.elements.structures.StructBot.load(StructBot.java:238)
[05:01:48] [Server thread/WARN]:     at Skript-2.9.1.jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$8(ScriptLoader.java:570)
[05:01:48] [Server thread/WARN]:     at java.base/java.util.ArrayList.removeIf(ArrayList.java:1755)
[05:01:48] [Server thread/WARN]:     at java.base/java.util.ArrayList.removeIf(ArrayList.java:1743)
[05:01:48] [Server thread/WARN]:     at Skript-2.9.1.jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$10(ScriptLoader.java:561)
[05:01:48] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture.uniApplyNow(CompletableFuture.java:684)
[05:01:48] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture.uniApplyStage(CompletableFuture.java:662)
[05:01:48] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture.thenApply(CompletableFuture.java:2200)
[05:01:48] [Server thread/WARN]:     at Skript-2.9.1.jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:513)
[05:01:48] [Server thread/WARN]:     at Skript-2.9.1.jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:459)
[05:01:48] [Server thread/WARN]:     at Skript-2.9.1.jar//ch.njol.skript.Skript$1.run(Skript.java:853)
[05:01:48] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[05:01:48] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[05:01:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1241)
[05:01:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[05:01:48] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[05:01:49] [Server thread/INFO]: [net.dv8tion.jda.api.JDA] Login Successful!
[05:01:49] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[05:01:49] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.api.JDA] Finished Loading!
[05:01:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clan [1.7.0]
[05:01:50] [Server thread/INFO]: [Box] Placed blocks removed!
[05:01:50] [Server thread/INFO]: [Skript] Loaded 26 scripts with a total of 144 structures in 4.09 seconds
[05:01:50] [Server thread/INFO]: [Skript] Finished loading.
[05:01:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[05:01:50] [Server thread/ERROR]: [PlaceholderAPI] [tebex] The secret token has not been set.
[05:01:50] [Server thread/ERROR]: [PlaceholderAPI] [tebex] Set tebex-secret in PlaceholderAPI config.
[05:01:50] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion tebex due to an unknown issue.
[05:01:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.2]
[05:01:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[05:01:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: kdratio [1.1.0]
[05:01:50] [Server thread/INFO]: 4 placeholder hook(s) registered!
[05:01:50] [Server thread/INFO]: [Citizens] Loaded 4 NPCs.
[05:01:50] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansion.
[05:01:50] [Server thread/INFO]: [Multiverse-Inventories] First run!
[05:01:50] [Server thread/INFO]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[05:01:50] [Server thread/INFO]: Done (41.409s)! For help, type "help"
[05:01:50] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 4550ms or 91 ticks behind
[05:01:50] [Craft Scheduler Thread - 22 - Vault/INFO]: [Vault] Checking for Updates ... 
[05:01:50] [Craft Scheduler Thread - 22 - Vault/INFO]: [Vault] No new version available
[05:01:50] [Craft Scheduler Thread - 12 - Essentials/WARN]: [Essentials] You're 1 EssentialsX dev build(s) out of date!
[05:01:50] [Craft Scheduler Thread - 12 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[05:01:51] [Craft Scheduler Thread - 20 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 3 ImageMaps!
[05:01:52] [Server thread/INFO]: [KOTH] Successfully hooked into TAB.
[05:01:53] [Craft Scheduler Thread - 12 - Images/INFO]: [Images] Loaded 1 images...
[05:02:05] [Craft Scheduler Thread - 13 - MineResetLite/INFO]: [MineResetLite] Checking updates...
[05:02:05] [Craft Scheduler Thread - 13 - MineResetLite/INFO]: [MineResetLite] Checking updates completed.
[05:02:20] [Craft Scheduler Thread - 21 - ChatColor/INFO]: [ChatColor] You are using the latest version of ChatColor!
[05:04:50] [Server thread/INFO]: 
[05:04:50] [Server thread/INFO]: DISCORD | To join our community and be notified for future updates, /discord.
[05:04:50] [Server thread/INFO]: 
[05:06:50] [Craft Scheduler Thread - 20 - PyrsPlots/WARN]: [PyrsPlots] Plugin PyrsPlots v1.2 generated an exception while executing task 319
java.lang.NullPointerException: Nodes must be provided.
    at org.yaml.snakeyaml.nodes.NodeTuple.<init>(NodeTuple.java:26) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:181) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:174) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.represent(BaseRepresenter.java:81) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.toNodeTree(YamlConfiguration.java:195) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:79) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at core-1.6_1 (1).jar/me.pyr.core.api.storage.SingleRawStorage.saveAll(SingleRawStorage.java:40) ~[core-1.6_1 (1).jar:?]
    at plots-1.2 (1).jar/me.pyr.plots.PlotsPlugin.save(PlotsPlugin.java:88) ~[plots-1.2 (1).jar:?]
    at plots-1.2 (1).jar/me.pyr.plots.PlotsPlugin$1.run(PlotsPlugin.java:65) ~[plots-1.2 (1).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[05:06:52] [Craft Scheduler Thread - 12 - Citizens/WARN]: Couldn't look up profile properties for 78424061-4657-4be8-820e-3f4266018507
com.mojang.authlib.exceptions.MinecraftClientException: Failed to read value <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot GET /mitm/proxy/session/minecraft/profile/7842406146574be8820e3f4266018507</pre>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8bd286bd9c96c94a',t:'MTcyNTMzMjgxMi4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>

    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:32) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:99) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:57) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfileUncached(YggdrasilMinecraftSessionService.java:201) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfile(YggdrasilMinecraftSessionService.java:171) ~[authlib-6.0.54.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fetchProfile(PaperMinecraftSessionService.java:35) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.nms.v1_21_R1.util.NMSImpl.fillProfileProperties(NMSImpl.java:538) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.fillProfileProperties(NMS.java:176) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread$1.onProfileLookupSucceeded(ProfileFetchThread.java:168) ~[Citizens (8).jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository$PreProfileLookupCallback.onProfileLookupSucceeded(PaperGameProfileRepository.java:52) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:69) ~[purpur-1.21.1.jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:193) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:212) ~[Citizens (8).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:397) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:393) ~[gson-2.10.1.jar:?]
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:386) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
[05:06:52] [Craft Scheduler Thread - 12 - Citizens/WARN]: Couldn't look up profile properties for 9248d2a7-98c8-4cdb-b791-276ca5d7638c
com.mojang.authlib.exceptions.MinecraftClientException: Failed to read value <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot GET /mitm/proxy/session/minecraft/profile/9248d2a798c84cdbb791276ca5d7638c</pre>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8bd286bddd07c94a',t:'MTcyNTMzMjgxMi4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>

    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:32) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:99) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:57) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfileUncached(YggdrasilMinecraftSessionService.java:201) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfile(YggdrasilMinecraftSessionService.java:171) ~[authlib-6.0.54.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fetchProfile(PaperMinecraftSessionService.java:35) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.nms.v1_21_R1.util.NMSImpl.fillProfileProperties(NMSImpl.java:538) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.fillProfileProperties(NMS.java:176) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread$1.onProfileLookupSucceeded(ProfileFetchThread.java:168) ~[Citizens (8).jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository$PreProfileLookupCallback.onProfileLookupSucceeded(PaperGameProfileRepository.java:52) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:69) ~[purpur-1.21.1.jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:193) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:212) ~[Citizens (8).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:397) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:393) ~[gson-2.10.1.jar:?]
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:386) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
[05:07:50] [Server thread/INFO]: 
[05:07:50] [Server thread/INFO]:           | Help support us by donating!
[05:07:50] [Server thread/INFO]: STORE | Unlock commands, features and better rewards.
[05:07:50] [Server thread/INFO]:           | Type /buy to view all of our packages.
[05:07:50] [Server thread/INFO]: 
[05:09:20] [User Authenticator #0/INFO]: UUID of player nqpt is 58cc1acb-f0c1-4e94-8d54-074cafa878f3
[05:09:20] [TAB Processing Thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[05:09:20] [Server thread/INFO]: [TAB] [TAB] tagsuffix ' [FastBox]' has been successfully assigned to player nqpt
[05:09:20] [Server thread/INFO]: [TAB] [TAB] tabsuffix ' [FastBox]' has been successfully assigned to player nqpt
[05:09:20] [FancyHolograms-Holograms/INFO]: [ChatColorHandler] Found MiniMessage in Server. MiniMessage support enabled.
[05:09:20] [FancyHolograms-Holograms/INFO]: [ChatColorHandler] Found plugin "PlaceholderAPI". PlaceholderAPI support enabled.
[05:09:20] [Server thread/INFO]: nqpt[/83.242.59.237:41903] logged in with entity id 160 at ([Spawn]36.13769011235364, 99.0, -16.49577201739314)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] DiSky Internal Error (version: 4.18.0)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Error type: RuntimeException
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Unable to get the bot named boost, its not loaded or not enabled.
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Full Stacktrace:
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] DiSky 4.18.0.jar//info.itsthesky.disky.elements.getters.GetBot.get(GetBot.java:52)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] DiSky 4.18.0.jar//info.itsthesky.disky.elements.getters.GetBot.get(GetBot.java:20)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Skript-2.9.1.jar//ch.njol.skript.lang.util.SimpleExpression.getArray(SimpleExpression.java:97)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Skript-2.9.1.jar//ch.njol.skript.lang.util.SimpleExpression.getSingle(SimpleExpression.java:60)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] DiSky 4.18.0.jar//info.itsthesky.disky.elements.effects.retrieve.RetrieveUser.execute(RetrieveUser.java:43)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Skript-2.9.1.jar//ch.njol.skript.util.AsyncEffect.lambda$walk$1(AsyncEffect.java:60)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] java.base/java.lang.Thread.run(Thread.java:1583)
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] READ THE ERROR CAREFULLY, and if you are sure about it,
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] you can report the error with the whole stacktrace on the GitHub repository:
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] https://github.com/DiSkyOrg/DiSky/issues/new
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:09:20] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:09:21] [Server thread/INFO]: [+] nqpt
[05:09:25] [Server thread/INFO]: nqpt issued server command: /excellentcrates reload
[05:09:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[05:09:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[05:09:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[05:09:25] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@6a616a40
[05:09:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Loaded 6 rarities!
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crates.
[05:09:25] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[05:09:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[05:10:01] [Server thread/INFO]: nqpt issued server command: /excellentcrates key give nqpt gear 1
[05:10:50] [Server thread/INFO]: 
[05:10:50] [Server thread/INFO]: HELP | Need a quick in-game tutorial? Type /help and learn how things work.
[05:10:50] [Server thread/INFO]: 
[05:11:06] [Server thread/INFO]: nqpt issued server command: /excellentcrates reload
[05:11:06] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown initiated...
[05:11:06] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown completed.
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[05:11:06] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[05:11:06] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-3 - Added connection org.sqlite.jdbc4.JDBC4Connection@4a637dd7
[05:11:06] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Loaded 6 rarities!
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crates.
[05:11:06] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[05:11:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[05:11:35] [Server thread/INFO]: nqpt issued server command: /whitelist add Easturza
[05:11:35] [Server thread/INFO]: [nqpt: Added Easturza to the whitelist]
[05:11:39] [User Authenticator #1/INFO]: UUID of player Easturza is 1cb83fe4-201c-4d58-aa8b-4f637b7fd840
[05:11:39] [Server thread/INFO]: [TAB] [TAB] tagsuffix has been successfully removed from player Easturza
[05:11:39] [Server thread/INFO]: [TAB] [TAB] tabsuffix has been successfully removed from player Easturza
[05:11:39] [Server thread/INFO]: Easturza[/89.97.3.164:56851] logged in with entity id 1519 at ([Spawn]3.1577231998799076, 107.0, -63.57877450495263)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] DiSky Internal Error (version: 4.18.0)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Error type: RuntimeException
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Unable to get the bot named boost, its not loaded or not enabled.
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Full Stacktrace:
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] DiSky 4.18.0.jar//info.itsthesky.disky.elements.getters.GetBot.get(GetBot.java:52)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] DiSky 4.18.0.jar//info.itsthesky.disky.elements.getters.GetBot.get(GetBot.java:20)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Skript-2.9.1.jar//ch.njol.skript.lang.util.SimpleExpression.getArray(SimpleExpression.java:97)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Skript-2.9.1.jar//ch.njol.skript.lang.util.SimpleExpression.getSingle(SimpleExpression.java:60)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] DiSky 4.18.0.jar//info.itsthesky.disky.elements.effects.retrieve.RetrieveUser.execute(RetrieveUser.java:43)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] Skript-2.9.1.jar//ch.njol.skript.util.AsyncEffect.lambda$walk$1(AsyncEffect.java:60)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] java.base/java.lang.Thread.run(Thread.java:1583)
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] READ THE ERROR CAREFULLY, and if you are sure about it,
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] you can report the error with the whole stacktrace on the GitHub repository:
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] https://github.com/DiSkyOrg/DiSky/issues/new
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:11:39] [Craft Scheduler Thread - 17 - Skript/INFO]: [!] 
[05:11:39] [Server thread/INFO]: [+] Easturza
[05:11:44] [Async Chat Thread - #2/INFO]: PLAYER Easturza: alright which one
[05:11:47] [Server thread/INFO]: nqpt issued server command: /tphere Easturza
[05:11:50] [Craft Scheduler Thread - 43 - PyrsPlots/WARN]: [PyrsPlots] Plugin PyrsPlots v1.2 generated an exception while executing task 319
java.lang.NullPointerException: Nodes must be provided.
    at org.yaml.snakeyaml.nodes.NodeTuple.<init>(NodeTuple.java:26) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:181) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:174) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.represent(BaseRepresenter.java:81) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.toNodeTree(YamlConfiguration.java:195) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:79) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at core-1.6_1 (1).jar/me.pyr.core.api.storage.SingleRawStorage.saveAll(SingleRawStorage.java:40) ~[core-1.6_1 (1).jar:?]
    at plots-1.2 (1).jar/me.pyr.plots.PlotsPlugin.save(PlotsPlugin.java:88) ~[plots-1.2 (1).jar:?]
    at plots-1.2 (1).jar/me.pyr.plots.PlotsPlugin$1.run(PlotsPlugin.java:65) ~[plots-1.2 (1).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[05:11:51] [Craft Scheduler Thread - 12 - Citizens/WARN]: Couldn't look up profile properties for 78424061-4657-4be8-820e-3f4266018507
com.mojang.authlib.exceptions.MinecraftClientException: Failed to read value <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot GET /mitm/proxy/session/minecraft/profile/7842406146574be8820e3f4266018507</pre>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8bd28e0b89560810',t:'MTcyNTMzMzExMS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>

    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:32) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:99) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:57) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfileUncached(YggdrasilMinecraftSessionService.java:201) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfile(YggdrasilMinecraftSessionService.java:171) ~[authlib-6.0.54.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fetchProfile(PaperMinecraftSessionService.java:35) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.nms.v1_21_R1.util.NMSImpl.fillProfileProperties(NMSImpl.java:538) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.fillProfileProperties(NMS.java:176) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread$1.onProfileLookupSucceeded(ProfileFetchThread.java:168) ~[Citizens (8).jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository$PreProfileLookupCallback.onProfileLookupSucceeded(PaperGameProfileRepository.java:52) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:69) ~[purpur-1.21.1.jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:193) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:212) ~[Citizens (8).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:397) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:393) ~[gson-2.10.1.jar:?]
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:386) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
[05:11:51] [Craft Scheduler Thread - 12 - Citizens/WARN]: Couldn't look up profile properties for 9248d2a7-98c8-4cdb-b791-276ca5d7638c
com.mojang.authlib.exceptions.MinecraftClientException: Failed to read value <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot GET /mitm/proxy/session/minecraft/profile/9248d2a798c84cdbb791276ca5d7638c</pre>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8bd28e0bc9820810',t:'MTcyNTMzMzExMS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>

    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:32) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:99) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:57) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfileUncached(YggdrasilMinecraftSessionService.java:201) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfile(YggdrasilMinecraftSessionService.java:171) ~[authlib-6.0.54.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fetchProfile(PaperMinecraftSessionService.java:35) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.nms.v1_21_R1.util.NMSImpl.fillProfileProperties(NMSImpl.java:538) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.fillProfileProperties(NMS.java:176) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread$1.onProfileLookupSucceeded(ProfileFetchThread.java:168) ~[Citizens (8).jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository$PreProfileLookupCallback.onProfileLookupSucceeded(PaperGameProfileRepository.java:52) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:69) ~[purpur-1.21.1.jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:193) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:212) ~[Citizens (8).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:397) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:393) ~[gson-2.10.1.jar:?]
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:386) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
[05:11:52] [Async Chat Thread - #2/INFO]: Owner nqpt: u have custom
[05:11:54] [Async Chat Thread - #2/INFO]: Owner nqpt: ?
[05:11:58] [Async Chat Thread - #2/INFO]: PLAYER Easturza: yeah
[05:12:06] [Server thread/INFO]: nqpt issued server command: /lp user Easturza parent add custom
[05:12:06] [luckperms-command-executor/INFO]: [LP] LOG > (nqpt) [U] (easturza)
[05:12:06] [luckperms-command-executor/INFO]: [LP] LOG > parent add custom
[05:12:08] [Async Chat Thread - #2/INFO]: Owner nqpt: gave
[05:12:13] [Async Chat Thread - #2/INFO]: CUSTOM Easturza: I didn't bother asking because you were busy dealing with chat
[05:12:13] [Async Chat Thread - #2/INFO]: Owner nqpt: all ranked
[05:12:16] [Async Chat Thread - #2/INFO]: Owner nqpt: should be 3
[05:12:20] [Async Chat Thread - #2/INFO]: CUSTOM Easturza: alright
[05:12:26] [Async Chat Thread - #2/INFO]: CUSTOM Easturza: so this should be csgo right
[05:12:36] [Async Chat Thread - #2/INFO]: Owner nqpt: i couldnt skip it lol
[05:12:38] [Async Chat Thread - #2/INFO]: Owner nqpt: but ye
[05:12:40] [Server thread/INFO]: nqpt issued server command: /gmc
[05:12:49] [Async Chat Thread - #2/INFO]: CUSTOM Easturza: did you reload
[05:12:55] [Async Chat Thread - #2/INFO]: Owner nqpt: bro im not that
[05:12:57] [Async Chat Thread - #2/INFO]: Owner nqpt: yk
[05:13:00] [Async Chat Thread - #2/INFO]: CUSTOM Easturza: what
[05:13:03] [Async Chat Thread - #2/INFO]: Owner nqpt: r3tarded
[05:13:04] [Async Chat Thread - #2/INFO]: CUSTOM Easturza: Here wait
[05:13:05] [Async Chat Thread - #2/INFO]: Owner nqpt: ofc
[05:13:06] [Async Chat Thread - #2/INFO]: CUSTOM Easturza: let me show you
[05:13:07] [Async Chat Thread - #2/INFO]: CUSTOM Easturza: vc
[05:13:08] [Async Chat Thread - #2/INFO]: Owner nqpt: i reloaded
[05:13:18] [Server thread/INFO]: Easturza lost connection: Disconnected
[05:13:50] [Server thread/INFO]: 
[05:13:50] [Server thread/INFO]: RULES | Please follow the server rules! Type /rules to read them.
[05:13:50] [Server thread/INFO]: 
[05:15:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Shutdown initiated...
[05:15:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Shutdown completed.
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[05:15:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Starting...
[05:15:19] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-4 - Added connection org.sqlite.jdbc4.JDBC4Connection@282eb6c5
[05:15:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Start completed.
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Loaded 6 rarities!
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crates.
[05:15:19] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[05:15:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[05:15:19] [Server thread/INFO]: Crates ยป Plugin reloaded!
[05:15:58] [Server thread/INFO]: nqpt issued server command: /excellentcrates editor
[05:16:50] [Craft Scheduler Thread - 10 - PyrsCore/WARN]: [PyrsCore] Plugin PyrsCore v1.6 generated an exception while executing task 259
java.lang.NullPointerException: Nodes must be provided.
    at org.yaml.snakeyaml.nodes.NodeTuple.<init>(NodeTuple.java:26) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:181) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:174) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:174) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.represent(BaseRepresenter.java:81) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.toNodeTree(YamlConfiguration.java:195) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:79) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at core-1.6_1 (1).jar/me.pyr.core.api.storage.SingleRawStorage.saveAll(SingleRawStorage.java:40) ~[core-1.6_1 (1).jar:?]
    at core-1.6_1 (1).jar/me.pyr.core.CorePlugin.saveAll(CorePlugin.java:58) ~[core-1.6_1 (1).jar:?]
    at core-1.6_1 (1).jar/me.pyr.core.CorePlugin$1.run(CorePlugin.java:28) ~[core-1.6_1 (1).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[05:16:50] [Server thread/INFO]: 
[05:16:50] [Server thread/INFO]: DISCORD | To join our community and be notified for future updates, /discord.
[05:16:50] [Server thread/INFO]: 
[05:19:50] [Server thread/INFO]: 
[05:19:50] [Server thread/INFO]:           | Help support us by donating!
[05:19:50] [Server thread/INFO]: STORE | Unlock commands, features and better rewards.
[05:19:50] [Server thread/INFO]:           | Type /buy to view all of our packages.
[05:19:50] [Server thread/INFO]: 
[05:19:59] [Server thread/INFO]: nqpt issued server command: /excellentcrates reload
[05:19:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Shutdown initiated...
[05:19:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Shutdown completed.
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[05:19:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Starting...
[05:19:59] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-5 - Added connection org.sqlite.jdbc4.JDBC4Connection@12b9e48
[05:19:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Start completed.
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Loaded 6 rarities!
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crates.
[05:19:59] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[05:19:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[05:21:50] [Craft Scheduler Thread - 10 - PyrsPlots/WARN]: [PyrsPlots] Plugin PyrsPlots v1.2 generated an exception while executing task 319
java.lang.NullPointerException: Nodes must be provided.
    at org.yaml.snakeyaml.nodes.NodeTuple.<init>(NodeTuple.java:26) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:181) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:174) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:331) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSerializable.representData(YamlRepresenter.java:52) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:111) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.representer.BaseRepresenter.represent(BaseRepresenter.java:81) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.toNodeTree(YamlConfiguration.java:195) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:79) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at core-1.6_1 (1).jar/me.pyr.core.api.storage.SingleRawStorage.saveAll(SingleRawStorage.java:40) ~[core-1.6_1 (1).jar:?]
    at plots-1.2 (1).jar/me.pyr.plots.PlotsPlugin.save(PlotsPlugin.java:88) ~[plots-1.2 (1).jar:?]
    at plots-1.2 (1).jar/me.pyr.plots.PlotsPlugin$1.run(PlotsPlugin.java:65) ~[plots-1.2 (1).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[05:21:51] [Craft Scheduler Thread - 51 - Citizens/WARN]: Couldn't look up profile properties for 78424061-4657-4be8-820e-3f4266018507
com.mojang.authlib.exceptions.MinecraftClientException: Failed to read value <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot GET /mitm/proxy/session/minecraft/profile/7842406146574be8820e3f4266018507</pre>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8bd29cb1e8e6073f',t:'MTcyNTMzMzcxMS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>

    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:32) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:99) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:57) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfileUncached(YggdrasilMinecraftSessionService.java:201) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfile(YggdrasilMinecraftSessionService.java:171) ~[authlib-6.0.54.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fetchProfile(PaperMinecraftSessionService.java:35) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.nms.v1_21_R1.util.NMSImpl.fillProfileProperties(NMSImpl.java:538) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.fillProfileProperties(NMS.java:176) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread$1.onProfileLookupSucceeded(ProfileFetchThread.java:168) ~[Citizens (8).jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository$PreProfileLookupCallback.onProfileLookupSucceeded(PaperGameProfileRepository.java:52) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:69) ~[purpur-1.21.1.jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:193) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:212) ~[Citizens (8).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:397) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:393) ~[gson-2.10.1.jar:?]
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:386) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
[05:21:51] [Craft Scheduler Thread - 51 - Citizens/WARN]: Couldn't look up profile properties for 9248d2a7-98c8-4cdb-b791-276ca5d7638c
com.mojang.authlib.exceptions.MinecraftClientException: Failed to read value <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot GET /mitm/proxy/session/minecraft/profile/9248d2a798c84cdbb791276ca5d7638c</pre>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8bd29cb2391c073f',t:'MTcyNTMzMzcxMS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>

    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:32) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:99) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:57) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfileUncached(YggdrasilMinecraftSessionService.java:201) ~[authlib-6.0.54.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfile(YggdrasilMinecraftSessionService.java:171) ~[authlib-6.0.54.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fetchProfile(PaperMinecraftSessionService.java:35) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.nms.v1_21_R1.util.NMSImpl.fillProfileProperties(NMSImpl.java:538) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.fillProfileProperties(NMS.java:176) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread$1.onProfileLookupSucceeded(ProfileFetchThread.java:168) ~[Citizens (8).jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository$PreProfileLookupCallback.onProfileLookupSucceeded(PaperGameProfileRepository.java:52) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:69) ~[purpur-1.21.1.jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at Citizens (8).jar/net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:193) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134) ~[Citizens (8).jar:?]
    at Citizens (8).jar/net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:212) ~[Citizens (8).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2287-07979c3]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:397) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more
Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $
    at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:393) ~[gson-2.10.1.jar:?]
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:386) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1227) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1137) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:982) ~[gson-2.10.1.jar:?]
    at com.mojang.authlib.minecraft.client.ObjectMapper.readValue(ObjectMapper.java:30) ~[authlib-6.0.54.jar:?]
    ... 20 more