Paste #121980: Unnamed Server Log Paste

Date: 2024/04/14 07:48:48 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[14:38:17] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[14:38:20] [ServerMain/INFO]: Loaded 7 recipes
[14:38:21] [Server thread/INFO]: Starting minecraft server version 1.20.1
[14:38:21] [Server thread/INFO]: Loading properties
[14:38:21] [Server thread/INFO]: This server is running Paper version git-Paper-196 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 773dd72)
[14:38:22] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:38:22] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:38:22] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[14:38:22] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[14:38:22] [Server thread/WARN]: Unable to read file whitelist.json, backing it up to {0}.backup and creating new copy.
com.google.gson.JsonSyntaxException: Expected entry to be a JsonObject, was "Sammxg"
    at net.minecraft.util.GsonHelper.convertToJsonObject(GsonHelper.java:341) ~[?:?]
    at net.minecraft.server.players.StoredUserList.load(StoredUserList.java:192) ~[?:?]
    at net.minecraft.server.dedicated.DedicatedPlayerList.loadWhiteList(DedicatedPlayerList.java:118) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.dedicated.DedicatedPlayerList.loadAndSaveFiles(DedicatedPlayerList.java:31) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:215) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-196]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:38:22] [Server thread/INFO]: Default game type: SURVIVAL
[14:38:22] [Server thread/INFO]: Generating keypair
[14:38:22] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:19123
[14:38:22] [Server thread/INFO]: Using epoll channel type
[14:38:22] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[14:38:22] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[14:38:23] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[14:38:23] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[14:38:27] [Server thread/WARN]: Legacy plugin StaffTools v3.3.2 does not specify an api-version.
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 10 libraries... please wait
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/dev/jorel/commandapi-bukkit-shade/9.3.0/commandapi-bukkit-shade-9.3.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.15.0/adventure-text-minimessage-4.15.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-api/4.15.0/adventure-api-4.15.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-key/4.15.0/adventure-key-4.15.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.15.0/adventure-text-serializer-plain-4.15.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-ansi/4.15.0/adventure-text-serializer-ansi-4.15.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/ansi/1.0.3/ansi-1.0.3.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loading 13 libraries... please wait
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/rhino/js/1.7R2/js-1.7R2.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
[14:38:27] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar
[14:38:27] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.9.2
[14:38:29] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@841dbe]
[14:38:29] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[14:38:29] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[14:38:29] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[14:38:29] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.3
[14:38:29] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.3 is now loaded. Registering protocol transformers and injecting...
[14:38:29] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:38:29] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[14:38:29] [Server thread/ERROR]: [ViaVersion] Error initializing plugin 'ViaVersion-4.9.3.jar' in folder 'plugins' (Is it up to date?)
java.lang.NoSuchMethodError: 'void com.viaversion.viaversion.util.Config.reloadConfig()'
    at com.viaversion.viabackwards.ViaBackwardsConfig.reloadConfig(ViaBackwardsConfig.java:42) ~[ViaBackwards.jar:?]
    at com.viaversion.viabackwards.api.ViaBackwardsPlatform.init(ViaBackwardsPlatform.java:76) ~[ViaBackwards.jar:?]
    at com.viaversion.viabackwards.BukkitPlugin.lambda$new$0(BukkitPlugin.java:33) ~[ViaBackwards.jar:?]
    at com.viaversion.viaversion.ViaManagerImpl.init(ViaManagerImpl.java:111) ~[ViaVersion-4.9.3.jar:?]
    at com.viaversion.viaversion.ViaVersionPlugin.onLoad(ViaVersionPlugin.java:91) ~[ViaVersion-4.9.3.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:40) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.loadPlugins(CraftServer.java:510) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-196]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:38:29] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.6.0-SNAPSHOT-4e565937
[14:38:29] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[14:38:30] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[14:38:30] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[14:38:30] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.2.8-SNAPSHOT (build 1795-REL)
[14:38:30] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.1
[14:38:30] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-1.6.1.jar'
[14:38:30] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_20_R1
[14:38:30] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[14:38:30] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.8.1
[14:38:30] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[14:38:30] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.9
[14:38:30] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0
[14:38:31] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.4
[14:38:31] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.9.4.jar'
[14:38:31] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[14:38:31] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v3.0.6
[14:38:31] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.14
[14:38:31] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.4
[14:38:31] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[14:38:31] [Server thread/INFO]: [Hat] Loading server plugin Hat v1.5.0
[14:38:31] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.5.5
[14:38:32] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.0.0
[14:38:32] [Server thread/INFO]: [StaffTools] Loading server plugin StaffTools v3.3.2
[14:38:32] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[14:38:32] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.9.28
[14:38:32] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.27
[14:38:32] [Server thread/INFO]: [AdvancedPets] Loading server plugin AdvancedPets v2.8.9
[14:38:32] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.11.1-RELEASE
[14:38:32] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.0.6
[14:38:32] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.0.8
[14:38:32] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.169.0
[14:38:32] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.3
[14:38:32] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.5.10
[14:38:32] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[14:38:32] [Server thread/INFO]: [Iris] Loading server plugin Iris v3.2.2-1.19.2-1.20.4
[14:38:32] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:38:32] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.9.2
[14:38:32] [Server thread/ERROR]: [FastAsyncWorldEdit] [STDERR] SLF4J: No SLF4J providers were found.
[14:38:32] [Server thread/WARN]: Nag author(s): '[Empire92, MattBDev, IronApollo, dordsor21, NotMyFault]' of 'FastAsyncWorldEdit v2.9.2' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:38:32] [Server thread/ERROR]: [FastAsyncWorldEdit] [STDERR] SLF4J: Defaulting to no-operation (NOP) logger implementation
[14:38:32] [Server thread/ERROR]: [FastAsyncWorldEdit] [STDERR] SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details.
[14:38:33] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[14:38:33] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[14:38:33] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[14:38:33] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[14:38:33] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[14:38:34] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[14:38:35] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] You are using a snapshot or a custom version of FAWE. This is not an official build distributed via https://www.spigotmc.org/resources/13932/
[14:38:35] [Server thread/INFO]:         __    
[14:38:35] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[14:38:35] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[14:38:35] [Server thread/INFO]: 
[14:38:35] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:38:36] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[14:38:36] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:38:37] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:38:37] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2643ms)
[14:38:37] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[14:38:38] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v3.0.6
[14:38:38] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.27
[14:38:38] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.8
[14:38:39] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.20.1.
[14:38:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.0.8]
[14:38:39] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[14:38:39] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[14:38:39] [Server thread/INFO]: [Iris] Enabling Iris v3.2.2-1.19.2-1.20.4
[14:38:39] [Server thread/INFO]: [Iris] [STDOUT] [Spigotunlocked.com] - COSMO
[14:38:39] [Server thread/WARN]: Nag author(s): '[cyberpwn, NextdoorPsycho, Vatuu]' of 'Iris v3.2.2-1.19.2-1.20.4' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:38:39] [Server thread/INFO]: [Iris] [STDOUT] [Spigotunlocked.com] - COSMO
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.0.9
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: d7578c9
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[14:38:40] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[14:38:40] [Server thread/INFO]: [Iris]: Locating NMS Binding for v1_20_R1
[14:38:40] [Server thread/INFO]: [Iris]: Craftbukkit v1_20_R1 <-> NMSBinding Successfully Bound
[14:38:40] [Server thread/INFO]: [Iris]: Enabled Iris SafeGuard
[14:38:40] [Server thread/INFO]: [Iris]: Checking for possible conflicts..
[14:38:40] [Server thread/INFO]: [Iris]: Unstable mode has been activated.
[14:38:40] [Server thread/INFO]: [Iris]: Loading ExternalDataProvider...
[14:38:40] [Server thread/INFO]: [Iris]: Oraxen found, loading OraxenDataProvider...
[14:38:40] [Server thread/INFO]: [Iris]: MMOItems found, loading MMOItemsDataProvider...
[14:38:41] [Server thread/INFO]: [Iris]: Version Information: git-Paper-196 (MC: 1.20.1) | 1.20.1-R0.1-SNAPSHOT
[14:38:41] [Server thread/INFO]: [Iris]: We recommend using Purpur for the best experience with Iris.
[14:38:41] [Server thread/INFO]: [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
[14:38:41] [Server thread/INFO]: [Iris]: Plugins that work on Spigot / Paper work on Purpur.
[14:38:41] [Server thread/INFO]: [Iris]: You can download it here: https://purpurmc.org
[14:38:41] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:38:41] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:38:41] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[14:38:41] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:38:41] [Server thread/INFO]: Preparing level "world"
[14:38:43] [Server thread/INFO]: [Iris]: Mantle Size: 23 Chunks
[14:38:43] [Server thread/INFO]: [Iris]:   Object Mantle Size: 113 (8)
[14:38:43] [Server thread/INFO]: [Iris]:   Jigsaw Mantle Size: 156 (10)
[14:38:43] [Server thread/INFO]: [Iris]:   Carving Mantle Size: 360 (23)
[14:38:43] [Server thread/INFO]: [Iris]: Loaded Prefetch Cache to reduce generation disk use.
[14:38:43] [Server thread/INFO]: [Iris]: Initializing Engine: world/overworld (IrisRange(min=-64.0, max=1024.0) height) Seed: 6161433983033176329
[14:38:43] [Server thread/INFO]: [Iris]: Injected Iris Biome Source into world
[14:38:43] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[14:38:44] [Server thread/INFO]: Time elapsed: 387 ms
[14:38:44] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[14:38:44] [Server thread/INFO]: Time elapsed: 107 ms
[14:38:44] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[14:38:44] [Server thread/INFO]: Time elapsed: 96 ms
[14:38:44] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[14:38:45] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[14:38:45] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[14:38:45] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[14:38:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[14:38:45] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:38:46] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[14:38:47] [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--].
[14:38:47] [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.
[14:38:47] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[14:38:47] [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.
[14:38:47] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[14:38:47] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[14:38:48] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:38:48] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.3
[14:38:49] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20/1.20.1 (763)
[14:38:49] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.6.0-SNAPSHOT-4e565937
[14:38:50] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.1)...
[14:38:50] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[14:38:52] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[14:38:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[14:38:53] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[14:38:53] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[14:38:53] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[14:38:53] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/data
[14:38:53] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/data/worlds
[14:38:54] [Server thread/INFO]: [MythicMobs] Loading Packs...
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading Items...
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading Skills...
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/container/plugins/MythicMobs/stats.yml
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[14:38:55] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[14:38:55] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[14:38:55] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[14:38:55] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.6.0 ( build 4e565937 ) has been successfully loaded!
[14:38:55] [Server thread/INFO]: *** Downloaded from https://leaks.tf ***
[14:38:55] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.8-SNAPSHOT (build 1795-REL)
[14:38:56] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1355), impl for Spigot v1.2.8-SNAPSHOT (build 1795-REL) 
[14:38:56] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.10 
[14:38:56] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[14:38:56] [Server thread/WARN]: [Denizen] Citizens does not seem to be available! Denizen will have reduced functionality!
[14:38:56] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[14:38:56] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[14:38:56] [Server thread/INFO]: +> [Denizen]  
[14:38:56] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[14:38:56] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[14:38:56] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[14:38:56] [Server thread/INFO]: +> [Denizen] version: 1.2.8-SNAPSHOT (build 1795-REL) 
[14:38:56] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[14:38:57] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[14:38:57] [Server thread/INFO]: +> [Denizen] Loaded 147 core commands and 28 core object types, at 1473ms from start. 
[14:38:57] [Server thread/INFO]:  ERROR!
                 Error Message: Error parsing '/GH.dsc'! 
[14:38:57] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] while parsing a block mapping
 in 'string', line 42, column 9:
            on player death:
            ^
expected <block end>, but found '<block mapping start>'
 in 'string', line 49, column 10:
             on arise command:
             ^

[Error Continued]   org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:656)
[Error Continued]   org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:162)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:284)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:207)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157)
[Error Continued]   org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:178)
[Error Continued]   org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[Error Continued]   org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.utilities.YamlConfiguration.load(YamlConfiguration.java:65)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.utilities.YamlConfiguration.load(YamlConfiguration.java:61)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.loadConfig(ScriptHelper.java:173)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.buildScriptList(ScriptHelper.java:202)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.reloadScripts(ScriptHelper.java:63)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.DenizenCore.preloadScripts(DenizenCore.java:182)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizen.Denizen.onEnable(Denizen.java:367)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:642)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:553)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1100)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:840)

[14:38:57] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[14:38:57] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 11ms, processing 13ms. 
[14:38:57] [Server thread/INFO]: +> [Denizen] Final full init took 1542ms. 
[14:38:57] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.1
[14:38:58] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[14:38:58] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[14:38:58] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[14:38:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.6.1]
[14:38:58] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[14:38:58] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.8.1
[14:38:58] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[14:38:59] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[14:38:59] [Server thread/INFO]: [Essentials] No kits found to migrate.
[14:38:59] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[14:38:59] [Server thread/INFO]: [Essentials] Using locale en_US
[14:38:59] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[14:38:59] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[14:38:59] [Server thread/WARN]: [Essentials] Detected supported permissions plugin LuckPerms without Vault installed.
[14:38:59] [Server thread/WARN]: [Essentials] Features such as chat prefixes/suffixes and group-related functionality will not work until you install Vault.
[14:38:59] [Server thread/INFO]: [Essentials] Using superperms-based permissions.
[14:38:59] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.9
[14:38:59] [Server thread/INFO]: [ModelEngine] [STDOUT] [Spigotunlocked.com] - COSMO
[14:38:59] [Server thread/WARN]: Nag author(s): '[Ticxo]' of 'ModelEngine vR3.1.9' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:38:59] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[14:38:59] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[14:38:59] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[14:38:59] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.4
[14:39:00] [Server thread/INFO]: [MMOItems] [STDOUT] [Spigotunlocked.com] - COSMO
[14:39:00] [Server thread/WARN]: Nag author(s): '[Indyuce]' of 'MMOItems v6.9.4' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:39:00] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[14:39:00] [Server thread/INFO]: [MMOItems THRUSTING_SWORD SKILLED_SWORD] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[14:39:00] [Server thread/INFO]: [MMOItems SWORD YANISDARK_SWORD] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[14:39:00] [Server thread/INFO]: [MMOItems OFF_CATALYST QUICKCASTER_CATALYST] Could not load base item data 'mana-regeneration': Could not find stat with ID 'MANA_REGENERATION'
[14:39:00] [Server thread/INFO]: [MMOItems OFF_CATALYST CHARM_OF_LEVITATION] Could not load base item data 'max-stellium': Could not find stat with ID 'MAX_STELLIUM'
[14:39:00] [Server thread/INFO]: [MMOItems KATANA MASTER_KATANA] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[14:39:00] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[14:39:00] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience-enchanting': Could not find stat with ID 'ADDITIONAL_EXPERIENCE_ENCHANTING'
[14:39:00] [Server thread/INFO]: [MMOItems HAMMER THOR_HAMMER] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[14:39:00] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[14:39:00] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[14:39:00] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[14:39:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.9.4]
[14:39:00] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[14:39:00] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[14:39:01] [Server thread/INFO]: [Iris]: Setting up MMOItems Link...
[14:39:01] [Server thread/INFO]: [Iris]: Enabled ExternalDataProvider for MMOItems.
[14:39:01] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.14
[14:39:01] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[14:39:01] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[14:39:02] [Server thread/INFO]: [PlayerVaults] Loaded! Took 246ms
[14:39:02] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[14:39:02] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[14:39:02] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[14:39:02] [Server thread/INFO]: [Hat] Enabling Hat v1.5.0
[14:39:03] [Server thread/INFO]: [Hat] Validating messages.yml
[14:39:03] [Server thread/INFO]: [Hat] messages.yml has been validated.
[14:39:06] [Server thread/INFO]: [Hat] Hat has been enabled.
[14:39:06] [Server thread/INFO]: [GSit] Enabling GSit v1.5.5
[14:39:06] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[14:39:06] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[14:39:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.5.5]
[14:39:06] [Server thread/INFO]: [GSit] Link with ViaVersion successful!
[14:39:06] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[14:39:06] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.0.0
[14:39:07] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.9+5934e49
[14:39:07] [Server thread/INFO]: [ChestSort] Use permissions: true
[14:39:07] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[14:39:07] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[14:39:07] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[14:39:07] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[14:39:07] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[14:39:07] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[14:39:07] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[14:39:07] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[14:39:07] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[14:39:07] [Server thread/INFO]: [ChestSort] Check for updates: true
[14:39:07] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[14:39:07] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[14:39:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.0.0]
[14:39:07] [Server thread/INFO]: [StaffTools] Enabling StaffTools v3.3.2*
[14:39:07] [Server thread/INFO]: ST >> You are currently running StaffTools on an unsupported version (1.20.1).
[14:39:07] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[14:39:08] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.9.28
[14:39:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedcrates [3.9.28]
[14:39:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[14:39:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[14:39:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AdvancedCrates' to create a bStats instance!
[14:39:08] [Server thread/WARN]: java.lang.NoSuchMethodException: no such method: net.minecraft.server.network.PlayerConnection.b(Packet)void/invokeVirtual
[14:39:08] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName.makeAccessException(MemberName.java:976)
[14:39:08] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolveOrFail(MemberName.java:1117)
[14:39:08] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandles$Lookup.resolveOrFail(MethodHandles.java:3649)
[14:39:08] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandles$Lookup.findVirtual(MethodHandles.java:2680)
[14:39:08] [Server thread/WARN]:     at AdvancedCrates-3.9.29.jar//com.cryptomorin.xseries.advancedcrates.ReflectionUtils.<clinit>(ReflectionUtils.java:240)
[14:39:08] [Server thread/WARN]:     at AdvancedCrates-3.9.29.jar//com.cryptomorin.xseries.advancedcrates.SkullUtils.<clinit>(SkullUtils.java:74)
[14:39:08] [Server thread/WARN]:     at AdvancedCrates-3.9.29.jar//me.PM2.AdvancedCrates.rewards.SaveableItemBuilder.loadItem(SaveableItemBuilder.java:497)
[14:39:08] [Server thread/WARN]:     at AdvancedCrates-3.9.29.jar//me.PM2.AdvancedCrates.rewards.SaveableItemBuilder.loadItem(SaveableItemBuilder.java:215)
[14:39:08] [Server thread/WARN]:     at AdvancedCrates-3.9.29.jar//me.PM2.AdvancedCrates.rewards.Reward.<init>(Reward.java:44)
[14:39:08] [Server thread/WARN]:     at AdvancedCrates-3.9.29.jar//me.PM2.AdvancedCrates.cratesHandler.Crate.<init>(Crate.java:257)
[14:39:08] [Server thread/WARN]:     at AdvancedCrates-3.9.29.jar//me.PM2.AdvancedCrates.MonthlyCrate.registerCrateInfo(MonthlyCrate.java:1031)
[14:39:08] [Server thread/WARN]:     at AdvancedCrates-3.9.29.jar//me.PM2.AdvancedCrates.MonthlyCrate.onEnable(MonthlyCrate.java:197)
[14:39:08] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[14:39:08] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[14:39:08] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:39:08] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:39:08] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:642)
[14:39:08] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:553)
[14:39:08] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[14:39:08] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[14:39:08] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[14:39:08] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1100)
[14:39:08] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317)
[14:39:08] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:840)
[14:39:08] [Server thread/WARN]: Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.server.network.PlayerConnection.b(net.minecraft.network.protocol.Packet)'
[14:39:08] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandleNatives.resolve(Native Method)
[14:39:08] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolve(MemberName.java:1085)
[14:39:08] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolveOrFail(MemberName.java:1114)
[14:39:08] [Server thread/WARN]:     ... 22 more
[14:39:10] [Server thread/INFO]: [AdvancedPets] Enabling AdvancedPets v2.8.9
[14:39:12] [Server thread/INFO]: [AdvancedPets] Loaded 36,570 custom heads
[14:39:12] [Server thread/INFO]: [AdvancedPets] Loaded 18 mob configurations.
[14:39:12] [Server thread/INFO]: [AdvancedPets] Loaded 6 pet abilities.
[14:39:12] [Server thread/INFO]: [AdvancedPets] Loaded 6 Skin Packs.
[14:39:12] [Server thread/ERROR]: Could not pass event ServiceRegisterEvent to AdvancedPets v2.8.9
java.lang.NoClassDefFoundError: net/milkbowl/vault/economy/Economy
    at net.advancedplugins.pets.utils.econ.VaultEcon$1.onServiceRegister(VaultEcon.java:23) ~[AdvancedPets-2.8.9.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:git-Paper-196]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimpleServicesManager.register(SimpleServicesManager.java:59) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at net.advancedplugins.pets.impl.utils.RunnableMetrics.<init>(RunnableMetrics.java:158) ~[AdvancedPets-2.8.9.jar:?]
    at net.advancedplugins.pets.Core.onEnable(Core.java:179) ~[AdvancedPets-2.8.9.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:642) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:553) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-196]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.milkbowl.vault.economy.Economy
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 22 more
[14:39:12] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.11.1-RELEASE
[14:39:13] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Loading the config.yml
[14:39:13] [Server thread/WARN]: Nag author(s): '[BadBones69, Felux]' of 'BlockParticles v1.11.1-RELEASE' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:39:13] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Successfully loaded config.yml
[14:39:13] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Loading the data.yml
[14:39:13] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Successfully loaded data.yml
[14:39:13] [Server thread/ERROR]: Could not pass event ServiceRegisterEvent to AdvancedPets v2.8.9
java.lang.NoClassDefFoundError: net/milkbowl/vault/economy/Economy
    at net.advancedplugins.pets.utils.econ.VaultEcon$1.onServiceRegister(VaultEcon.java:23) ~[AdvancedPets-2.8.9.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:git-Paper-196]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimpleServicesManager.register(SimpleServicesManager.java:59) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at me.badbones69.blockparticles.controllers.Metrics.<init>(Metrics.java:128) ~[BlockParticles.v1.11.1.jar:?]
    at me.badbones69.blockparticles.BlockParticles.onEnable(BlockParticles.java:46) ~[BlockParticles.v1.11.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:642) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:553) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-196]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.milkbowl.vault.economy.Economy
    ... 22 more
[14:39:13] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.0.6
[14:39:13] [Server thread/INFO]: [AuraSkills] Loaded 18 message files
[14:39:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[14:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.0.6]
[14:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.0.6]
[14:39:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[14:39:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[14:39:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[14:39:14] [Server thread/INFO]: [AuraSkills] Loaded 101 config options in 32 ms
[14:39:14] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked worlds.
[14:39:14] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[14:39:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[14:39:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[14:39:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[14:39:14] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.169.0
[14:39:15] [Server thread/INFO]: Oraxen | Version v1_20_R1 has been detected.
[14:39:15] [Server thread/INFO]: Oraxen | Oraxen will use the NMSHandler for this version.
[14:39:15] [Server thread/INFO]: Oraxen | Papers block-updates.disable-noteblock-updates is not enabled.
[14:39:15] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with noteblocks
[14:39:15] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[14:39:15] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml

[14:39:15] [Server thread/INFO]: Oraxen | Papers block-updates.disable-tripwire-updates is not enabled.
[14:39:15] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with tripwires
[14:39:15] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[14:39:15] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml

[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Item does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Item does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:39:16] [Server thread/INFO]: Oraxen | Item does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:39:16] [Server thread/INFO]: Oraxen | Item does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:39:16] [Server thread/INFO]: Oraxen | Item does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:39:16] [Server thread/INFO]: Oraxen | Item does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:39:16] [Server thread/INFO]: Oraxen | Template does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:39:16] [Server thread/INFO]: Oraxen | Item does not exist
[14:39:16] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[14:39:16] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[14:39:16] [Server thread/INFO]: Oraxen | No item matching ruby_leggings found. Unable to use ruby_armor_layer_2.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching ruby_boots found. Unable to use ruby_armor_layer_2.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching ruby_helmet found. Unable to use ruby_armor_layer_1.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching ruby_chestplate found. Unable to use ruby_armor_layer_1.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching emerald_helmet found. Unable to use emerald_armor_layer_1.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching emerald_chestplate found. Unable to use emerald_armor_layer_1.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching obsidian_leggings found. Unable to use obsidian_armor_layer_2.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching obsidian_boots found. Unable to use obsidian_armor_layer_2.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching obsidian_helmet found. Unable to use obsidian_armor_layer_1.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching obsidian_chestplate found. Unable to use obsidian_armor_layer_1.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching emerald_leggings found. Unable to use emerald_armor_layer_2.png
[14:39:16] [Server thread/INFO]: Oraxen | No item matching emerald_boots found. Unable to use emerald_armor_layer_2.png
[14:39:16] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[14:39:16] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[14:39:17] [Server thread/INFO]: Oraxen | No broken models or textures were found in the resourcepack

[14:39:17] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[14:39:17] [Server thread/INFO]: 
[14:39:17] [Server thread/INFO]: Oraxen | No duplicate font files found!
[14:39:17] [Server thread/INFO]: 
[14:39:17] [Server thread/INFO]: Oraxen | Successfully loaded on Ubuntu 22.04.4 LTS (jammy)
[14:39:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oraxen [1.169.0]
[14:39:17] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detected, enabling hooks
[14:39:17] [Server thread/INFO]: Oraxen | Plugin "MythicMobs" detected, enabling hooks
[14:39:17] [Server thread/INFO]: Oraxen | Thanks for using Black-Minecraft.com
[14:39:17] [Server thread/INFO]: [Iris]: Setting up Oraxen Link...
[14:39:17] [Server thread/INFO]: [Iris]: Enabled ExternalDataProvider for Oraxen.
[14:39:17] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[14:39:17] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[14:39:17] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[14:39:17] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[14:39:17] [Server thread/INFO]: [voicechat] Enabling voicechat v2.5.10
[14:39:18] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.20.1-R0.1
[14:39:18] [Server thread/INFO]: [voicechat] Compatibility version 18
[14:39:18] [Server thread/ERROR]: Could not pass event ServiceRegisterEvent to AdvancedPets v2.8.9
java.lang.NoClassDefFoundError: net/milkbowl/vault/economy/Economy
    at net.advancedplugins.pets.utils.econ.VaultEcon$1.onServiceRegister(VaultEcon.java:23) ~[AdvancedPets-2.8.9.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:git-Paper-196]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimpleServicesManager.register(SimpleServicesManager.java:59) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at de.maxhenkel.voicechat.Voicechat.onEnable(Voicechat.java:81) ~[voicechat-bukkit-2.5.10.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:642) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:553) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-196]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.milkbowl.vault.economy.Economy
    ... 21 more
[14:39:18] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[14:39:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voicechat [2.5.10]
[14:39:18] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
[14:39:18] [Server thread/INFO]: [voicechat] Successfully added ViaVersion mappings
[14:39:18] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[14:39:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[14:39:19] [Server thread/INFO]: [TAB] Enabled in 232ms
[14:39:20] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:39:20] [Server thread/INFO]: Running delayed init tasks
[14:39:20] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[14:39:20] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[14:39:20] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[14:39:20] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
[14:39:20] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:39:20] [Server thread/INFO]: [Iris]: Server type & version: git-Paper-196 (MC: 1.20.1)
[14:39:20] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[14:39:20] [Server thread/INFO]: [Iris]: Java: OpenJDK 64-Bit Server VM Eclipse Adoptium (build 17.0.10+7)
[14:39:20] [Server thread/INFO]: [Iris]: Purpur is recommended to use with iris.
[14:39:20] [Server thread/INFO]: [Iris]: Server OS: Linux (amd64)
[14:39:20] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:39:20] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[14:39:20] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:39:20] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[14:39:20] [Server thread/INFO]: [Iris]: Server Cpu: AMD EPYC 7513 32-Core Processor
[14:39:20] [Server thread/INFO]: [Iris]: Process Threads: 4
[14:39:20] [Server thread/INFO]: [Iris]: Process Memory: 32768 MB
[14:39:20] [Server thread/INFO]: [Iris]: Free DiskSpace: 64 GB
[14:39:20] [Server thread/INFO]: [Iris]: Bukkit version: 1.20.1-R0.1-SNAPSHOT
[14:39:20] [Server thread/INFO]: [Iris]: Custom Biomes: 96
[14:39:20] [Server thread/INFO]: [Iris]: Version Information: git-Paper-196 (MC: 1.20.1) | 1.20.1-R0.1-SNAPSHOT
[14:39:20] [Server thread/INFO]: [Iris]: We recommend using Purpur for the best experience with Iris.
[14:39:20] [Server thread/INFO]: [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
[14:39:20] [Server thread/INFO]: [Iris]: Plugins that work on Spigot / Paper work on Purpur.
[14:39:20] [Server thread/INFO]: [Iris]: You can download it here: https://purpurmc.org
[14:39:20] [Server thread/INFO]: [Iris]: Custom Dimensions: 1
[14:39:20] [Server thread/INFO]: [Iris]:   overworld v3900
[14:39:20] [Server thread/INFO]: [Iris]: 

            @@@@@@@@@@@@@@@@@
         @@&&&&&&&&&&&&&&&   .(((()))).                     
        @@@&&&&&&&&&&&&&  .((((((())))))).                  
        @@@&&&&&&&&&&&&  ((((((((()))))))))                @
        @@@&&&&@@@@@&    ((((((((-)))))))))               @@
        @@@&&            ((((((({ }))))))))            &&@@@     Iris
        @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
        @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v3.2.2-1.19.2-1.20.4
                          '((((((()))))))'  &&&&&&&&&&&&&@@@
                             '(((())))'   &&&&&&&&&&&&&&&@@
                                       @@@@@@@@@@@@@@@@@

[14:39:20] [Server thread/INFO]: [Iris]: Iris is running in Unstable Mode
[14:39:20] [Server thread/INFO]: [Iris]: 1 Conflicts found
[14:39:20] [Server thread/INFO]: [Iris]: Multiverse
[14:39:20] [Server thread/INFO]: [Iris]: - The plugin Multiverse is not compatible with the server.
[14:39:20] [Server thread/INFO]: [Iris]: - If you want to have a world manager, consider using PhantomWorlds or MyWorlds instead.
[14:39:20] [Server thread/INFO]: [Iris]: 
[14:39:20] [Server thread/INFO]: [Iris]: --==< IMPORTANT >==--
[14:39:20] [Server thread/INFO]: [Iris]: Iris is running in unstable mode which may cause the following issues:
[14:39:20] [Server thread/INFO]: [Iris]: Server Issues
[14:39:20] [Server thread/INFO]: [Iris]: - Server won't boot
[14:39:20] [Server thread/INFO]: [Iris]: - Data Loss
[14:39:20] [Server thread/INFO]: [Iris]: - Unexpected behavior.
[14:39:20] [Server thread/INFO]: [Iris]: - And More...
[14:39:20] [Server thread/INFO]: [Iris]: World Issues
[14:39:20] [Server thread/INFO]: [Iris]: - Worlds can't load due to corruption.
[14:39:20] [Server thread/INFO]: [Iris]: - Worlds may slowly corrupt until they can't load.
[14:39:20] [Server thread/INFO]: [Iris]: - World data loss.
[14:39:20] [Server thread/INFO]: [Iris]: - And More...
[14:39:20] [Server thread/INFO]: [Iris]: ATTENTION: While running Iris in unstable mode, you won't be eligible for support.
[14:39:20] [Server thread/INFO]: [Iris]: CAUSE: Multiverse-Core
[14:39:20] [Server thread/INFO]: [Iris]: Boot Unstable is set to true, continuing with the startup process.
[14:39:20] [Server thread/INFO]: [Iris]: 
[14:39:20] [Server thread/INFO]: [Iris]: 2 World: world | Generator: overworld
[14:39:21] [Craft Scheduler Thread - 9 - PlayerVaults/WARN]: [PlayerVaults] Update available: 4.2.15
[14:39:21] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 306 total sources
[14:39:21] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[14:39:21] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[14:39:21] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[14:39:21] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[14:39:22] [Server thread/INFO]: Loaded 7 recipes
[14:39:23] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_text.vsh - Attempting to migrate it
[14:39:23] [Server thread/INFO]: Oraxen | You are importing another copy of a shader file used to hide scoreboard numbers
[14:39:23] [Server thread/INFO]: Oraxen | Either disable Misc.hide_scoreboard_numbers in settings.yml or delete this file
[14:39:23] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_text.json - Attempting to migrate it
[14:39:23] [Server thread/INFO]: Oraxen | You are importing another copy of a shader file used to hide scoreboard numbers
[14:39:23] [Server thread/INFO]: Oraxen | Either disable Misc.hide_scoreboard_numbers in settings.yml or delete this file
[14:39:23] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh - Attempting to migrate it
[14:39:23] [Server thread/INFO]: Oraxen | You are trying to import a shader file used for custom armor.
[14:39:23] [Server thread/INFO]: Oraxen | This shader file is already in your pack. Deleting...
[14:39:23] [Server thread/INFO]: Oraxen | Duplicate file fixed: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh
[14:39:23] [Server thread/INFO]: Oraxen | It is advised to restart your server to ensure that any new conflicts are detected.

[14:39:23] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh - Attempting to migrate it
[14:39:23] [Server thread/INFO]: Oraxen | You are trying to import a shader file used for custom armor.
[14:39:23] [Server thread/INFO]: Oraxen | This shader file is already in your pack. Deleting...
[14:39:23] [Server thread/INFO]: Oraxen | Duplicate file fixed: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh
[14:39:23] [Server thread/INFO]: Oraxen | It is advised to restart your server to ensure that any new conflicts are detected.

[14:39:23] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/LICENSE.md - Attempting to migrate it
[14:39:23] [Server thread/INFO]: Oraxen | Failed to migrate duplicate file-entry, file is not a file that Oraxen can migrate right now
[14:39:23] [Server thread/INFO]: Oraxen | Please refer to https://docs.oraxen.com/ on how to solve this, or ask in the support Discord
[14:39:23] [Server thread/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[14:39:23] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[14:39:23] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[14:39:23] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/04/14 14:38:56 
[14:39:23] [Server thread/ERROR]: Could not pass event ServiceRegisterEvent to AdvancedPets v2.8.9
java.lang.NoClassDefFoundError: net/milkbowl/vault/economy/Economy
    at net.advancedplugins.pets.utils.econ.VaultEcon$1.onServiceRegister(VaultEcon.java:23) ~[AdvancedPets-2.8.9.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:git-Paper-196]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimpleServicesManager.register(SimpleServicesManager.java:59) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at dev.lone.LoneLibs.Metrics.lambda$new$0(Metrics.java:155) ~[LoneLibs.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1111) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-196]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.milkbowl.vault.economy.Economy
    ... 14 more
[14:39:23] [Server thread/ERROR]: Could not pass event ServiceRegisterEvent to AdvancedPets v2.8.9
java.lang.NoClassDefFoundError: net/milkbowl/vault/economy/Economy
    at net.advancedplugins.pets.utils.econ.VaultEcon$1.onServiceRegister(VaultEcon.java:23) ~[AdvancedPets-2.8.9.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:git-Paper-196]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimpleServicesManager.register(SimpleServicesManager.java:59) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at com.volmit.iris.util.plugin.Metrics.<init>(Metrics.java:158) ~[Iris-3.2.2-1.19.2-1.20.4.jar:?]
    at com.volmit.iris.Iris.lambda$bstats$11(Iris.java:667) ~[Iris-3.2.2-1.19.2-1.20.4.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1111) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-196]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.milkbowl.vault.economy.Economy
    ... 15 more
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iris [3.2.2-1.19.2-1.20.4]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.2]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: plugin [1.1.0]
[14:39:23] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[14:39:23] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion vault due to a missing plugin: Vault
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[14:39:23] [Server thread/WARN]: [PlaceholderAPI] There was an issue with loading an expansion.
[14:39:23] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 3 scripts loaded!
[14:39:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.0]
[14:39:23] [Server thread/INFO]: 13 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[14:39:23] [Server thread/INFO]: Done (62.654s)! For help, type "help"
[14:39:23] [Server thread/INFO]: Timings Reset
[14:39:23] [Server thread/INFO]: [voicechat] Loading plugins
[14:39:23] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[14:39:23] [Server thread/INFO]: [voicechat] Initializing plugins
[14:39:23] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[14:39:23] [Server thread/WARN]: [voicechat] Running in offline mode - Voice chat encryption is not secure!
[14:39:23] [VoiceChatServerThread/INFO]: [voicechat] Using server-ip as bind address: 0.0.0.0
[14:39:23] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at 0.0.0.0:24454
[14:39:24] [Server thread/INFO]: Created team [ACdontTouch]
[14:39:24] [Server thread/INFO]: Collision rule for team [ACdontTouch] is now "Never"
[14:39:24] [Server thread/INFO]: [AdvancedPets] Successfully hooked into ProtocolLib, WorldGuard, PlaceholderAPI, MythicMobs, Oraxen, Essentials, LuckPerms.
[14:39:25] [Craft Scheduler Thread - 12 - Iris/INFO]: [Iris]: Checking Data Packs...
[14:39:26] [Server thread/WARN]: [ModelEngine] [S] Unable to create ActiveModel instance: Invalid model ID bear
[14:39:26] [Server thread/WARN]: [AdvancedPets] Failed to load mob bear - this model belongs to Premium Mobs Pack. Download it here: https://mobs.advancedplugins.net/premium-mobs-pack
[14:39:26] [Server thread/WARN]: [ModelEngine] [S] Unable to create ActiveModel instance: Invalid model ID deer
[14:39:26] [Server thread/WARN]: [AdvancedPets] Failed to load mob deer - this model belongs to Premium Mobs Pack. Download it here: https://mobs.advancedplugins.net/premium-mobs-pack
[14:39:26] [Server thread/WARN]: [ModelEngine] [S] Unable to create ActiveModel instance: Invalid model ID mammoth
[14:39:26] [Server thread/WARN]: [AdvancedPets] Failed to load mob mammoth - this model belongs to Premium Mobs Pack. Download it here: https://mobs.advancedplugins.net/premium-mobs-pack
[14:39:26] [Craft Scheduler Thread - 12 - Iris/INFO]: [Iris]: Data Packs Setup!
[14:39:27] [Craft Scheduler Thread - 4 - Oraxen/INFO]: Oraxen | Resourcepack uploaded on url http://atlas.oraxen.com:8080/pack.zip?id=d4e31e9c8f99d42c8fbbc6992a4a9d7d3e6f3394 in 4044 ms
[14:39:32] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_0_ConnectorsWeather'... 
[14:39:32] [Server thread/INFO]: +- Queue 'EXCOMMAND_0_ConnectorsWeather' Executing: (line 1) reload ---------+ 
[14:39:32] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[14:39:32] [Server thread/INFO]: Completing queue 'EXCOMMAND_0_ConnectorsWeather' in 6ms. 
[14:39:32] [Server thread/INFO]:  ERROR!
                 Error Message: Error parsing '/GH.dsc'! 
[14:39:32] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] while parsing a block mapping
 in 'string', line 42, column 9:
            on player death:
            ^
expected <block end>, but found '<block mapping start>'
 in 'string', line 49, column 10:
             on arise command:
             ^

[Error Continued]   org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:656)
[Error Continued]   org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:162)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:284)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:207)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157)
[Error Continued]   org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:178)
[Error Continued]   org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[Error Continued]   org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.utilities.YamlConfiguration.load(YamlConfiguration.java:65)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.utilities.YamlConfiguration.load(YamlConfiguration.java:61)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.loadConfig(ScriptHelper.java:173)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.buildScriptList(ScriptHelper.java:202)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.lambda$reloadScripts$1(ScriptHelper.java:53)
[Error Continued]   java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[Error Continued]   java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:840)

[14:39:32] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[14:39:32] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 32ms, processing 1ms. 
[14:39:32] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[14:39:44] [User Authenticator #0/INFO]: UUID of player ridoanjay is eb66d66a-592b-3444-ab68-ca17e53f16a8
[14:39:44] [Server thread/INFO]: ridoanjay joined the game
[14:39:44] [Server thread/INFO]: ridoanjay[/110.137.195.64:32190] logged in with entity id 475 at ([world]-35.989854799024116, 160.0, -34.52872411635196)
[14:39:45] [Craft Scheduler Thread - 13 - PlaceholderAPI/INFO]: [LocalTime] Couldn't get ridoanjay's timezone. Will use default timezone.
[14:39:47] [Server thread/INFO]: [voicechat] Received secret request of ridoanjay (17)
[14:39:47] [Server thread/WARN]: [voicechat] Connected client ridoanjay has incompatible voice chat version (server=18, client=17)
[14:40:10] [User Authenticator #0/INFO]: UUID of player Sammxg is c1300a1d-a65d-30eb-9a38-eb9bb66af3d6
[14:40:10] [Server thread/INFO]: Sammxg joined the game
[14:40:10] [Server thread/INFO]: Sammxg[/124.158.185.70:60009] logged in with entity id 866 at ([world]102.5, 187.0, -366.5)
[14:40:10] [Server thread/INFO]: [voicechat] Received secret request of Sammxg (17)
[14:40:10] [Server thread/WARN]: [voicechat] Connected client Sammxg has incompatible voice chat version (server=18, client=17)
[14:40:10] [Craft Scheduler Thread - 22 - PlaceholderAPI/INFO]: [LocalTime] Couldn't get Sammxg's timezone. Will use default timezone.
[14:40:11] [Server thread/WARN]: Sammxg moved too quickly! 0.0,-11.14161161612887,0.0
[14:40:14] [Server thread/INFO]: Sammxg fell from a high place
[14:40:15] [Server thread/INFO]: ridoanjay issued server command: /tab reload
[14:40:15] [Server thread/INFO]: [TAB] Disabled in 4ms
[14:40:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[14:40:15] [Server thread/INFO]: [TAB] Enabled in 122ms
[14:40:28] [Server thread/INFO]: ridoanjay issued server command: /skin set above
[14:40:30] [Server thread/INFO]: Sammxg fell from a high place
[14:40:41] [Server thread/INFO]: Sammxg fell from a high place
[14:40:50] [Server thread/INFO]: Made Sammxg a server operator
[14:40:55] [Server thread/INFO]: Sammxg issued server command: /gamemode creative
[14:41:04] [Server thread/INFO]: Sammxg issued server command: /ex reload
[14:41:04] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_1_Fortifier42Pty' with player 'Sammxg'... 
[14:41:04] [Server thread/INFO]: +- Queue 'EXCOMMAND_1_Fortifier42Pty' Executing: (line 1) reload ---------+ 
[14:41:04] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[14:41:04] [Server thread/INFO]: Completing queue 'EXCOMMAND_1_Fortifier42Pty' in 20ms. 
[14:41:04] [Server thread/INFO]:  ERROR!
                 Error Message: Error parsing '/GH.dsc'! 
[14:41:04] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] while parsing a block mapping
 in 'string', line 42, column 9:
            on player death:
            ^
expected <block end>, but found '<block mapping start>'
 in 'string', line 49, column 10:
             on arise command:
             ^

[Error Continued]   org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:656)
[Error Continued]   org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:162)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[Error Continued]   org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:284)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:207)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131)
[Error Continued]   org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157)
[Error Continued]   org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:178)
[Error Continued]   org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[Error Continued]   org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.utilities.YamlConfiguration.load(YamlConfiguration.java:65)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.utilities.YamlConfiguration.load(YamlConfiguration.java:61)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.loadConfig(ScriptHelper.java:173)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.buildScriptList(ScriptHelper.java:202)
[Error Continued]   Denizen-1.2.8-b1795-REL.jar//com.denizenscript.denizencore.scripts.ScriptHelper.lambda$reloadScripts$1(ScriptHelper.java:53)
[Error Continued]   java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[Error Continued]   java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:840)

[14:41:04] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[14:41:04] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 73ms, processing 3ms. 
[14:41:04] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[14:42:03] [Async Chat Thread - #1/INFO]: [Not Secure] <ridoanjay> p
[14:42:18] [Server thread/INFO]: ridoanjay issued server command: /o reload all
[14:42:18] [Server thread/INFO]: Oraxen | Papers block-updates.disable-noteblock-updates is not enabled.
[14:42:18] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with noteblocks
[14:42:18] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[14:42:18] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml

[14:42:18] [Server thread/INFO]: Oraxen | Papers block-updates.disable-tripwire-updates is not enabled.
[14:42:18] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with tripwires
[14:42:18] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[14:42:18] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml

[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "armor_effects" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "consumable_potion_effects" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "noteblock.remove_mineable_tag" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "furniture.default_furniture_type" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "bigmining.call_events" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "armorpotioneffects" has been marked for removal, removing it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "WorldEdit" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Glyphs" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Chat" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "CustomBlocks" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "FurnitureUpdater" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.generation.verify_pack_files" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.generation.fix_force_unicode_glyphs" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.generation.texture_slicer" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.generation.atlas.exclude_malformed_from_atlas" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.upload.polymath.secret" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.dispatch.mandatory" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.dispatch.prompt" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.receive.failed_reload" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.receive.downloaded" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.receive.invalid_url" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Pack.receive.discarded" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "Misc.hide_scoreboard_background" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "general.removing_config" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "command.debug" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | Configuration option "command.version" not found, adding it!
[14:42:18] [Server thread/INFO]: Oraxen | CustomModelData 2 is already assigned to another item with this material but different model
[14:42:18] [Server thread/INFO]: Oraxen | Removing custom model data from set_soul_netherite.yml: soul_netherite_bow

[14:42:18] [Server thread/INFO]: Oraxen | CustomModelData 3 is already assigned to another item with this material but different model
[14:42:18] [Server thread/INFO]: Oraxen | Removing custom model data from set_warden.yml: warden_bow

[14:42:18] [Server thread/INFO]: Oraxen | CustomModelData 1 is already assigned to another item with this material but different model
[14:42:18] [Server thread/INFO]: Oraxen | Removing custom model data from tools.yml: mythril_pickaxe

[14:42:18] [Server thread/INFO]: Oraxen | CustomModelData 2 is already assigned to another item with this material but different model
[14:42:18] [Server thread/INFO]: Oraxen | Removing custom model data from tools.yml: orichalcum_pickaxe

[14:42:18] [Server thread/INFO]: Oraxen | CustomModelData 3 is already assigned to another item with this material but different model
[14:42:18] [Server thread/INFO]: Oraxen | Removing custom model data from tools.yml: titanium_pickaxe

[14:42:18] [Server thread/INFO]: Oraxen | CustomModelData 4 is already assigned to another item with this material but different model
[14:42:18] [Server thread/INFO]: Oraxen | Removing custom model data from tools.yml: iridium_pickaxe

[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Item does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Item does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:42:18] [Server thread/INFO]: Oraxen | Item does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:42:18] [Server thread/INFO]: Oraxen | Item does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:42:18] [Server thread/INFO]: Oraxen | Item does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:42:18] [Server thread/INFO]: Oraxen | Item does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:42:18] [Server thread/INFO]: Oraxen | Template does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:42:18] [Server thread/INFO]: Oraxen | Item does not exist
[14:42:18] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[14:42:18] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[14:42:18] [Server thread/INFO]: Oraxen | Failed to properly slice textures for 1.20.2
[14:42:18] [Server thread/INFO]: Oraxen | No item matching ruby_leggings found. Unable to use ruby_armor_layer_2.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching ruby_boots found. Unable to use ruby_armor_layer_2.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching ruby_helmet found. Unable to use ruby_armor_layer_1.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching ruby_chestplate found. Unable to use ruby_armor_layer_1.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching emerald_helmet found. Unable to use emerald_armor_layer_1.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching emerald_chestplate found. Unable to use emerald_armor_layer_1.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching obsidian_leggings found. Unable to use obsidian_armor_layer_2.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching obsidian_boots found. Unable to use obsidian_armor_layer_2.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching obsidian_helmet found. Unable to use obsidian_armor_layer_1.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching obsidian_chestplate found. Unable to use obsidian_armor_layer_1.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching emerald_leggings found. Unable to use emerald_armor_layer_2.png
[14:42:18] [Server thread/INFO]: Oraxen | No item matching emerald_boots found. Unable to use emerald_armor_layer_2.png
[14:42:19] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[14:42:19] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[14:42:19] [Server thread/INFO]: Oraxen | No broken models or textures were found in the resourcepack

[14:42:19] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[14:42:19] [Server thread/INFO]: 
[14:42:19] [Server thread/INFO]: Oraxen | No duplicate font files found!
[14:42:19] [Server thread/INFO]: 
[14:42:19] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/textures/gui/bars.png - Attempting to migrate it
[14:42:19] [Server thread/INFO]: Oraxen | Failed to migrate duplicate file-entry, file is a texture file
[14:42:19] [Server thread/INFO]: Oraxen | Cannot migrate texture files, rename this or the duplicate entry
[14:42:20] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_text.vsh - Attempting to migrate it
[14:42:20] [Server thread/INFO]: Oraxen | You are importing another copy of a shader file used to hide scoreboard numbers
[14:42:20] [Server thread/INFO]: Oraxen | Either disable Misc.hide_scoreboard_numbers in settings.yml or delete this file
[14:42:20] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_text.json - Attempting to migrate it
[14:42:20] [Server thread/INFO]: Oraxen | You are importing another copy of a shader file used to hide scoreboard numbers
[14:42:20] [Server thread/INFO]: Oraxen | Either disable Misc.hide_scoreboard_numbers in settings.yml or delete this file
[14:42:20] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh - Attempting to migrate it
[14:42:20] [Server thread/INFO]: Oraxen | You are trying to import a shader file used for custom armor.
[14:42:20] [Server thread/INFO]: Oraxen | This shader file is already in your pack. Deleting...
[14:42:20] [Server thread/INFO]: Oraxen | Duplicate file fixed: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh
[14:42:20] [Server thread/INFO]: Oraxen | It is advised to restart your server to ensure that any new conflicts are detected.

[14:42:20] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh - Attempting to migrate it
[14:42:20] [Server thread/INFO]: Oraxen | You are trying to import a shader file used for custom armor.
[14:42:20] [Server thread/INFO]: Oraxen | This shader file is already in your pack. Deleting...
[14:42:20] [Server thread/INFO]: Oraxen | Duplicate file fixed: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh
[14:42:20] [Server thread/INFO]: Oraxen | It is advised to restart your server to ensure that any new conflicts are detected.

[14:42:20] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/LICENSE.md - Attempting to migrate it
[14:42:20] [Server thread/INFO]: Oraxen | Failed to migrate duplicate file-entry, file is not a file that Oraxen can migrate right now
[14:42:20] [Server thread/INFO]: Oraxen | Please refer to https://docs.oraxen.com/ on how to solve this, or ask in the support Discord
[14:42:20] [Server thread/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[14:42:26] [Craft Scheduler Thread - 8 - Oraxen/INFO]: Oraxen | Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=9c3a2ce9e713d1ca1ba75530293c52ae352799cc in 5517 ms
[14:43:26] [Server thread/INFO]: ridoanjay issued server command: /o reload all
[14:43:26] [Server thread/INFO]: Oraxen | Papers block-updates.disable-noteblock-updates is not enabled.
[14:43:26] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with noteblocks
[14:43:26] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[14:43:26] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml

[14:43:26] [Server thread/INFO]: Oraxen | Papers block-updates.disable-tripwire-updates is not enabled.
[14:43:26] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with tripwires
[14:43:26] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[14:43:26] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml

[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Item does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Item does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:43:26] [Server thread/INFO]: Oraxen | Item does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:43:26] [Server thread/INFO]: Oraxen | Item does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:43:26] [Server thread/INFO]: Oraxen | Item does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:43:26] [Server thread/INFO]: Oraxen | Item does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:43:26] [Server thread/INFO]: Oraxen | Template does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:43:26] [Server thread/INFO]: Oraxen | Item does not exist
[14:43:26] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[14:43:26] [Server thread/INFO]: Oraxen | The texture specified for server_logo does not exist. This will break all your glyphs.
[14:43:26] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:43:26] [Server thread/INFO]: Oraxen | The texture specified for server_logo_board does not exist. This will break all your glyphs.
[14:43:26] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:43:26] [Server thread/INFO]: Oraxen | The texture specified for server_logo_big does not exist. This will break all your glyphs.
[14:43:26] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:43:26] [Server thread/INFO]: Oraxen | The texture specified for welcome does not exist. This will break all your glyphs.
[14:43:26] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:43:26] [Server thread/INFO]: Oraxen | The texture specified for esc_banner does not exist. This will break all your glyphs.
[14:43:26] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:43:27] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[14:43:27] [Server thread/INFO]: Oraxen | Failed to properly slice textures for 1.20.2
[14:43:27] [Server thread/INFO]: Oraxen | No item matching ruby_leggings found. Unable to use ruby_armor_layer_2.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching ruby_boots found. Unable to use ruby_armor_layer_2.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching ruby_helmet found. Unable to use ruby_armor_layer_1.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching ruby_chestplate found. Unable to use ruby_armor_layer_1.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching emerald_helmet found. Unable to use emerald_armor_layer_1.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching emerald_chestplate found. Unable to use emerald_armor_layer_1.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching obsidian_leggings found. Unable to use obsidian_armor_layer_2.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching obsidian_boots found. Unable to use obsidian_armor_layer_2.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching obsidian_helmet found. Unable to use obsidian_armor_layer_1.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching obsidian_chestplate found. Unable to use obsidian_armor_layer_1.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching emerald_leggings found. Unable to use emerald_armor_layer_2.png
[14:43:27] [Server thread/INFO]: Oraxen | No item matching emerald_boots found. Unable to use emerald_armor_layer_2.png
[14:43:27] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[14:43:27] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[14:43:27] [Server thread/INFO]: Oraxen | No broken models or textures were found in the resourcepack

[14:43:27] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[14:43:27] [Server thread/INFO]: 
[14:43:27] [Server thread/INFO]: Oraxen | No duplicate font files found!
[14:43:27] [Server thread/INFO]: 
[14:43:27] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/textures/gui/bars.png - Attempting to migrate it
[14:43:27] [Server thread/INFO]: Oraxen | Failed to migrate duplicate file-entry, file is a texture file
[14:43:27] [Server thread/INFO]: Oraxen | Cannot migrate texture files, rename this or the duplicate entry
[14:43:28] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_text.vsh - Attempting to migrate it
[14:43:28] [Server thread/INFO]: Oraxen | You are importing another copy of a shader file used to hide scoreboard numbers
[14:43:28] [Server thread/INFO]: Oraxen | Either disable Misc.hide_scoreboard_numbers in settings.yml or delete this file
[14:43:28] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_text.json - Attempting to migrate it
[14:43:28] [Server thread/INFO]: Oraxen | You are importing another copy of a shader file used to hide scoreboard numbers
[14:43:28] [Server thread/INFO]: Oraxen | Either disable Misc.hide_scoreboard_numbers in settings.yml or delete this file
[14:43:28] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh - Attempting to migrate it
[14:43:28] [Server thread/INFO]: Oraxen | You are trying to import a shader file used for custom armor.
[14:43:28] [Server thread/INFO]: Oraxen | This shader file is already in your pack. Deleting...
[14:43:28] [Server thread/INFO]: Oraxen | Duplicate file fixed: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh
[14:43:28] [Server thread/INFO]: Oraxen | It is advised to restart your server to ensure that any new conflicts are detected.

[14:43:28] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh - Attempting to migrate it
[14:43:28] [Server thread/INFO]: Oraxen | You are trying to import a shader file used for custom armor.
[14:43:28] [Server thread/INFO]: Oraxen | This shader file is already in your pack. Deleting...
[14:43:28] [Server thread/INFO]: Oraxen | Duplicate file fixed: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh
[14:43:28] [Server thread/INFO]: Oraxen | It is advised to restart your server to ensure that any new conflicts are detected.

[14:43:28] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/LICENSE.md - Attempting to migrate it
[14:43:28] [Server thread/INFO]: Oraxen | Failed to migrate duplicate file-entry, file is not a file that Oraxen can migrate right now
[14:43:28] [Server thread/INFO]: Oraxen | Please refer to https://docs.oraxen.com/ on how to solve this, or ask in the support Discord
[14:43:29] [Server thread/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[14:43:34] [Craft Scheduler Thread - 28 - Oraxen/INFO]: Oraxen | Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=c83fc91785867b0410e61a6e69423dd07ba4a049 in 5035 ms
[14:44:20] [Craft Scheduler Thread - 17 - StaffTools/ERROR]: Thread Craft Scheduler Thread - 17 - StaffTools failed main thread check: Chunk getEntities call
java.lang.Throwable: null
    at org.spigotmc.AsyncCatcher.catchOp(AsyncCatcher.java:14) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.level.ServerLevel.getEntities(ServerLevel.java:2563) ~[?:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftWorld.getNMSEntities(CraftWorld.java:1058) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.CraftRegionAccessor.getEntities(CraftRegionAccessor.java:445) ~[paper-1.20.1.jar:git-Paper-196]
    at me.cougers.stafftools.utility.Util.clearlag(Util.java:71) ~[StaffTools.jar:?]
    at me.cougers.stafftools.tasks.ClearLag$1.run(ClearLag.java:14) ~[StaffTools.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.1.jar:git-Paper-196]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.1.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:44:20] [Craft Scheduler Thread - 17 - StaffTools/WARN]: [StaffTools] Plugin StaffTools v3.3.2 generated an exception while executing task 1273
java.lang.IllegalStateException: Asynchronous Chunk getEntities call!
    at org.spigotmc.AsyncCatcher.catchOp(AsyncCatcher.java:15) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.level.ServerLevel.getEntities(ServerLevel.java:2563) ~[?:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftWorld.getNMSEntities(CraftWorld.java:1058) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.CraftRegionAccessor.getEntities(CraftRegionAccessor.java:445) ~[paper-1.20.1.jar:git-Paper-196]
    at me.cougers.stafftools.utility.Util.clearlag(Util.java:71) ~[StaffTools.jar:?]
    at me.cougers.stafftools.tasks.ClearLag$1.run(ClearLag.java:14) ~[StaffTools.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.1.jar:git-Paper-196]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.1.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:45:15] [Server thread/INFO]: ridoanjay issued server command: /o reload all
[14:45:15] [Server thread/INFO]: Oraxen | Papers block-updates.disable-noteblock-updates is not enabled.
[14:45:15] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with noteblocks
[14:45:15] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[14:45:15] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml

[14:45:15] [Server thread/INFO]: Oraxen | Papers block-updates.disable-tripwire-updates is not enabled.
[14:45:15] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with tripwires
[14:45:15] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[14:45:15] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml

[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem MYTHRIL_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Item does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem ORICHALCUM_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Item does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem TITANIUM_INGOT
[14:45:15] [Server thread/INFO]: Oraxen | Item does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_SHARD
[14:45:15] [Server thread/INFO]: Oraxen | Item does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem IRIDIUM_CRYSTAL
[14:45:15] [Server thread/INFO]: Oraxen | Item does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM_DEBRIS
[14:45:15] [Server thread/INFO]: Oraxen | Item does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:45:15] [Server thread/INFO]: Oraxen | Template does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Failed to load MMOItem URANIUM
[14:45:15] [Server thread/INFO]: Oraxen | Item does not exist
[14:45:15] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[14:45:15] [Server thread/INFO]: Oraxen | The texture specified for server_logo does not exist. This will break all your glyphs.
[14:45:15] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:45:15] [Server thread/INFO]: Oraxen | The texture specified for server_logo_board does not exist. This will break all your glyphs.
[14:45:15] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:45:15] [Server thread/INFO]: Oraxen | The texture specified for server_logo_big does not exist. This will break all your glyphs.
[14:45:15] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:45:15] [Server thread/INFO]: Oraxen | The texture specified for welcome does not exist. This will break all your glyphs.
[14:45:15] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:45:15] [Server thread/INFO]: Oraxen | The texture specified for esc_banner does not exist. This will break all your glyphs.
[14:45:15] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[14:45:16] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[14:45:16] [Server thread/INFO]: Oraxen | Failed to properly slice textures for 1.20.2
[14:45:16] [Server thread/INFO]: Oraxen | No item matching ruby_leggings found. Unable to use ruby_armor_layer_2.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching ruby_boots found. Unable to use ruby_armor_layer_2.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching ruby_helmet found. Unable to use ruby_armor_layer_1.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching ruby_chestplate found. Unable to use ruby_armor_layer_1.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching emerald_helmet found. Unable to use emerald_armor_layer_1.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching emerald_chestplate found. Unable to use emerald_armor_layer_1.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching obsidian_leggings found. Unable to use obsidian_armor_layer_2.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching obsidian_boots found. Unable to use obsidian_armor_layer_2.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching obsidian_helmet found. Unable to use obsidian_armor_layer_1.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching obsidian_chestplate found. Unable to use obsidian_armor_layer_1.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching emerald_leggings found. Unable to use emerald_armor_layer_2.png
[14:45:16] [Server thread/INFO]: Oraxen | No item matching emerald_boots found. Unable to use emerald_armor_layer_2.png
[14:45:16] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[14:45:16] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[14:45:16] [Server thread/INFO]: Oraxen | No broken models or textures were found in the resourcepack

[14:45:16] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[14:45:16] [Server thread/INFO]: 
[14:45:16] [Server thread/INFO]: Oraxen | No duplicate font files found!
[14:45:16] [Server thread/INFO]: 
[14:45:16] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/textures/gui/bars.png - Attempting to migrate it
[14:45:16] [Server thread/INFO]: Oraxen | Failed to migrate duplicate file-entry, file is a texture file
[14:45:16] [Server thread/INFO]: Oraxen | Cannot migrate texture files, rename this or the duplicate entry
[14:45:17] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_text.vsh - Attempting to migrate it
[14:45:17] [Server thread/INFO]: Oraxen | You are importing another copy of a shader file used to hide scoreboard numbers
[14:45:17] [Server thread/INFO]: Oraxen | Either disable Misc.hide_scoreboard_numbers in settings.yml or delete this file
[14:45:17] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_text.json - Attempting to migrate it
[14:45:17] [Server thread/INFO]: Oraxen | You are importing another copy of a shader file used to hide scoreboard numbers
[14:45:17] [Server thread/INFO]: Oraxen | Either disable Misc.hide_scoreboard_numbers in settings.yml or delete this file
[14:45:17] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh - Attempting to migrate it
[14:45:17] [Server thread/INFO]: Oraxen | You are trying to import a shader file used for custom armor.
[14:45:17] [Server thread/INFO]: Oraxen | This shader file is already in your pack. Deleting...
[14:45:17] [Server thread/INFO]: Oraxen | Duplicate file fixed: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh
[14:45:17] [Server thread/INFO]: Oraxen | It is advised to restart your server to ensure that any new conflicts are detected.

[14:45:17] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh - Attempting to migrate it
[14:45:17] [Server thread/INFO]: Oraxen | You are trying to import a shader file used for custom armor.
[14:45:17] [Server thread/INFO]: Oraxen | This shader file is already in your pack. Deleting...
[14:45:17] [Server thread/INFO]: Oraxen | Duplicate file fixed: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh
[14:45:17] [Server thread/INFO]: Oraxen | It is advised to restart your server to ensure that any new conflicts are detected.

[14:45:17] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/LICENSE.md - Attempting to migrate it
[14:45:17] [Server thread/INFO]: Oraxen | Failed to migrate duplicate file-entry, file is not a file that Oraxen can migrate right now
[14:45:17] [Server thread/INFO]: Oraxen | Please refer to https://docs.oraxen.com/ on how to solve this, or ask in the support Discord
[14:45:17] [Server thread/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[14:45:24] [Craft Scheduler Thread - 20 - Oraxen/INFO]: Oraxen | Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=0829e70558d934e6574a704175ee0a135f73a617 in 6846 ms
[14:46:26] [Server thread/INFO]: ridoanjay issued server command: /tab reload
[14:46:26] [Server thread/INFO]: [TAB] Disabled in 3ms
[14:46:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[14:46:26] [Server thread/INFO]: [TAB] Enabled in 88ms