From e65efe51cf94a25560a884ef7a5e507fd41dd22c Mon Sep 17 00:00:00 2001 From: COW_ILLUMINATI Date: Sat, 24 May 2025 23:24:39 -0400 Subject: [PATCH] merged tp --- .mcreator/modElementThumbnails/AdvLiquid.png | Bin 375 -> 322 bytes .mcreator/modElementThumbnails/Banisher.png | Bin 273 -> 238 bytes .../modElementThumbnails/BellOfRevelation.png | Bin 323 -> 672 bytes .mcreator/modElementThumbnails/Border.png | Bin 0 -> 231 bytes .../modElementThumbnails/BuriedArmor.png | Bin 1202 -> 1891 bytes .../modElementThumbnails/DEBUGTELEPORTING.png | Bin 0 -> 138 bytes .../DEBUGTELEPORTINGOnEffectActiveTick.png | Bin 0 -> 191 bytes .../{DetectCDC.png => GenerateDefault.png} | Bin .../modElementThumbnails/GenerateFloors.png | Bin 0 -> 200 bytes .../modElementThumbnails/Orbofsatiety.png | Bin 187 -> 186 bytes .mcreator/modElementThumbnails/Platform.png | Bin 0 -> 196 bytes .../PlatformOnTickUpdate.png | Bin 0 -> 191 bytes .../modElementThumbnails/TeleportPlayer.png | Bin 0 -> 200 bytes cawezs_mantle_to_stratus.mcreator | 195 +- elements/Border.mod.json | 123 + elements/DEBUGTELEPORTING.mod.json | 24 + ...EBUGTELEPORTINGOnEffectActiveTick.mod.json | 7 + ...tCDC.mod.json => GenerateDefault.mod.json} | 0 elements/GenerateFloors.mod.json | 7 + elements/Generatedefault.mod.json | 7 + elements/Generatefloors.mod.json | 7 + elements/Platform.mod.json | 136 + elements/PlatformOnTickUpdate.mod.json | 7 + elements/PlatformVanish.mod.json | 7 + elements/Shifted.mod.json | 21 + elements/Shifted_tick.mod.json | 7 + elements/TeleportPlayer.mod.json | 7 + elements/Teleportplayer.mod.json | 7 + run/config/fml.toml | 38 +- run/logs/debug-1.log.gz | Bin 24759 -> 20707 bytes run/logs/debug.log | 4189 ++++++++--------- run/logs/latest.log | 292 +- run/options.txt | 49 +- .../CawezsMantleToStratusMod.java | 3 + .../block/BorderBlock.java | 33 + .../block/PlatformBlock.java | 44 + .../init/CawezsMantleToStratusModBlocks.java | 4 + .../init/CawezsMantleToStratusModItems.java | 2 + .../CawezsMantleToStratusModMobEffects.java | 19 + .../potion/DEBUGTELEPORTINGMobEffect.java | 55 + ...ELEPORTINGOnEffectActiveTickProcedure.java | 39 + .../procedures/DetectCDCProcedure.java | 169 - .../procedures/GenerateDefaultProcedure.java | 115 + .../procedures/GenerateFloorsProcedure.java | 87 + .../PlatformOnTickUpdateProcedure.java | 17 + .../procedures/TeleportPlayerProcedure.java | 117 + .../blockstates/border.json | 7 + .../blockstates/platform.json | 7 + .../lang/en_us.json | 5 + .../models/block/border.json | 13 + .../models/block/platform.json | 13 + .../models/item/border.json | 22 + .../models/item/platform.json | 22 + .../textures/block/black_tile.png | Bin 0 -> 108 bytes .../textures/block/invisible_tile.png | Bin 0 -> 107 bytes .../textures/mob_effect/black_effect.png | Bin 0 -> 75 bytes .../textures/mob_effect/shifted.png | Bin 0 -> 75 bytes .../blockstates/border.json | 7 + .../blockstates/platform.json | 7 + .../cawezs_mantle_to_stratus/lang/en_us.json | 7 +- .../models/block/border.json | 13 + .../models/block/platform.json | 13 + .../models/item/border.json | 22 + .../models/item/platform.json | 22 + .../textures/block/border.png | Bin 0 -> 108 bytes .../textures/mob_effect/debugteleporting.png | Bin 0 -> 75 bytes .../loot_table/blocks/border.json | 4 + .../loot_table/blocks/platform.json | 20 + .../loot_table/blocks/border.json | 4 + .../loot_table/blocks/platform.json | 4 + .../configured_feature/exhumed_tree.json | 58 +- .../worldgen/placed_feature/exhumed_tree.json | 27 +- .../minecraft/tags/block/replaceable.json | 1 + .../minecraft/tags/blocks/replaceable.json | 6 + .../minecraft/tags/entity_type/undead.json | 2 +- .../tags/item/enchantable/durability.json | 18 +- 76 files changed, 3464 insertions(+), 2694 deletions(-) create mode 100644 .mcreator/modElementThumbnails/Border.png create mode 100644 .mcreator/modElementThumbnails/DEBUGTELEPORTING.png create mode 100644 .mcreator/modElementThumbnails/DEBUGTELEPORTINGOnEffectActiveTick.png rename .mcreator/modElementThumbnails/{DetectCDC.png => GenerateDefault.png} (100%) create mode 100644 .mcreator/modElementThumbnails/GenerateFloors.png create mode 100644 .mcreator/modElementThumbnails/Platform.png create mode 100644 .mcreator/modElementThumbnails/PlatformOnTickUpdate.png create mode 100644 .mcreator/modElementThumbnails/TeleportPlayer.png create mode 100644 elements/Border.mod.json create mode 100644 elements/DEBUGTELEPORTING.mod.json create mode 100644 elements/DEBUGTELEPORTINGOnEffectActiveTick.mod.json rename elements/{DetectCDC.mod.json => GenerateDefault.mod.json} (100%) create mode 100644 elements/GenerateFloors.mod.json create mode 100644 elements/Generatedefault.mod.json create mode 100644 elements/Generatefloors.mod.json create mode 100644 elements/Platform.mod.json create mode 100644 elements/PlatformOnTickUpdate.mod.json create mode 100644 elements/PlatformVanish.mod.json create mode 100644 elements/Shifted.mod.json create mode 100644 elements/Shifted_tick.mod.json create mode 100644 elements/TeleportPlayer.mod.json create mode 100644 elements/Teleportplayer.mod.json create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/block/BorderBlock.java create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/block/PlatformBlock.java create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModMobEffects.java create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/potion/DEBUGTELEPORTINGMobEffect.java create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/procedures/DEBUGTELEPORTINGOnEffectActiveTickProcedure.java delete mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/procedures/DetectCDCProcedure.java create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateDefaultProcedure.java create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateFloorsProcedure.java create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/procedures/PlatformOnTickUpdateProcedure.java create mode 100644 src/main/java/net/mcreator/cawezsmantletostratus/procedures/TeleportPlayerProcedure.java create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/blockstates/border.json create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/blockstates/platform.json create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/lang/en_us.json create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/models/block/border.json create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/models/block/platform.json create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/models/item/border.json create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/models/item/platform.json create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/textures/block/black_tile.png create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/textures/block/invisible_tile.png create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/textures/mob_effect/black_effect.png create mode 100644 src/main/resources/assets/cawezs_dimensional_connectivity/textures/mob_effect/shifted.png create mode 100644 src/main/resources/assets/cawezs_mantle_to_stratus/blockstates/border.json create mode 100644 src/main/resources/assets/cawezs_mantle_to_stratus/blockstates/platform.json create mode 100644 src/main/resources/assets/cawezs_mantle_to_stratus/models/block/border.json create mode 100644 src/main/resources/assets/cawezs_mantle_to_stratus/models/block/platform.json create mode 100644 src/main/resources/assets/cawezs_mantle_to_stratus/models/item/border.json create mode 100644 src/main/resources/assets/cawezs_mantle_to_stratus/models/item/platform.json create mode 100644 src/main/resources/assets/cawezs_mantle_to_stratus/textures/block/border.png create mode 100644 src/main/resources/assets/cawezs_mantle_to_stratus/textures/mob_effect/debugteleporting.png create mode 100644 src/main/resources/data/cawezs_dimensional_connectivity/loot_table/blocks/border.json create mode 100644 src/main/resources/data/cawezs_dimensional_connectivity/loot_table/blocks/platform.json create mode 100644 src/main/resources/data/cawezs_mantle_to_stratus/loot_table/blocks/border.json create mode 100644 src/main/resources/data/cawezs_mantle_to_stratus/loot_table/blocks/platform.json create mode 100644 src/main/resources/data/minecraft/tags/blocks/replaceable.json diff --git a/.mcreator/modElementThumbnails/AdvLiquid.png b/.mcreator/modElementThumbnails/AdvLiquid.png index 846064371fe20c7812b2e5e8cf9d3677180241b2..ff4e02bd7a06a3d00fbafadc82054ce0bd535379 100644 GIT binary patch delta 295 zcmV+?0oeZc0>T22B!3A>L_t(|USnVw1*2dT3^>@cXOAO2@xWV{pPyeC7#O$!gh6a% zxt~9O9!FP?O$;AKu`oC|`22*D>Hn8?uK&Mg(zgG-P`X84C$b4Ml=orPq_V)Jwi+>j{{$E{P{XZ)!>wj`` z^8d87G@>j-wiK6T7#4yodh_PZ{{sgO{GUI6{{Nz)qW{2nM6nRvB8n`Gi;Fw|=+Ps% zg&+rj#IPBN&2V%dW5XyGf>P!5>C?d$_V)JvFD)$v`4FB`(G5oz!^TI)BxMU?Fv%8@ ti-`$N5T=@i#2{kyqIDFEf>A(!008JqW`f%Zj|l((002ovPDHLkV1jc`jwAp8 delta 348 zcmV-i0i*uH0`~%tB!50hL_t(|USnVw1*2dT3^>@cXOAO2@xWVn@!0wW$QW7f=g*(V z(bZ!U!-wG(o;Hq(KfB63(CF=jp0RR85j~@B|^YoejAUSLnAoFpFqhq**Pk*oP1Y7p=)Y1Q+Ufucs z_5EWo`|sCB|3Pxt48q1ow;UbAEu5X|^8fFb+yDRncm&2jUZ4H{_1UriZ|@)YUlU{n zw-DVTvMp@1k@*`9T~hP^#LSZa_YN)nztCUtf0%|4(H7#f48_6;`SFGQ zE;9cQ#H;;3oK>Lue^;#P|HT1H|8q>l{}(4lz!MF!;pk%6_~;lTTSV9yEI`KS@`NzS u7LtpJ2~H5EnuWw-^rCeXjDk@>e*gf!BY~D;0|w3j0000ogG=?9Tk(Q9p(*s(f*1pWR7)!8#FXa8S0KWL_BJ6oC zBMayiPe&FY69ZX55siN~SCIwC#6T7hc3H^MXT?As0AUH?_5FwgHsxLd=hXxH_y7O^ M07*qoM6N<$g3z~I0RR91 delta 245 zcmV?UA%#Ru zrqBnoPzUFssK`ymQG5uVZw5`khP{7jnv2i`3Wmcu@0|MxmWufqf#Zlt2{Wv%fWyNe8ther vCa~|~Lu`1OM1#F*&;{02d`Rs41nHNP3qlm!Ff@LIhlkKecX0O;i*9WS03 z$ul4LTBfUW++u0F3nKeUzs~;cpk)CnS8IlnIPeMvl8w;aod-E6bNv%M z8XE<4?MZxglBhKfafpW{{XihPXJ%qm8tLoh5hGFfa4t- zV0YJZh#edQ2Ke@79=P2RIHl)7*JmIzJO%&yNQw)V2jD{G;(9~z`;yQZ9|Yc7sV_YZ zFNgQR$VeK_-JFI}L5gL002UkX-?a|>(G2jVdyGYM&Z3bNUE zaP@2gN(Pzr0PokgI43mS6!Mz1o2#Sc3<_N^HiH zSFwYY1ZE*GjO#{l6Ue|E@^}CIm;6-KEU2#Q(Ad@G-DcI=)!FarJrx6BfD7g`>pXXL z&Myy;(qg#|IcERQ;((Od|Fte5gvR&Rv$X<`=WEBO+vB6vr+*yfa$ZlP1=#Kn9TS9r z(*tl9-3kaoK=mnyFQ$4_aR6O#0Q||^V6GsQALTCm9e|&RD{vq@CxBaV)Mx-$R}eq3 z191S7n_~|~1Hb_sOu*>@@aK~hG}O#}LfSS_00000NkvXXu0mjfJtl`u diff --git a/.mcreator/modElementThumbnails/Border.png b/.mcreator/modElementThumbnails/Border.png new file mode 100644 index 0000000000000000000000000000000000000000..03fa0254f96486bf16559592096e5486ade54882 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJb)GJcAr)~~`vSRI4Fry~-1~o~ zt0~AhYVGdD5+}}AzwA5wA>2zdS@-|;gNdi?c==*aepjs6<9_c|({ZIwWx{snrbJsy zSU>%C=Fj4mo9nD^#I5*0r9H56|E;?T6Fw>K3D-2>sO7jXuVG*@#d%7tbED(s10Pl$ zIItEkdaKE^c`vWLTP+X&*I8`*@tMueUrgpz7yZqmGe?s02lz1X%27d=37V7R~0Mu7`LfM^s zT~N3zr7JU4kE|3eSS-aLAw0>eG*7|~#3ZR2WC%52v!w2z=2iX`!gdEXu_GQ_H9y&a zg~x;bKYZ-+%c_k~i#(u_wC2EQk_qZi+~&fcKB@Dcdf@iQ@wMO)2`hAt?Fla*Rd!z) zP@Fr}Bs}LX{V%NE?Y zcts0^L*|c(lI<}h?;KOu-|onG&|8!8ukLCA+RJ%x7jj_Nv;W~VB~zo%Qi+!*x^gz?8MVna( zV@5wjbTa~E{147y8=khgkJAT;1aJs&3Hz+}W&pLL5b3sZDC6vKX~!XAnXpkFs()E8qw;$#c>JyjUo7e1oXUeZ-u0zy zwizE?HRE^J3vunL2ATD;uRW@0v zYgQU;^3xE~^Isb7d&d@4H0k*D^>=gd@Qx9cqXkcb6Eb>>mM>q{;O#@u8&A{`Q>DU(nl9l#04JtWf%FAX;!mq(J$ zl3C(0ULX!_>h`Q%C2x`DqDkV`)NV$$%OYr)$}GT9+ijF&4#Ozehdf&qNTn2{T!M6o z4pnjuYI1#OFL)10I}HCj>?!@exWSdxkD5taomRrcdxZjfA*agIR=Lfm~2m3mkVS5 zf2JKyspr$HDsl&mue6P;`=v)elRh-7%I`W^Nvrz2i^pvL@ z9GteoIh>EGyckG3b;voKhbmnRDu24vaJFWmEIaz!3<-xQ>^!3SD74Okbs9%h9|q!% zQ0_JsyR;G2_VktNinIX>i|}j}DKO~c;7B4oor>9)m&>_h3H&nb*2R!4eM)}m*U3W_ z;ITDNlZcisB>B<&1pQO-*&6U!*%b;eqA(Q4r8qElA z0YBl8DKS2SVTOi%1X)ooh<_qYNQ{)rLbast0MB|v?|Gi%If%+~!BdAeiGI967~OJE z@>J%jgH=%U+^ixcp_&h8iTKO``ZFn44H-{^PZq^k84dgD_E`8|zj$DSjGGH7M}e~* z#GYn6^WZ8r1s`WcAIDec(hiXZ`Bf;C&(})sN2V6SQJ)3P` zl&?V^Io4Eo*SUWHrt%_G=SH-KYHl1SajVnutDoKwVRe!gFr?w;FqvK%rB46;mI@!g zmyQqSn7Df~e08~>aDPL!q*PD1ZjE}a(O`koAUbcc5US5-p&qNx^Lg~8FlC6>_1QZ` z3q2(Hr?Y}5pDju7gVR*JKf?$ZhOMuRP}jfwQ32L2#N+1|7=ax|Jh^_92t&0SXvimV zZfiu2&$pw|QmXYNCtptXbea1NB>c`P+W6<+7vS+i{5QXtiB7=s5XoN|i7@{58W*20 zC4ck5#VD+dkntdQxBh>|?NQ3xk0!#fG)Q#hWmgFc+-2UQ3ChM1hjRZ7E(ox&MNstl P00000NkvXXu0mjfB}kKG delta 1183 zcmV;Q1YrB)4zdZ5BYy;WNklaxCW zxa@+v)h*K1>O!r(_HWiUR_s#(gJ3xJ1e#Fa;)I6RJnGdMgs!t$dP+dH|kG5p7{i;kF)uBZYE#D zYpIV2-ozvGcz-oNad$G`74C+X*PgJjMrwD`m#sd`B6qxtji+~z{4ynSWG#ZhOc))ymd8$__J5+rAXsaW{bnscvptL5dwOS38N(H0EL^H(j+6ZhO z8;K~12(%|3dIBEo|8gL%3Qd;2R$_c}8pG=&Y=7%Xcde*7H)OMg)7t=jGY?aTAX4AL z!{W4HY=0xFG?Wl+zuqpcirh?G=ABu1I-8VxFM=&;Bi5hX%DXSSOAL8tXmwjLes>~I z8ONP3sf1WZe+L%J7{<2Z@OFDi6IW`5|gE+uZ0Zfl%n^6MX(9K({fuItp$3l;(@n&?O<(xP#>k}ePQMb zC5#eEPKr_6{}faODCMPFLP=^ns}wTGb@ZfLf+&xb({Tw~gAF}5df*Ls(a6rFM7lln z0)JmA+Y)w{15NE-sH#;``7&sATKN0?(3$j=bX+W&8pjVWo?&4xiMhRbk+Zo3k_RdH zt~OUXPqE3RDSYwl4x5xXI2CB#>2c!e>G$w-c`E6+*tKvFbG!41u=8X0*+HZVlgQ1X zsjGa&V2A~Wf|%c1C^0nK%~=2LGpV$d(|=Kk>O^cij!Wz;vEO}+z4g9&B==Jn8j>!4 zZyJ1I*+oOaA{2BLN*f{887d=WcV6lseWBqy>fTv+p{`Q#CR`}2WT?~WHv7l>5#M3D z+EN`|cfpY$s;a6sl{x}5>?#PAhKFSh)oP9UC^Qwq&d<5G{WBrxjJlUBu4SxYe}ArC zMpj0#^yuc>?tva?w3;K*$n;z+a6N$dE;Bs;|H0FZpLj5j=3cSt%MCTm;IuW^DkcUy zr+;y!1FEzp?Vog<+CFNd$(*uSjjWwZP+B{h9Z*-RX>joX(_yyz9MWlpoC!9PL*{Df#y^5p;k002ovPDHLkV1n<~QWXFI diff --git a/.mcreator/modElementThumbnails/DEBUGTELEPORTING.png b/.mcreator/modElementThumbnails/DEBUGTELEPORTING.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb462e176c6c45377a1e59002d5c5fbfb42982d GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s1|*Ak?@s|zfu1goAr*0N&lz$tDDXI6oVQZ_ z%~?^_gv;+@4x#q_j!6Y*))9nLW|6d@^U}I6aRs-d`Z`nPcyL zrj@naH|r~Ov#Q0qTBVe-4fk*G$XMuk;(GDgk9rGRceZF6o)2z$7!`44#nibMgbyd_ pzvxWdDE?)IVQkjfwVV8(F-UfGER-(Z&KuHxx=%hGZii-Z4!vEt9#_VjN#t95T3(xBez$ozX{<~HME#5tCw@uxb?D;*k|t9 z7vnQ}ZmO=?D#thHyVM{1B^^%gyfc*}H4fJG#LrN<5}=aOpWa!{X=>vwA@td{C0?)9 uwKHaB^E_>xYfWH6&T!SjOC?iljo3W`_N+H`5Izoc8iS{+pUXO@geCwDQb=$B literal 0 HcmV?d00001 diff --git a/.mcreator/modElementThumbnails/Orbofsatiety.png b/.mcreator/modElementThumbnails/Orbofsatiety.png index 25f96e20b42975e06eb49751a5081ec31b69b69a..ca72ba2cbb1a4d5d9e0320f6e489bd1d41e5127f 100644 GIT binary patch delta 158 zcmV;P0Ac^T0lEQ@B!7WPL_t(|UhR-U3V<*S1p6ZKAKpFnb-uuV`3MDJ!7hnXNQjgS z%%RY-LrY1Lq@VLccX*I>;~qHH*glOU(y)_{`06a$|-QhttNf(kXE|;ZY|E7@Fvj6}9 M07*qoM6N<$f_iyI>;M1& delta 159 zcmV;Q0AT;R0lNW^B!7ZQL_t(|UhR-U3V<*S1p6DW{=>Vc{=$#>FCU>GEZ8Mc3JH;t zfjJafc4#R{lJs+a=nfCEZrlUMy1a^e^wxy1fMyu%a~1Un2@4R1x2cMHg#0srhqRD! z19*@fH-NufI}a5A#1Ku(VGtewnh;Igqqio62Y}~@q&qywCKyT5#RWmoShp3&m|p+@ N002ovPDHLkV1mtOLr4Gs diff --git a/.mcreator/modElementThumbnails/Platform.png b/.mcreator/modElementThumbnails/Platform.png new file mode 100644 index 0000000000000000000000000000000000000000..42ad4b7c6c40812db227d413e3f2a75f193e8408 GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJZci7-kczms(=Kv081S&}?v~!s zY|-&~hmUwqNJk5MuEXsuQ)Qkk=X_gh)2w*rRGrYtL;D`{bV`MlE?~O3KFzixD3#sr z(09G)J>0+h9kkwDU82#DzE&bQK`SL9bw|NENuv!iTEUEMtRL?1h!^~G{T^!5($Lzn t%QV_cM853ag<4T>#$v%g@(2Ez#Kct3n7XL^kvGs;44$rjF6*2UngB`#O27aB literal 0 HcmV?d00001 diff --git a/.mcreator/modElementThumbnails/PlatformOnTickUpdate.png b/.mcreator/modElementThumbnails/PlatformOnTickUpdate.png new file mode 100644 index 0000000000000000000000000000000000000000..6ba87fdbac18650e261a9fd44ea075385ff7b1df GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s1|*Ak?@s|zZJsWUAr*0NCm-Z(P!M3zy~6k7 z=9R6^?oyQk#+Dp13o`Dc$Q>v;+@4x#q_j!6Y*))9nLW|6d@^U}I6aRs-d`Z`nPcyL zrj@naH|r~Ov#Q0qTBVe-4fk*G$XMuk;(GDgk9rGRceZF6o)2z$7!`44#nibMgbyd_ pzvxWdDE?)IVQkjfwVV8(F-UfGER-(Z&KuHxx=%hGZii-Z4!vEt9#_VjN#t95T3(xBez$ozX{<~HME#5tCw@uxb?D;*k|t9 z7vnQ}ZmO=?D#thHyVM{1B^^%gyfc*}H4fJG#LrN<5}=aOpWa!{X=>vwA@td{C0?)9 uwKHaB^E_>xYfWH6&T!SjOC?iljo3W`_N+H`5Izoc8iS{+pUXO@geCwDQb=$B literal 0 HcmV?d00001 diff --git a/cawezs_mantle_to_stratus.mcreator b/cawezs_mantle_to_stratus.mcreator index 1d26a70..00d9a69 100644 --- a/cawezs_mantle_to_stratus.mcreator +++ b/cawezs_mantle_to_stratus.mcreator @@ -1989,20 +1989,6 @@ }, "path": "~/Places/Biomes/Cherries" }, - { - "name": "DetectCDC", - "type": "procedure", - "compiles": true, - "locked_code": true, - "registry_name": "detect_cdc", - "metadata": { - "files": [ - "src/main/java/net/mcreator/cawezsmantletostratus/procedures/DetectCDCProcedure.java" - ], - "dependencies": [] - }, - "path": "~/Mod" - }, { "name": "BaseGround", "type": "block", @@ -5662,6 +5648,161 @@ ] }, "path": "~/Items/AncientSunlight" + }, + { + "name": "GenerateDefault", + "type": "procedure", + "compiles": true, + "locked_code": true, + "registry_name": "generate_default", + "metadata": { + "files": [ + "src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateDefaultProcedure.java" + ], + "dependencies": [] + }, + "path": "~/Mod" + }, + { + "name": "TeleportPlayer", + "type": "procedure", + "compiles": true, + "locked_code": true, + "registry_name": "teleport_player", + "metadata": { + "files": [ + "src/main/java/net/mcreator/cawezsmantletostratus/procedures/TeleportPlayerProcedure.java" + ], + "dependencies": [] + }, + "path": "~/Mod" + }, + { + "name": "DEBUGTELEPORTING", + "type": "potioneffect", + "compiles": true, + "locked_code": false, + "registry_name": "debugteleporting", + "metadata": { + "files": [ + "src/main/java/net/mcreator/cawezsmantletostratus/potion/DEBUGTELEPORTINGMobEffect.java" + ] + }, + "path": "~/Mod" + }, + { + "name": "Border", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "border", + "metadata": { + "files": [ + "src/main/resources/data/cawezs_mantle_to_stratus/loot_table/blocks/border.json", + "src/main/resources/assets/cawezs_mantle_to_stratus/blockstates/border.json", + "src/main/resources/assets/cawezs_mantle_to_stratus/models/block/border.json", + "src/main/java/net/mcreator/cawezsmantletostratus/block/BorderBlock.java", + "src/main/resources/assets/cawezs_mantle_to_stratus/models/item/border.json" + ] + }, + "path": "~/Mod" + }, + { + "name": "GenerateFloors", + "type": "procedure", + "compiles": true, + "locked_code": true, + "registry_name": "generate_floors", + "metadata": { + "files": [ + "src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateFloorsProcedure.java" + ], + "dependencies": [] + }, + "path": "~/Mod" + }, + { + "name": "Platform", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "platform", + "metadata": { + "files": [ + "src/main/resources/assets/cawezs_mantle_to_stratus/blockstates/platform.json", + "src/main/resources/assets/cawezs_mantle_to_stratus/models/item/platform.json", + "src/main/java/net/mcreator/cawezsmantletostratus/block/PlatformBlock.java", + "src/main/resources/assets/cawezs_mantle_to_stratus/models/block/platform.json", + "src/main/resources/data/cawezs_mantle_to_stratus/loot_table/blocks/platform.json" + ] + }, + "path": "~/Mod" + }, + { + "name": "PlatformOnTickUpdate", + "type": "procedure", + "compiles": true, + "locked_code": false, + "registry_name": "platform_on_tick_update", + "metadata": { + "files": [ + "src/main/java/net/mcreator/cawezsmantletostratus/procedures/PlatformOnTickUpdateProcedure.java" + ], + "dependencies": [ + { + "name": "x", + "type": "number" + }, + { + "name": "y", + "type": "number" + }, + { + "name": "z", + "type": "number" + }, + { + "name": "world", + "type": "world" + } + ] + }, + "path": "~/Mod" + }, + { + "name": "DEBUGTELEPORTINGOnEffectActiveTick", + "type": "procedure", + "compiles": true, + "locked_code": false, + "registry_name": "debugteleporting_on_effect_active_tick", + "metadata": { + "files": [ + "src/main/java/net/mcreator/cawezsmantletostratus/procedures/DEBUGTELEPORTINGOnEffectActiveTickProcedure.java" + ], + "dependencies": [ + { + "name": "entity", + "type": "entity" + }, + { + "name": "x", + "type": "number" + }, + { + "name": "y", + "type": "number" + }, + { + "name": "z", + "type": "number" + }, + { + "name": "world", + "type": "world" + } + ] + }, + "path": "~/Mod" } ], "variable_elements": [ @@ -5746,11 +5887,12 @@ "~CUSTOM:BuriedArmor.body" ], "ENTITIES:minecraft:undead": [ - "~CUSTOM:Callion", "~CUSTOM:Uiron", + "~CUSTOM:Callion", "~CUSTOM:Haunter" ], "BLOCKS:minecraft:replaceable": [ + "~CUSTOM:Platform", "~CUSTOM:EtherialLiquid" ], "BIOMES:minecraft:has_structure/jungle_temple": [ @@ -5759,19 +5901,19 @@ "~CUSTOM:Overgrowncaves" ], "ITEMS:minecraft:enchantable/durability": [ - "~CUSTOM:Somnoporter", - "~CUSTOM:Wayfinder", - "~CUSTOM:RougeAmulet", - "~CUSTOM:AmberAmulet", - "~CUSTOM:CobaltAmulet", - "~CUSTOM:AzureAmulte", - "~CUSTOM:JadeAmulet", - "~CUSTOM:RoseAmulet", "~CUSTOM:Blightstone", "~CUSTOM:Amber", + "~CUSTOM:Wayfinder", + "~CUSTOM:Somnoporter", "~CUSTOM:Absorber", "~CUSTOM:WandOfLight", - "~CUSTOM:QueenBow" + "~CUSTOM:QueenBow", + "~CUSTOM:JadeAmulet", + "~CUSTOM:AzureAmulte", + "~CUSTOM:CobaltAmulet", + "~CUSTOM:AmberAmulet", + "~CUSTOM:RougeAmulet", + "~CUSTOM:RoseAmulet" ], "ITEMS:minecraft:pickaxes": [ "~CUSTOM:StarforgedPickaxe" @@ -5920,8 +6062,8 @@ "item.cawezs_mantle_to_stratus.wayfinder": "Wayfinder", "block.cawezs_mantle_to_stratus.base_ground": "Base Ground", "advancements.adv_cms.descr": "Install CMS. Make sure you have at least one connectivity mod as well!", - "item.cawezs_mantle_to_stratus.azure_amulte": "Azure Amulet", "block.cawezs_mantle_to_stratus.endless_scaffolding": "Endless Scaffolding", + "item.cawezs_mantle_to_stratus.azure_amulte": "Azure Amulet", "entity.cawezs_mantle_to_stratus.ceilock": "Ceilock", "item.cawezs_mantle_to_stratus.blood_aeris": "Blood of Aeris", "item.cawezs_mantle_to_stratus.gladiator_soul_spawn_egg": "Gladiator Soul Spawn Egg", @@ -5942,6 +6084,7 @@ "advancements.adv_breed.descr": "Breed a passive mob: the Callion with redstone, the Aceer with string or the Uiron with fish", "item.cawezs_mantle_to_stratus.buried_armor_chestplate.description_0": "It appears so weak...", "subtitles.cawezs_mantle_to_stratus": "Music Plays", + "effect.cawezs_mantle_to_stratus.debugteleporting": "DEBUGTELEPORTING", "biome.cawezs_mantle_to_stratus.trees": "Trees", "advancements.adv_depths.title": "Depths", "item.cawezs_mantle_to_stratus.diurnal_controller": "Diurnal Controller", @@ -5995,6 +6138,7 @@ "item.cawezs_mantle_to_stratus.blood_gloom": "Blood of Gloom", "item.cawezs_mantle_to_stratus.hollowegg": "Hollow Egg", "item.cawezs_mantle_to_stratus.ancient_sunlight.description_0": "Lights a large area (VERY LARGE)", + "block.cawezs_mantle_to_stratus.platform": "Platform", "biome.cawezs_mantle_to_stratus.cliffs": "Cliffs", "item.cawezs_mantle_to_stratus.eclaris_staff": "Eclaris Staff", "item.cawezs_mantle_to_stratus.ancient_sunlight.description_1": "Shift right-click to remove", @@ -6065,6 +6209,7 @@ "item.cawezs_mantle_to_stratus.heaven_armor_chestplate": "Heaven Chestplate", "item.cawezs_mantle_to_stratus.etherial_liquid_bucket.description_2": "Can push entities very fast", "subtitles.goodbye": "Music Plays", + "block.cawezs_mantle_to_stratus.border": "Border", "item.cawezs_mantle_to_stratus.finisher.description_0": "Felled beasts will drop more loot", "item.cawezs_mantle_to_stratus.buried_armor_helmet": "Buried Helmet", "item.cawezs_mantle_to_stratus.verglas_labrys": "Verglas Labrys", diff --git a/elements/Border.mod.json b/elements/Border.mod.json new file mode 100644 index 0000000..0088e72 --- /dev/null +++ b/elements/Border.mod.json @@ -0,0 +1,123 @@ +{ + "_fv": 77, + "_type": "block", + "definition": { + "texture": "border", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 10, + "customModelName": "Normal", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": true, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [], + "customProperties": [], + "name": "Border", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 1.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "Not specified", + "customDrop": { + "value": "" + }, + "dropAmount": 0, + "useLootTableForDrops": false, + "requiresCorrectTool": false, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "GROUND" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": true, + "vanillaToolTier": "NONE", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "generateFeature": false, + "restrictionBiomes": [], + "blocksToReplace": [ + { + "value": "TAG:stone_ore_replaceables" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 10, + "frequencyOnChunk": 16, + "minGenerateHeight": 0, + "maxGenerateHeight": 64 + } +} \ No newline at end of file diff --git a/elements/DEBUGTELEPORTING.mod.json b/elements/DEBUGTELEPORTING.mod.json new file mode 100644 index 0000000..1a34af9 --- /dev/null +++ b/elements/DEBUGTELEPORTING.mod.json @@ -0,0 +1,24 @@ +{ + "_fv": 77, + "_type": "potioneffect", + "definition": { + "effectName": "DEBUGTELEPORTING", + "icon": "debugteleporting", + "color": { + "value": -16777216, + "falpha": 0.0 + }, + "onAddedSound": { + "value": "" + }, + "isInstant": false, + "mobEffectCategory": "NEUTRAL", + "renderStatusInInventory": false, + "renderStatusInHUD": false, + "isCuredbyHoney": false, + "modifiers": [], + "onActiveTick": { + "name": "DEBUGTELEPORTINGOnEffectActiveTick" + } + } +} \ No newline at end of file diff --git a/elements/DEBUGTELEPORTINGOnEffectActiveTick.mod.json b/elements/DEBUGTELEPORTINGOnEffectActiveTick.mod.json new file mode 100644 index 0000000..385f5c3 --- /dev/null +++ b/elements/DEBUGTELEPORTINGOnEffectActiveTick.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "no_ext_triggerMINUS1CUSTOM:PlatformCUSTOM:DEBUGTELEPORTINGLEVITATIONfill ~ ~ ~ ~ ~1 ~ minecraft:air destroyLT1CUSTOM:DEBUGTELEPORTINGMINUS1Blocks.AIRCUSTOM:PlatformMINUS1" + } +} \ No newline at end of file diff --git a/elements/DetectCDC.mod.json b/elements/GenerateDefault.mod.json similarity index 100% rename from elements/DetectCDC.mod.json rename to elements/GenerateDefault.mod.json diff --git a/elements/GenerateFloors.mod.json b/elements/GenerateFloors.mod.json new file mode 100644 index 0000000..a796e5e --- /dev/null +++ b/elements/GenerateFloors.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "minecraft_world_loaded" + } +} \ No newline at end of file diff --git a/elements/Generatedefault.mod.json b/elements/Generatedefault.mod.json new file mode 100644 index 0000000..fec416c --- /dev/null +++ b/elements/Generatedefault.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "mod_loadmarker1" + } +} \ No newline at end of file diff --git a/elements/Generatefloors.mod.json b/elements/Generatefloors.mod.json new file mode 100644 index 0000000..e7cdbcd --- /dev/null +++ b/elements/Generatefloors.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "player_ticks" + } +} \ No newline at end of file diff --git a/elements/Platform.mod.json b/elements/Platform.mod.json new file mode 100644 index 0000000..aa01da4 --- /dev/null +++ b/elements/Platform.mod.json @@ -0,0 +1,136 @@ +{ + "_fv": 77, + "_type": "block", + "definition": { + "texture": "endlessscaffolding", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 10, + "customModelName": "Normal", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": true, + "connectedSides": false, + "transparencyType": "CUTOUT", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Platform", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 1.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "Not specified", + "customDrop": { + "value": "" + }, + "dropAmount": 0, + "useLootTableForDrops": false, + "requiresCorrectTool": false, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": true, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "EMPTY" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "NONE", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onTickUpdate": { + "name": "PlatformOnTickUpdate" + }, + "generateFeature": false, + "restrictionBiomes": [], + "blocksToReplace": [ + { + "value": "TAG:stone_ore_replaceables" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 10, + "frequencyOnChunk": 16, + "minGenerateHeight": 0, + "maxGenerateHeight": 64 + } +} \ No newline at end of file diff --git a/elements/PlatformOnTickUpdate.mod.json b/elements/PlatformOnTickUpdate.mod.json new file mode 100644 index 0000000..2b27151 --- /dev/null +++ b/elements/PlatformOnTickUpdate.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "no_ext_triggerADD10MINUS10ADD10MINUS10ADD10MINUS10" + } +} \ No newline at end of file diff --git a/elements/PlatformVanish.mod.json b/elements/PlatformVanish.mod.json new file mode 100644 index 0000000..3173fcc --- /dev/null +++ b/elements/PlatformVanish.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "no_ext_triggerADD10ADD-10ADD10ADD-10ADD10ADD-10" + } +} \ No newline at end of file diff --git a/elements/Shifted.mod.json b/elements/Shifted.mod.json new file mode 100644 index 0000000..cc2591c --- /dev/null +++ b/elements/Shifted.mod.json @@ -0,0 +1,21 @@ +{ + "_fv": 77, + "_type": "potioneffect", + "definition": { + "effectName": "Shifted", + "icon": "black_effect", + "color": { + "value": -16777216, + "falpha": 0.0 + }, + "isInstant": false, + "mobEffectCategory": "NEUTRAL", + "renderStatusInInventory": false, + "renderStatusInHUD": false, + "isCuredbyHoney": false, + "modifiers": [], + "onActiveTick": { + "name": "Shifted_tick" + } + } +} \ No newline at end of file diff --git a/elements/Shifted_tick.mod.json b/elements/Shifted_tick.mod.json new file mode 100644 index 0000000..305cda8 --- /dev/null +++ b/elements/Shifted_tick.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "no_ext_triggerfill ~ ~ ~ ~ ~ ~ minecraft:air destroyADD1fill ~ ~1 ~ ~ ~1 ~ minecraft:air destroyEQ2CUSTOM:Shiftedfill ~-1 ~-1 ~-1 ~1 ~-1 ~1 cawezs_dimensional_connectivity:platform replace minecraft:airCUSTOM:Shifted" + } +} \ No newline at end of file diff --git a/elements/TeleportPlayer.mod.json b/elements/TeleportPlayer.mod.json new file mode 100644 index 0000000..a796e5e --- /dev/null +++ b/elements/TeleportPlayer.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "minecraft_world_loaded" + } +} \ No newline at end of file diff --git a/elements/Teleportplayer.mod.json b/elements/Teleportplayer.mod.json new file mode 100644 index 0000000..8929f7d --- /dev/null +++ b/elements/Teleportplayer.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 77, + "_type": "procedure", + "definition": { + "procedurexml": "player_ticksmarker1" + } +} \ No newline at end of file diff --git a/run/config/fml.toml b/run/config/fml.toml index 5c65715..f126de7 100644 --- a/run/config/fml.toml +++ b/run/config/fml.toml @@ -1,26 +1,32 @@ -#Early window height -earlyWindowHeight = 480 -#Enable NeoForge global version checking -versionCheck = true -#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them. -earlyWindowControl = true -#Early window framebuffer scale -earlyWindowFBScale = 1 #Disables File Watcher. Used to automatically update config if its file has been modified. disableConfigWatcher = false -#Early window provider -earlyWindowProvider = "fmlearlywindow" -#Early window width -earlyWindowWidth = 854 -#Early window starts maximized -earlyWindowMaximized = false +#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them. +earlyWindowControl = true +#Max threads for early initialization parallelism, -1 is based on processor count +maxThreads = -1 +#Enable NeoForge global version checking +versionCheck = true #Default config path for servers defaultConfigPath = "defaultconfigs" #Disables Optimized DFU client-side - already disabled on servers disableOptimizedDFU = true +#Early window provider +earlyWindowProvider = "fmlearlywindow" +#Early window width +earlyWindowWidth = 854 +#Early window height +earlyWindowHeight = 480 +#Early window framebuffer scale +earlyWindowFBScale = 1 +#Early window starts maximized +earlyWindowMaximized = false #Skip specific GL versions, may help with buggy graphics card drivers earlyWindowSkipGLVersions = [] -#Max threads for early initialization parallelism, -1 is based on processor count -maxThreads = -1 #Squir? earlyWindowSquir = false +#Define dependency overrides below +#Dependency overrides can be used to forcibly remove a dependency constraint from a mod or to force a mod to load AFTER another mod +#Using dependency overrides can cause issues. Use at your own risk. +#Example dependency override for the mod with the id 'targetMod': dependency constraints (incompatibility clauses or restrictive version ranges) against mod 'dep1' are removed, and the mod will now load after the mod 'dep2' +#dependencyOverrides.targetMod = ["-dep1", "+dep2"] +dependencyOverrides = {} diff --git a/run/logs/debug-1.log.gz b/run/logs/debug-1.log.gz index d31db83614eefa1f196828adfd8459b23efaf68a..4f13d23a46e5d75c9661fa25e2d9f740dc73ff45 100644 GIT binary patch literal 20707 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 literal 24759 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 neoforge-coremods-21.1.92.jar -[24May2025 20:24:17.314] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Adding [Target[className=net.minecraft.world.level.biome.Biome, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72]] transformer from core-mod net.neoforged.neoforge.coremods.NeoForgeCoreMod@77010a30 in neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar -[24May2025 20:24:17.315] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Adding [Target[className=net.minecraft.world.level.levelgen.structure.Structure, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72]] transformer from core-mod net.neoforged.neoforge.coremods.NeoForgeCoreMod@77010a30 in neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar -[24May2025 20:24:17.315] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Adding [Target[className=net.minecraft.world.level.block.FlowerPotBlock, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72]] transformer from core-mod net.neoforged.neoforge.coremods.NeoForgeCoreMod@77010a30 in neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar -[24May2025 20:24:17.317] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Adding [Target[className=net/minecraft/world/entity/monster/Spider, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/monster/Zombie, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/npc/Villager, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/raid/Raid, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/level/levelgen/PhantomSpawner, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/server/commands/SummonCommand, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/npc/CatSpawner, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/EntityType, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/animal/horse/SkeletonTrapGoal, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/ai/village/VillageSiege, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/monster/Strider, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/monster/ZombieVillager, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/server/commands/RaidCommand, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/level/levelgen/PatrolSpawner, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/level/NaturalSpawner, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/entity/animal/frog/Tadpole, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72], Target[className=net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@1cbf6e72]] transformer from core-mod net.neoforged.neoforge.coremods.NeoForgeCoreMod@77010a30 in neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar -[24May2025 20:24:17.326] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.ReplaceFieldWithGetterAccess@301aa982 to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/biome/Biome;} {} {V} -[24May2025 20:24:17.330] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.ReplaceFieldWithGetterAccess@4ba380c7 to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} -[24May2025 20:24:17.331] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.ReplaceFieldWithGetterAccess@784c5ef5 to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} -[24May2025 20:24:17.332] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/monster/Spider;} {} {V} -[24May2025 20:24:17.333] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} -[24May2025 20:24:17.333] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/npc/Villager;} {} {V} -[24May2025 20:24:17.334] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} -[24May2025 20:24:17.334] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/raid/Raid;} {} {V} -[24May2025 20:24:17.335] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} -[24May2025 20:24:17.335] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} -[24May2025 20:24:17.335] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} -[24May2025 20:24:17.336] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/server/commands/SummonCommand;} {} {V} -[24May2025 20:24:17.336] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} -[24May2025 20:24:17.337] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} -[24May2025 20:24:17.337] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/EntityType;} {} {V} -[24May2025 20:24:17.337] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} -[24May2025 20:24:17.338] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} -[24May2025 20:24:17.338] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} -[24May2025 20:24:17.339] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/monster/Strider;} {} {V} -[24May2025 20:24:17.340] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} -[24May2025 20:24:17.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/server/commands/RaidCommand;} {} {V} -[24May2025 20:24:17.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} -[24May2025 20:24:17.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} -[24May2025 20:24:17.342] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} -[24May2025 20:24:17.342] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@31133b6e to Target : cpw.mods.modlauncher.api.TargetType@1cbf6e72 {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} -[24May2025 20:24:17.343] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml -[24May2025 20:24:18.506] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[24May2025 20:24:18.507] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@b10a26d] -[24May2025 20:24:18.507] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[FMLMixinPlatformAgent:null] -[24May2025 20:24:18.620] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[24May2025 20:24:18.621] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixin_synthetic) -[24May2025 20:24:18.623] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixin_synthetic) -[24May2025 20:24:18.623] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixin_synthetic) -[24May2025 20:24:18.624] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixin_synthetic) -[24May2025 20:24:18.625] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixin_synthetic) -[24May2025 20:24:18.625] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(mixin_synthetic) -[24May2025 20:24:18.625] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(mixin_synthetic) -[24May2025 20:24:18.626] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixin_synthetic)] -[24May2025 20:24:18.626] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) -[24May2025 20:24:18.627] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) -[24May2025 20:24:18.627] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) -[24May2025 20:24:18.628] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) -[24May2025 20:24:18.628] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) -[24May2025 20:24:18.629] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(minecraft) -[24May2025 20:24:18.629] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(minecraft) -[24May2025 20:24:18.629] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] -[24May2025 20:24:18.630] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(cawezs_mantle_to_stratus) -[24May2025 20:24:18.630] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(cawezs_mantle_to_stratus) -[24May2025 20:24:18.631] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(cawezs_mantle_to_stratus) -[24May2025 20:24:18.631] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(cawezs_mantle_to_stratus) -[24May2025 20:24:18.631] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(cawezs_mantle_to_stratus) -[24May2025 20:24:18.632] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(cawezs_mantle_to_stratus) -[24May2025 20:24:18.632] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(cawezs_mantle_to_stratus) -[24May2025 20:24:18.632] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cawezs_mantle_to_stratus)] -[24May2025 20:24:18.632] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jei) -[24May2025 20:24:18.633] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jei) -[24May2025 20:24:18.633] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jei) -[24May2025 20:24:18.633] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jei) -[24May2025 20:24:18.634] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jei) -[24May2025 20:24:18.634] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(jei) -[24May2025 20:24:18.634] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(jei) -[24May2025 20:24:18.634] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jei)] -[24May2025 20:24:18.635] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixinextras.neoforge) -[24May2025 20:24:18.635] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixinextras.neoforge) -[24May2025 20:24:18.635] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixinextras.neoforge) -[24May2025 20:24:18.635] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixinextras.neoforge) -[24May2025 20:24:18.636] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixinextras.neoforge) -[24May2025 20:24:18.636] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(mixinextras.neoforge) -[24May2025 20:24:18.636] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(mixinextras.neoforge) -[24May2025 20:24:18.636] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras.neoforge)] -[24May2025 20:24:18.637] [main/DEBUG] [mixin/]: Registering mixin config: mixinextras.init.mixins.json source=SecureJarResource(mixinextras.neoforge) -[24May2025 20:24:18.642] [main/DEBUG] [mixin/]: inject() running with 7 agents -[24May2025 20:24:18.642] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[24May2025 20:24:18.643] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@b10a26d] -[24May2025 20:24:18.643] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[FMLMixinPlatformAgent:null] -[24May2025 20:24:18.643] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixin_synthetic)] -[24May2025 20:24:18.644] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] -[24May2025 20:24:18.644] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cawezs_mantle_to_stratus)] -[24May2025 20:24:18.644] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jei)] -[24May2025 20:24:18.644] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras.neoforge)] -[24May2025 20:24:18.645] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, 21.1.92, --gameDir, ., --assetsDir, /home/cow/.mcreator/gradle/caches/neoformruntime/assets, --assetIndex, 17] -[24May2025 20:24:18.750] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] -[24May2025 20:24:18.751] [main/DEBUG] [mixin/]: Selecting config neoforge.mixins.json -[24May2025 20:24:18.764] [main/DEBUG] [mixin/]: Selecting config mixinextras.init.mixins.json -[24May2025 20:24:18.874] [main/DEBUG] [MixinExtras|Service/]: com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1) is taking over from null -[24May2025 20:24:18.997] [main/DEBUG] [mixin/]: Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo -[24May2025 20:24:19.001] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo -[24May2025 20:24:19.005] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo -[24May2025 20:24:19.009] [main/DEBUG] [mixin/]: Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo -[24May2025 20:24:19.014] [main/DEBUG] [mixin/]: Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo -[24May2025 20:24:19.018] [main/DEBUG] [mixin/]: Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo -[24May2025 20:24:19.060] [main/DEBUG] [mixin/]: Preparing neoforge.mixins.json (2) -[24May2025 20:24:19.237] [main/DEBUG] [mixin/]: Preparing mixinextras.init.mixins.json (0) -[24May2025 20:24:19.254] [main/DEBUG] [mixin/]: Prepared 2 mixins in 0.501 sec (250.5ms avg) (0ms load, 0ms transform, 0ms plugin) -[24May2025 20:24:19.812] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework -[24May2025 20:24:19.819] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple -[24May2025 20:24:19.820] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 -[24May2025 20:24:22.070] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@3fd2322d -[24May2025 20:24:22.240] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[24May2025 20:24:22.241] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[24May2025 20:24:22.251] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/stat -[24May2025 20:24:22.265] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[24May2025 20:24:22.265] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[24May2025 20:24:22.266] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[24May2025 20:24:22.266] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[24May2025 20:24:22.266] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity -[24May2025 20:24:22.270] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level -[24May2025 20:24:22.270] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level -[24May2025 20:24:22.271] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type -[24May2025 20:24:22.271] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type -[24May2025 20:24:22.273] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity -[24May2025 20:24:22.273] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity -[24May2025 20:24:22.273] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size -[24May2025 20:24:22.274] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size -[24May2025 20:24:22.274] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size -[24May2025 20:24:22.274] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size -[24May2025 20:24:22.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level -[24May2025 20:24:22.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level -[24May2025 20:24:22.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type -[24May2025 20:24:22.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type -[24May2025 20:24:22.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity -[24May2025 20:24:22.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity -[24May2025 20:24:22.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size -[24May2025 20:24:22.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size -[24May2025 20:24:22.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size -[24May2025 20:24:22.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size -[24May2025 20:24:22.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level -[24May2025 20:24:22.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level -[24May2025 20:24:22.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type -[24May2025 20:24:22.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type -[24May2025 20:24:22.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity -[24May2025 20:24:22.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity -[24May2025 20:24:22.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size -[24May2025 20:24:22.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size -[24May2025 20:24:22.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size -[24May2025 20:24:22.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size -[24May2025 20:24:22.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level -[24May2025 20:24:22.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level -[24May2025 20:24:22.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type -[24May2025 20:24:22.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type -[24May2025 20:24:22.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity -[24May2025 20:24:22.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity -[24May2025 20:24:22.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size -[24May2025 20:24:22.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size -[24May2025 20:24:22.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size -[24May2025 20:24:22.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size -[24May2025 20:24:22.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[24May2025 20:24:22.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[24May2025 20:24:22.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[24May2025 20:24:22.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[24May2025 20:24:22.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity -[24May2025 20:24:22.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level -[24May2025 20:24:22.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level -[24May2025 20:24:22.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type -[24May2025 20:24:22.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type -[24May2025 20:24:22.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity -[24May2025 20:24:22.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity -[24May2025 20:24:22.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size -[24May2025 20:24:22.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size -[24May2025 20:24:22.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size -[24May2025 20:24:22.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size -[24May2025 20:24:22.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level -[24May2025 20:24:22.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level -[24May2025 20:24:22.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type -[24May2025 20:24:22.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type -[24May2025 20:24:22.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity -[24May2025 20:24:22.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity -[24May2025 20:24:22.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size -[24May2025 20:24:22.296] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size -[24May2025 20:24:22.296] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size -[24May2025 20:24:22.299] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size -[24May2025 20:24:22.301] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level -[24May2025 20:24:22.301] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level -[24May2025 20:24:22.302] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type -[24May2025 20:24:22.302] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type -[24May2025 20:24:22.302] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity -[24May2025 20:24:22.303] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity -[24May2025 20:24:22.304] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size -[24May2025 20:24:22.304] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size -[24May2025 20:24:22.304] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size -[24May2025 20:24:22.305] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size -[24May2025 20:24:22.305] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level -[24May2025 20:24:22.305] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level -[24May2025 20:24:22.306] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type -[24May2025 20:24:22.306] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type -[24May2025 20:24:22.307] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity -[24May2025 20:24:22.308] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity -[24May2025 20:24:22.309] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size -[24May2025 20:24:22.309] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size -[24May2025 20:24:22.309] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size -[24May2025 20:24:22.310] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size -[24May2025 20:24:22.311] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[24May2025 20:24:22.312] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[24May2025 20:24:22.312] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[24May2025 20:24:22.313] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[24May2025 20:24:22.313] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity -[24May2025 20:24:22.313] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level -[24May2025 20:24:22.314] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level -[24May2025 20:24:22.314] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type -[24May2025 20:24:22.314] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type -[24May2025 20:24:22.314] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity -[24May2025 20:24:22.315] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity -[24May2025 20:24:22.315] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size -[24May2025 20:24:22.315] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size -[24May2025 20:24:22.315] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size -[24May2025 20:24:22.316] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size -[24May2025 20:24:22.316] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level -[24May2025 20:24:22.316] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level -[24May2025 20:24:22.317] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type -[24May2025 20:24:22.317] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type -[24May2025 20:24:22.318] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity -[24May2025 20:24:22.319] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity -[24May2025 20:24:22.319] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size -[24May2025 20:24:22.319] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size -[24May2025 20:24:22.320] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size -[24May2025 20:24:22.320] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size -[24May2025 20:24:22.320] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level -[24May2025 20:24:22.320] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level -[24May2025 20:24:22.321] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type -[24May2025 20:24:22.321] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type -[24May2025 20:24:22.321] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity -[24May2025 20:24:22.321] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity -[24May2025 20:24:22.322] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size -[24May2025 20:24:22.322] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size -[24May2025 20:24:22.322] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size -[24May2025 20:24:22.323] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size -[24May2025 20:24:22.323] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level -[24May2025 20:24:22.323] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level -[24May2025 20:24:22.324] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type -[24May2025 20:24:22.324] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type -[24May2025 20:24:22.324] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity -[24May2025 20:24:22.324] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity -[24May2025 20:24:22.325] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size -[24May2025 20:24:22.325] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size -[24May2025 20:24:22.326] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size -[24May2025 20:24:22.326] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size -[24May2025 20:24:22.327] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[24May2025 20:24:22.328] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[24May2025 20:24:22.328] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[24May2025 20:24:22.328] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[24May2025 20:24:22.328] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity -[24May2025 20:24:22.329] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level -[24May2025 20:24:22.329] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level -[24May2025 20:24:22.330] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type -[24May2025 20:24:22.330] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type -[24May2025 20:24:22.330] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity -[24May2025 20:24:22.331] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity -[24May2025 20:24:22.331] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size -[24May2025 20:24:22.331] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size -[24May2025 20:24:22.331] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size -[24May2025 20:24:22.331] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size -[24May2025 20:24:22.332] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level -[24May2025 20:24:22.332] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level -[24May2025 20:24:22.332] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type -[24May2025 20:24:22.332] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type -[24May2025 20:24:22.333] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity -[24May2025 20:24:22.333] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity -[24May2025 20:24:22.333] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size -[24May2025 20:24:22.333] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size -[24May2025 20:24:22.333] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size -[24May2025 20:24:22.334] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size -[24May2025 20:24:22.334] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level -[24May2025 20:24:22.334] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level -[24May2025 20:24:22.334] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type -[24May2025 20:24:22.335] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type -[24May2025 20:24:22.335] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity -[24May2025 20:24:22.335] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity -[24May2025 20:24:22.335] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size -[24May2025 20:24:22.335] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size -[24May2025 20:24:22.336] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size -[24May2025 20:24:22.336] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size -[24May2025 20:24:22.336] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level -[24May2025 20:24:22.336] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level -[24May2025 20:24:22.337] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type -[24May2025 20:24:22.337] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type -[24May2025 20:24:22.337] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity -[24May2025 20:24:22.337] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity -[24May2025 20:24:22.338] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size -[24May2025 20:24:22.338] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size -[24May2025 20:24:22.338] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size -[24May2025 20:24:22.339] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size -[24May2025 20:24:22.340] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[24May2025 20:24:22.341] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[24May2025 20:24:22.341] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[24May2025 20:24:22.341] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[24May2025 20:24:22.342] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity -[24May2025 20:24:22.342] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level -[24May2025 20:24:22.343] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level -[24May2025 20:24:22.343] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type -[24May2025 20:24:22.343] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type -[24May2025 20:24:22.343] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity -[24May2025 20:24:22.344] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity -[24May2025 20:24:22.344] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size -[24May2025 20:24:22.344] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size -[24May2025 20:24:22.344] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size -[24May2025 20:24:22.344] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size -[24May2025 20:24:22.345] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level -[24May2025 20:24:22.345] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level -[24May2025 20:24:22.345] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type -[24May2025 20:24:22.346] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type -[24May2025 20:24:22.347] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity -[24May2025 20:24:22.347] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity -[24May2025 20:24:22.347] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size -[24May2025 20:24:22.348] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size -[24May2025 20:24:22.348] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size -[24May2025 20:24:22.348] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size -[24May2025 20:24:22.349] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level -[24May2025 20:24:22.349] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level -[24May2025 20:24:22.350] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type -[24May2025 20:24:22.350] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type -[24May2025 20:24:22.351] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity -[24May2025 20:24:22.351] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity -[24May2025 20:24:22.351] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size -[24May2025 20:24:22.351] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size -[24May2025 20:24:22.352] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size -[24May2025 20:24:22.352] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size -[24May2025 20:24:22.352] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level -[24May2025 20:24:22.353] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level -[24May2025 20:24:22.353] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type -[24May2025 20:24:22.353] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type -[24May2025 20:24:22.354] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity -[24May2025 20:24:22.354] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity -[24May2025 20:24:22.354] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size -[24May2025 20:24:22.354] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size -[24May2025 20:24:22.355] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size -[24May2025 20:24:22.355] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size -[24May2025 20:24:22.357] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[24May2025 20:24:22.357] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[24May2025 20:24:22.358] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[24May2025 20:24:22.358] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[24May2025 20:24:22.358] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity -[24May2025 20:24:22.359] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level -[24May2025 20:24:22.359] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level -[24May2025 20:24:22.359] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type -[24May2025 20:24:22.359] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type -[24May2025 20:24:22.360] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity -[24May2025 20:24:22.360] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity -[24May2025 20:24:22.360] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size -[24May2025 20:24:22.360] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size -[24May2025 20:24:22.360] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size -[24May2025 20:24:22.361] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size -[24May2025 20:24:22.361] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level -[24May2025 20:24:22.361] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level -[24May2025 20:24:22.362] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type -[24May2025 20:24:22.362] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type -[24May2025 20:24:22.362] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity -[24May2025 20:24:22.362] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity -[24May2025 20:24:22.363] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size -[24May2025 20:24:22.363] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size -[24May2025 20:24:22.363] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size -[24May2025 20:24:22.363] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size -[24May2025 20:24:22.364] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level -[24May2025 20:24:22.364] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level -[24May2025 20:24:22.364] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type -[24May2025 20:24:22.364] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type -[24May2025 20:24:22.365] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity -[24May2025 20:24:22.365] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity -[24May2025 20:24:22.365] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size -[24May2025 20:24:22.365] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size -[24May2025 20:24:22.366] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size -[24May2025 20:24:22.366] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size -[24May2025 20:24:22.366] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level -[24May2025 20:24:22.367] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level -[24May2025 20:24:22.367] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type -[24May2025 20:24:22.367] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type -[24May2025 20:24:22.368] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity -[24May2025 20:24:22.368] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity -[24May2025 20:24:22.369] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size -[24May2025 20:24:22.369] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size -[24May2025 20:24:22.369] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size -[24May2025 20:24:22.370] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size -[24May2025 20:24:22.372] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[24May2025 20:24:22.372] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[24May2025 20:24:22.373] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[24May2025 20:24:22.373] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[24May2025 20:24:22.373] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity -[24May2025 20:24:22.374] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level -[24May2025 20:24:22.374] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level -[24May2025 20:24:22.375] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type -[24May2025 20:24:22.375] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type -[24May2025 20:24:22.375] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity -[24May2025 20:24:22.375] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity -[24May2025 20:24:22.375] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size -[24May2025 20:24:22.376] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size -[24May2025 20:24:22.376] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size -[24May2025 20:24:22.376] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size -[24May2025 20:24:22.376] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level -[24May2025 20:24:22.377] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level -[24May2025 20:24:22.377] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type -[24May2025 20:24:22.377] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type -[24May2025 20:24:22.377] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity -[24May2025 20:24:22.377] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity -[24May2025 20:24:22.378] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size -[24May2025 20:24:22.378] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size -[24May2025 20:24:22.378] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size -[24May2025 20:24:22.378] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size -[24May2025 20:24:22.379] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level -[24May2025 20:24:22.379] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level -[24May2025 20:24:22.379] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type -[24May2025 20:24:22.379] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type -[24May2025 20:24:22.380] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity -[24May2025 20:24:22.380] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity -[24May2025 20:24:22.380] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size -[24May2025 20:24:22.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size -[24May2025 20:24:22.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size -[24May2025 20:24:22.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size -[24May2025 20:24:22.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level -[24May2025 20:24:22.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level -[24May2025 20:24:22.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type -[24May2025 20:24:22.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type -[24May2025 20:24:22.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity -[24May2025 20:24:22.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity -[24May2025 20:24:22.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size -[24May2025 20:24:22.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size -[24May2025 20:24:22.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size -[24May2025 20:24:22.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size -[24May2025 20:24:22.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[24May2025 20:24:22.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[24May2025 20:24:22.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[24May2025 20:24:22.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[24May2025 20:24:22.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity -[24May2025 20:24:22.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level -[24May2025 20:24:22.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level -[24May2025 20:24:22.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type -[24May2025 20:24:22.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type -[24May2025 20:24:22.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity -[24May2025 20:24:22.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity -[24May2025 20:24:22.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size -[24May2025 20:24:22.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size -[24May2025 20:24:22.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size -[24May2025 20:24:22.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size -[24May2025 20:24:22.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level -[24May2025 20:24:22.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level -[24May2025 20:24:22.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type -[24May2025 20:24:22.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type -[24May2025 20:24:22.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity -[24May2025 20:24:22.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity -[24May2025 20:24:22.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size -[24May2025 20:24:22.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size -[24May2025 20:24:22.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size -[24May2025 20:24:22.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size -[24May2025 20:24:22.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level -[24May2025 20:24:22.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level -[24May2025 20:24:22.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type -[24May2025 20:24:22.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type -[24May2025 20:24:22.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity -[24May2025 20:24:22.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity -[24May2025 20:24:22.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size -[24May2025 20:24:22.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size -[24May2025 20:24:22.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size -[24May2025 20:24:22.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size -[24May2025 20:24:22.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level -[24May2025 20:24:22.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level -[24May2025 20:24:22.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type -[24May2025 20:24:22.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type -[24May2025 20:24:22.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity -[24May2025 20:24:22.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity -[24May2025 20:24:22.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size -[24May2025 20:24:22.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size -[24May2025 20:24:22.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size -[24May2025 20:24:22.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size -[24May2025 20:24:22.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[24May2025 20:24:22.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[24May2025 20:24:22.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[24May2025 20:24:22.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[24May2025 20:24:22.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity -[24May2025 20:24:22.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level -[24May2025 20:24:22.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level -[24May2025 20:24:22.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type -[24May2025 20:24:22.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type -[24May2025 20:24:22.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity -[24May2025 20:24:22.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity -[24May2025 20:24:22.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size -[24May2025 20:24:22.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size -[24May2025 20:24:22.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size -[24May2025 20:24:22.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size -[24May2025 20:24:22.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level -[24May2025 20:24:22.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level -[24May2025 20:24:22.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type -[24May2025 20:24:22.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type -[24May2025 20:24:22.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity -[24May2025 20:24:22.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity -[24May2025 20:24:22.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size -[24May2025 20:24:22.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size -[24May2025 20:24:22.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size -[24May2025 20:24:22.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size -[24May2025 20:24:22.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level -[24May2025 20:24:22.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level -[24May2025 20:24:22.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type -[24May2025 20:24:22.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type -[24May2025 20:24:22.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity -[24May2025 20:24:22.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity -[24May2025 20:24:22.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size -[24May2025 20:24:22.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size -[24May2025 20:24:22.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size -[24May2025 20:24:22.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size -[24May2025 20:24:22.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level -[24May2025 20:24:22.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level -[24May2025 20:24:22.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type -[24May2025 20:24:22.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type -[24May2025 20:24:22.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity -[24May2025 20:24:22.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity -[24May2025 20:24:22.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size -[24May2025 20:24:22.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size -[24May2025 20:24:22.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size -[24May2025 20:24:22.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size -[24May2025 20:24:22.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[24May2025 20:24:22.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[24May2025 20:24:22.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[24May2025 20:24:22.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[24May2025 20:24:22.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity -[24May2025 20:24:22.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level -[24May2025 20:24:22.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level -[24May2025 20:24:22.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type -[24May2025 20:24:22.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type -[24May2025 20:24:22.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity -[24May2025 20:24:22.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity -[24May2025 20:24:22.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size -[24May2025 20:24:22.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size -[24May2025 20:24:22.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size -[24May2025 20:24:22.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size -[24May2025 20:24:22.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level -[24May2025 20:24:22.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level -[24May2025 20:24:22.416] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type -[24May2025 20:24:22.416] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type -[24May2025 20:24:22.416] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity -[24May2025 20:24:22.416] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity -[24May2025 20:24:22.416] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size -[24May2025 20:24:22.416] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size -[24May2025 20:24:22.417] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size -[24May2025 20:24:22.417] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size -[24May2025 20:24:22.417] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level -[24May2025 20:24:22.417] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level -[24May2025 20:24:22.418] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type -[24May2025 20:24:22.418] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type -[24May2025 20:24:22.418] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity -[24May2025 20:24:22.418] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity -[24May2025 20:24:22.419] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size -[24May2025 20:24:22.419] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size -[24May2025 20:24:22.419] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size -[24May2025 20:24:22.419] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size -[24May2025 20:24:22.419] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level -[24May2025 20:24:22.420] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level -[24May2025 20:24:22.420] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type -[24May2025 20:24:22.420] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type -[24May2025 20:24:22.420] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity -[24May2025 20:24:22.420] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity -[24May2025 20:24:22.421] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size -[24May2025 20:24:22.421] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size -[24May2025 20:24:22.421] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size -[24May2025 20:24:22.421] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size -[24May2025 20:24:22.423] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[24May2025 20:24:22.423] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[24May2025 20:24:22.424] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[24May2025 20:24:22.424] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[24May2025 20:24:22.424] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity -[24May2025 20:24:22.425] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level -[24May2025 20:24:22.425] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level -[24May2025 20:24:22.425] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type -[24May2025 20:24:22.425] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type -[24May2025 20:24:22.426] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity -[24May2025 20:24:22.426] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity -[24May2025 20:24:22.426] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size -[24May2025 20:24:22.426] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size -[24May2025 20:24:22.426] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size -[24May2025 20:24:22.427] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size -[24May2025 20:24:22.427] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level -[24May2025 20:24:22.427] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level -[24May2025 20:24:22.428] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type -[24May2025 20:24:22.428] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type -[24May2025 20:24:22.428] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity -[24May2025 20:24:22.428] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity -[24May2025 20:24:22.429] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size -[24May2025 20:24:22.429] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size -[24May2025 20:24:22.429] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size -[24May2025 20:24:22.429] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size -[24May2025 20:24:22.430] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level -[24May2025 20:24:22.432] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level -[24May2025 20:24:22.433] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type -[24May2025 20:24:22.433] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type -[24May2025 20:24:22.433] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity -[24May2025 20:24:22.434] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity -[24May2025 20:24:22.434] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size -[24May2025 20:24:22.434] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size -[24May2025 20:24:22.434] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size -[24May2025 20:24:22.434] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size -[24May2025 20:24:22.435] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level -[24May2025 20:24:22.435] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level -[24May2025 20:24:22.435] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type -[24May2025 20:24:22.436] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type -[24May2025 20:24:22.436] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity -[24May2025 20:24:22.436] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity -[24May2025 20:24:22.436] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size -[24May2025 20:24:22.436] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size -[24May2025 20:24:22.437] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size -[24May2025 20:24:22.437] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size -[24May2025 20:24:22.439] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[24May2025 20:24:22.439] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[24May2025 20:24:22.439] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[24May2025 20:24:22.440] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[24May2025 20:24:22.440] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity -[24May2025 20:24:22.440] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level -[24May2025 20:24:22.441] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level -[24May2025 20:24:22.441] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type -[24May2025 20:24:22.441] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type -[24May2025 20:24:22.441] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity -[24May2025 20:24:22.441] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity -[24May2025 20:24:22.442] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size -[24May2025 20:24:22.442] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size -[24May2025 20:24:22.442] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size -[24May2025 20:24:22.442] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size -[24May2025 20:24:22.442] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level -[24May2025 20:24:22.443] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level -[24May2025 20:24:22.443] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type -[24May2025 20:24:22.443] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type -[24May2025 20:24:22.443] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity -[24May2025 20:24:22.444] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity -[24May2025 20:24:22.444] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size -[24May2025 20:24:22.444] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size -[24May2025 20:24:22.444] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size -[24May2025 20:24:22.445] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size -[24May2025 20:24:22.445] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level -[24May2025 20:24:22.445] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level -[24May2025 20:24:22.446] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type -[24May2025 20:24:22.446] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type -[24May2025 20:24:22.446] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity -[24May2025 20:24:22.446] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity -[24May2025 20:24:22.446] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size -[24May2025 20:24:22.447] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size -[24May2025 20:24:22.447] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size -[24May2025 20:24:22.447] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size -[24May2025 20:24:22.447] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level -[24May2025 20:24:22.448] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level -[24May2025 20:24:22.448] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type -[24May2025 20:24:22.448] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type -[24May2025 20:24:22.448] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity -[24May2025 20:24:22.449] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity -[24May2025 20:24:22.449] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size -[24May2025 20:24:22.449] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size -[24May2025 20:24:22.449] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size -[24May2025 20:24:22.449] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size -[24May2025 20:24:22.451] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[24May2025 20:24:22.451] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[24May2025 20:24:22.452] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[24May2025 20:24:22.452] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[24May2025 20:24:22.452] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity -[24May2025 20:24:22.453] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level -[24May2025 20:24:22.453] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level -[24May2025 20:24:22.453] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type -[24May2025 20:24:22.453] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type -[24May2025 20:24:22.453] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity -[24May2025 20:24:22.454] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity -[24May2025 20:24:22.454] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size -[24May2025 20:24:22.454] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size -[24May2025 20:24:22.454] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size -[24May2025 20:24:22.454] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size -[24May2025 20:24:22.455] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level -[24May2025 20:24:22.455] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level -[24May2025 20:24:22.455] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type -[24May2025 20:24:22.455] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type -[24May2025 20:24:22.455] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity -[24May2025 20:24:22.456] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity -[24May2025 20:24:22.456] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size -[24May2025 20:24:22.456] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size -[24May2025 20:24:22.456] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size -[24May2025 20:24:22.456] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size -[24May2025 20:24:22.457] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level -[24May2025 20:24:22.457] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level -[24May2025 20:24:22.457] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type -[24May2025 20:24:22.457] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type -[24May2025 20:24:22.457] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity -[24May2025 20:24:22.458] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity -[24May2025 20:24:22.458] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size -[24May2025 20:24:22.458] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size -[24May2025 20:24:22.458] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size -[24May2025 20:24:22.458] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size -[24May2025 20:24:22.458] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level -[24May2025 20:24:22.459] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level -[24May2025 20:24:22.459] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type -[24May2025 20:24:22.459] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type -[24May2025 20:24:22.459] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity -[24May2025 20:24:22.459] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity -[24May2025 20:24:22.460] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size -[24May2025 20:24:22.460] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size -[24May2025 20:24:22.460] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size -[24May2025 20:24:22.460] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size -[24May2025 20:24:22.461] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[24May2025 20:24:22.462] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[24May2025 20:24:22.462] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[24May2025 20:24:22.462] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[24May2025 20:24:22.463] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity -[24May2025 20:24:22.463] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level -[24May2025 20:24:22.463] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level -[24May2025 20:24:22.464] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type -[24May2025 20:24:22.464] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type -[24May2025 20:24:22.464] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity -[24May2025 20:24:22.464] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity -[24May2025 20:24:22.465] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size -[24May2025 20:24:22.465] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size -[24May2025 20:24:22.465] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size -[24May2025 20:24:22.466] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size -[24May2025 20:24:22.466] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level -[24May2025 20:24:22.466] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level -[24May2025 20:24:22.467] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type -[24May2025 20:24:22.467] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type -[24May2025 20:24:22.467] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity -[24May2025 20:24:22.467] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity -[24May2025 20:24:22.468] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size -[24May2025 20:24:22.468] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size -[24May2025 20:24:22.468] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size -[24May2025 20:24:22.468] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size -[24May2025 20:24:22.469] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level -[24May2025 20:24:22.469] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level -[24May2025 20:24:22.469] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type -[24May2025 20:24:22.469] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type -[24May2025 20:24:22.470] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity -[24May2025 20:24:22.470] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity -[24May2025 20:24:22.470] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size -[24May2025 20:24:22.471] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size -[24May2025 20:24:22.471] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size -[24May2025 20:24:22.471] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size -[24May2025 20:24:22.471] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level -[24May2025 20:24:22.472] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level -[24May2025 20:24:22.472] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type -[24May2025 20:24:22.472] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type -[24May2025 20:24:22.472] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity -[24May2025 20:24:22.473] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity -[24May2025 20:24:22.473] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size -[24May2025 20:24:22.473] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size -[24May2025 20:24:22.473] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size -[24May2025 20:24:22.473] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size -[24May2025 20:24:22.476] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[24May2025 20:24:22.476] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[24May2025 20:24:22.476] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[24May2025 20:24:22.476] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[24May2025 20:24:22.477] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity -[24May2025 20:24:22.477] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level -[24May2025 20:24:22.478] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level -[24May2025 20:24:22.478] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type -[24May2025 20:24:22.478] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type -[24May2025 20:24:22.478] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity -[24May2025 20:24:22.479] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity -[24May2025 20:24:22.479] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size -[24May2025 20:24:22.479] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size -[24May2025 20:24:22.479] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size -[24May2025 20:24:22.480] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size -[24May2025 20:24:22.480] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level -[24May2025 20:24:22.480] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level -[24May2025 20:24:22.481] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type -[24May2025 20:24:22.481] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type -[24May2025 20:24:22.481] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity -[24May2025 20:24:22.481] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity -[24May2025 20:24:22.482] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size -[24May2025 20:24:22.482] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size -[24May2025 20:24:22.482] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size -[24May2025 20:24:22.482] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size -[24May2025 20:24:22.483] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level -[24May2025 20:24:22.483] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level -[24May2025 20:24:22.483] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type -[24May2025 20:24:22.483] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type -[24May2025 20:24:22.483] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity -[24May2025 20:24:22.484] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity -[24May2025 20:24:22.484] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size -[24May2025 20:24:22.484] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size -[24May2025 20:24:22.484] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size -[24May2025 20:24:22.484] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size -[24May2025 20:24:22.485] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level -[24May2025 20:24:22.485] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level -[24May2025 20:24:22.485] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type -[24May2025 20:24:22.485] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type -[24May2025 20:24:22.486] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity -[24May2025 20:24:22.486] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity -[24May2025 20:24:22.486] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size -[24May2025 20:24:22.486] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size -[24May2025 20:24:22.486] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size -[24May2025 20:24:22.487] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size -[24May2025 20:24:22.489] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[24May2025 20:24:22.489] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[24May2025 20:24:22.489] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[24May2025 20:24:22.490] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[24May2025 20:24:22.490] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity -[24May2025 20:24:22.490] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level -[24May2025 20:24:22.491] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level -[24May2025 20:24:22.491] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type -[24May2025 20:24:22.491] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type -[24May2025 20:24:22.492] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity -[24May2025 20:24:22.492] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity -[24May2025 20:24:22.492] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size -[24May2025 20:24:22.492] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size -[24May2025 20:24:22.493] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size -[24May2025 20:24:22.493] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size -[24May2025 20:24:22.494] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level -[24May2025 20:24:22.494] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level -[24May2025 20:24:22.494] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type -[24May2025 20:24:22.494] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type -[24May2025 20:24:22.495] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity -[24May2025 20:24:22.495] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity -[24May2025 20:24:22.495] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size -[24May2025 20:24:22.495] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size -[24May2025 20:24:22.495] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size -[24May2025 20:24:22.495] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size -[24May2025 20:24:22.496] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level -[24May2025 20:24:22.496] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level -[24May2025 20:24:22.496] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type -[24May2025 20:24:22.496] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type -[24May2025 20:24:22.497] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity -[24May2025 20:24:22.497] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity -[24May2025 20:24:22.497] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size -[24May2025 20:24:22.497] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size -[24May2025 20:24:22.497] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size -[24May2025 20:24:22.498] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size -[24May2025 20:24:22.498] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level -[24May2025 20:24:22.498] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level -[24May2025 20:24:22.498] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type -[24May2025 20:24:22.499] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type -[24May2025 20:24:22.499] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity -[24May2025 20:24:22.499] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity -[24May2025 20:24:22.499] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size -[24May2025 20:24:22.499] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size -[24May2025 20:24:22.500] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size -[24May2025 20:24:22.500] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size -[24May2025 20:24:22.506] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo -[24May2025 20:24:22.844] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 229 Datafixer optimizations took 822 milliseconds -[24May2025 20:24:25.303] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[24May2025 20:24:25.304] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@3fd2322d -[24May2025 20:24:25.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo -[24May2025 20:24:25.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo -[24May2025 20:24:25.431] [pool-8-thread-1/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). -[24May2025 20:24:25.432] [pool-8-thread-1/DEBUG] [mixin/]: Registering new injector for @SugarWrapper with com.llamalad7.mixinextras.sugar.impl.SugarWrapperInjectionInfo -[24May2025 20:24:25.432] [pool-8-thread-1/DEBUG] [mixin/]: Registering new injector for @FactoryRedirectWrapper with com.llamalad7.mixinextras.wrapper.factory.FactoryRedirectWrapperInjectionInfo -[24May2025 20:24:25.433] [pool-8-thread-1/DEBUG] [mixin/]: Mixing MappedRegistryAccessor from neoforge.mixins.json into net.minecraft.core.MappedRegistry -[24May2025 20:24:25.435] [pool-8-thread-1/DEBUG] [mixin/]: neoforge.mixins.json:MappedRegistryAccessor from mod neoforge: Class version 65 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[24May2025 20:24:25.991] [pool-8-thread-1/DEBUG] [mixin/]: Mixing BlockEntityTypeAccessor from neoforge.mixins.json into net.minecraft.world.level.block.entity.BlockEntityType -[24May2025 20:24:25.991] [pool-8-thread-1/DEBUG] [mixin/]: neoforge.mixins.json:BlockEntityTypeAccessor from mod neoforge: Class version 65 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[24May2025 20:24:28.501] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: -Dio.netty.noUnsafe: false -[24May2025 20:24:28.501] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: Java version: 21 -[24May2025 20:24:28.502] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available -[24May2025 20:24:28.502] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available -[24May2025 20:24:28.502] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available -[24May2025 20:24:28.502] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Buffer.address: available -[24May2025 20:24:28.503] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: direct buffer constructor: unavailable: Reflective setAccessible(true) disabled -[24May2025 20:24:28.503] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Bits.unaligned: available, true -[24May2025 20:24:28.504] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common -[24May2025 20:24:28.505] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.DirectByteBuffer.(long, {int,long}): unavailable -[24May2025 20:24:28.505] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: sun.misc.Unsafe: available -[24May2025 20:24:28.506] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: maxDirectMemory: 4009754624 bytes (maybe) -[24May2025 20:24:28.506] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.tmpdir: /tmp (java.io.tmpdir) -[24May2025 20:24:28.506] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model) -[24May2025 20:24:28.507] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes -[24May2025 20:24:28.507] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1 -[24May2025 20:24:28.508] [pool-8-thread-1/DEBUG] [io.netty.util.internal.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available -[24May2025 20:24:28.509] [pool-8-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.noPreferDirect: false -[24May2025 20:24:32.383] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] -[24May2025 20:24:32.386] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] -[24May2025 20:24:32.390] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] -[24May2025 20:24:32.392] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] -[24May2025 20:24:32.393] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] -[24May2025 20:24:32.601] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar%23172!/assets/.mcassetsroot' uses unexpected schema -[24May2025 20:24:32.602] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar%23172!/data/.mcassetsroot' uses unexpected schema -[24May2025 20:24:32.675] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD] -[24May2025 20:24:32.688] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev -[24May2025 20:24:32.858] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.3+5 -[24May2025 20:24:33.011] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[24May2025 20:24:33.011] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[24May2025 20:24:33.011] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[24May2025 20:24:33.011] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[24May2025 20:24:33.011] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size -[24May2025 20:24:33.012] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size -[24May2025 20:24:33.013] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size -[24May2025 20:24:33.014] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level -[24May2025 20:24:33.014] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level -[24May2025 20:24:33.014] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type -[24May2025 20:24:33.014] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type -[24May2025 20:24:33.014] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity -[24May2025 20:24:33.014] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity -[24May2025 20:24:33.014] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size -[24May2025 20:24:33.014] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size -[24May2025 20:24:33.015] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size -[24May2025 20:24:33.015] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size -[24May2025 20:24:33.015] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level -[24May2025 20:24:33.015] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level -[24May2025 20:24:33.015] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type -[24May2025 20:24:33.015] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type -[24May2025 20:24:33.015] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity -[24May2025 20:24:33.016] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity -[24May2025 20:24:33.016] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size -[24May2025 20:24:33.016] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size -[24May2025 20:24:33.016] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size -[24May2025 20:24:33.016] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size -[24May2025 20:24:33.017] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[24May2025 20:24:33.018] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[24May2025 20:24:33.018] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[24May2025 20:24:33.018] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[24May2025 20:24:33.019] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity -[24May2025 20:24:33.019] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level -[24May2025 20:24:33.020] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level -[24May2025 20:24:33.020] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type -[24May2025 20:24:33.020] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type -[24May2025 20:24:33.020] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity -[24May2025 20:24:33.020] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity -[24May2025 20:24:33.021] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size -[24May2025 20:24:33.021] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size -[24May2025 20:24:33.021] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size -[24May2025 20:24:33.021] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size -[24May2025 20:24:33.021] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level -[24May2025 20:24:33.022] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level -[24May2025 20:24:33.022] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type -[24May2025 20:24:33.022] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type -[24May2025 20:24:33.022] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity -[24May2025 20:24:33.022] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity -[24May2025 20:24:33.022] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size -[24May2025 20:24:33.022] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size -[24May2025 20:24:33.023] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size -[24May2025 20:24:33.023] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size -[24May2025 20:24:33.023] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level -[24May2025 20:24:33.023] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level -[24May2025 20:24:33.023] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type -[24May2025 20:24:33.023] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type -[24May2025 20:24:33.024] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity -[24May2025 20:24:33.024] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity -[24May2025 20:24:33.024] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size -[24May2025 20:24:33.024] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size -[24May2025 20:24:33.024] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size -[24May2025 20:24:33.024] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size -[24May2025 20:24:33.025] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level -[24May2025 20:24:33.025] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level -[24May2025 20:24:33.025] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type -[24May2025 20:24:33.025] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type -[24May2025 20:24:33.025] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity -[24May2025 20:24:33.025] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity -[24May2025 20:24:33.025] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size -[24May2025 20:24:33.026] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size -[24May2025 20:24:33.026] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size -[24May2025 20:24:33.026] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size -[24May2025 20:24:33.027] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[24May2025 20:24:33.028] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[24May2025 20:24:33.028] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[24May2025 20:24:33.028] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[24May2025 20:24:33.028] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity -[24May2025 20:24:33.029] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level -[24May2025 20:24:33.029] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level -[24May2025 20:24:33.029] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type -[24May2025 20:24:33.029] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type -[24May2025 20:24:33.030] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity -[24May2025 20:24:33.030] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity -[24May2025 20:24:33.030] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size -[24May2025 20:24:33.030] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size -[24May2025 20:24:33.031] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size -[24May2025 20:24:33.031] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size -[24May2025 20:24:33.031] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level -[24May2025 20:24:33.031] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level -[24May2025 20:24:33.032] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type -[24May2025 20:24:33.032] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type -[24May2025 20:24:33.032] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity -[24May2025 20:24:33.032] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity -[24May2025 20:24:33.032] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size -[24May2025 20:24:33.032] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size -[24May2025 20:24:33.033] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size -[24May2025 20:24:33.033] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size -[24May2025 20:24:33.033] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level -[24May2025 20:24:33.033] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level -[24May2025 20:24:33.033] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type -[24May2025 20:24:33.034] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type -[24May2025 20:24:33.034] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity -[24May2025 20:24:33.034] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity -[24May2025 20:24:33.034] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size -[24May2025 20:24:33.034] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size -[24May2025 20:24:33.034] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size -[24May2025 20:24:33.034] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size -[24May2025 20:24:33.034] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level -[24May2025 20:24:33.035] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level -[24May2025 20:24:33.035] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type -[24May2025 20:24:33.035] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type -[24May2025 20:24:33.035] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity -[24May2025 20:24:33.035] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity -[24May2025 20:24:33.035] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size -[24May2025 20:24:33.036] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size -[24May2025 20:24:33.036] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size -[24May2025 20:24:33.036] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size -[24May2025 20:24:33.037] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[24May2025 20:24:33.038] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[24May2025 20:24:33.038] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[24May2025 20:24:33.038] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[24May2025 20:24:33.038] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity -[24May2025 20:24:33.039] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level -[24May2025 20:24:33.039] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level -[24May2025 20:24:33.039] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type -[24May2025 20:24:33.039] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type -[24May2025 20:24:33.040] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity -[24May2025 20:24:33.040] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity -[24May2025 20:24:33.040] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size -[24May2025 20:24:33.040] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size -[24May2025 20:24:33.040] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size -[24May2025 20:24:33.040] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size -[24May2025 20:24:33.040] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size -[24May2025 20:24:33.041] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size -[24May2025 20:24:33.042] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level -[24May2025 20:24:33.042] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level -[24May2025 20:24:33.042] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type -[24May2025 20:24:33.042] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type -[24May2025 20:24:33.042] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity -[24May2025 20:24:33.042] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity -[24May2025 20:24:33.042] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size -[24May2025 20:24:33.042] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size -[24May2025 20:24:33.043] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size -[24May2025 20:24:33.044] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size -[24May2025 20:24:33.044] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size -[24May2025 20:24:33.045] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[24May2025 20:24:33.045] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[24May2025 20:24:33.045] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[24May2025 20:24:33.045] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[24May2025 20:24:33.045] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity -[24May2025 20:24:33.045] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level -[24May2025 20:24:33.045] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level -[24May2025 20:24:33.045] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type -[24May2025 20:24:33.046] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type -[24May2025 20:24:33.046] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity -[24May2025 20:24:33.046] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity -[24May2025 20:24:33.046] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size -[24May2025 20:24:33.046] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size -[24May2025 20:24:33.046] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size -[24May2025 20:24:33.046] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size -[24May2025 20:24:33.046] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size -[24May2025 20:24:33.047] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size -[24May2025 20:24:33.048] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size -[24May2025 20:24:33.049] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size -[24May2025 20:24:33.050] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size -[24May2025 20:24:33.051] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[24May2025 20:24:33.051] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[24May2025 20:24:33.051] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[24May2025 20:24:33.051] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[24May2025 20:24:33.051] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size -[24May2025 20:24:33.052] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size -[24May2025 20:24:33.053] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size -[24May2025 20:24:33.054] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size -[24May2025 20:24:33.055] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size -[24May2025 20:24:33.056] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size -[24May2025 20:24:33.057] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[24May2025 20:24:33.057] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[24May2025 20:24:33.057] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[24May2025 20:24:33.057] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[24May2025 20:24:33.057] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size -[24May2025 20:24:33.058] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size -[24May2025 20:24:33.059] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size -[24May2025 20:24:33.060] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size -[24May2025 20:24:33.061] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size -[24May2025 20:24:33.062] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size -[24May2025 20:24:33.063] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[24May2025 20:24:33.063] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[24May2025 20:24:33.063] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[24May2025 20:24:33.063] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[24May2025 20:24:33.063] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity -[24May2025 20:24:33.064] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level -[24May2025 20:24:33.064] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level -[24May2025 20:24:33.064] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type -[24May2025 20:24:33.064] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type -[24May2025 20:24:33.064] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type -[24May2025 20:24:33.065] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type -[24May2025 20:24:33.066] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity -[24May2025 20:24:33.066] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity -[24May2025 20:24:33.066] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size -[24May2025 20:24:33.066] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size -[24May2025 20:24:33.066] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size -[24May2025 20:24:33.066] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size -[24May2025 20:24:33.066] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level -[24May2025 20:24:33.066] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level -[24May2025 20:24:33.067] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level -[24May2025 20:24:33.068] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type -[24May2025 20:24:33.068] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type -[24May2025 20:24:33.068] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity -[24May2025 20:24:33.068] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity -[24May2025 20:24:33.068] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size -[24May2025 20:24:33.068] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size -[24May2025 20:24:33.068] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size -[24May2025 20:24:33.068] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size -[24May2025 20:24:33.069] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[24May2025 20:24:33.069] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[24May2025 20:24:33.070] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[24May2025 20:24:33.070] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[24May2025 20:24:33.070] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity -[24May2025 20:24:33.070] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level -[24May2025 20:24:33.070] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level -[24May2025 20:24:33.070] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type -[24May2025 20:24:33.070] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level -[24May2025 20:24:33.071] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level -[24May2025 20:24:33.072] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level -[24May2025 20:24:33.073] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level -[24May2025 20:24:33.074] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type -[24May2025 20:24:33.074] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type -[24May2025 20:24:33.074] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity -[24May2025 20:24:33.074] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity -[24May2025 20:24:33.074] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size -[24May2025 20:24:33.074] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size -[24May2025 20:24:33.074] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size -[24May2025 20:24:33.074] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size -[24May2025 20:24:33.075] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[24May2025 20:24:33.075] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[24May2025 20:24:33.076] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[24May2025 20:24:33.076] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[24May2025 20:24:33.076] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity -[24May2025 20:24:33.076] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size -[24May2025 20:24:33.077] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size -[24May2025 20:24:33.078] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level -[24May2025 20:24:33.079] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level -[24May2025 20:24:33.080] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type -[24May2025 20:24:33.080] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type -[24May2025 20:24:33.080] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity -[24May2025 20:24:33.080] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity -[24May2025 20:24:33.080] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size -[24May2025 20:24:33.080] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size -[24May2025 20:24:33.080] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size -[24May2025 20:24:33.080] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size -[24May2025 20:24:33.081] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[24May2025 20:24:33.081] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[24May2025 20:24:33.081] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[24May2025 20:24:33.081] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[24May2025 20:24:33.081] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity -[24May2025 20:24:33.082] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level -[24May2025 20:24:33.082] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level -[24May2025 20:24:33.082] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type -[24May2025 20:24:33.082] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type -[24May2025 20:24:33.082] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity -[24May2025 20:24:33.082] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity -[24May2025 20:24:33.082] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size -[24May2025 20:24:33.083] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size -[24May2025 20:24:33.083] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size -[24May2025 20:24:33.083] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size -[24May2025 20:24:33.083] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level -[24May2025 20:24:33.083] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level -[24May2025 20:24:33.084] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type -[24May2025 20:24:33.084] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type -[24May2025 20:24:33.084] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity -[24May2025 20:24:33.084] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity -[24May2025 20:24:33.084] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size -[24May2025 20:24:33.084] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size -[24May2025 20:24:33.084] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size -[24May2025 20:24:33.084] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size -[24May2025 20:24:33.085] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size -[24May2025 20:24:33.086] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size -[24May2025 20:24:33.088] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[24May2025 20:24:33.088] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[24May2025 20:24:33.088] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[24May2025 20:24:33.088] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[24May2025 20:24:33.088] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity -[24May2025 20:24:33.088] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level -[24May2025 20:24:33.088] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type -[24May2025 20:24:33.089] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size -[24May2025 20:24:33.090] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size -[24May2025 20:24:33.091] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size -[24May2025 20:24:33.092] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[24May2025 20:24:33.092] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[24May2025 20:24:33.093] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[24May2025 20:24:33.093] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[24May2025 20:24:33.093] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity -[24May2025 20:24:33.093] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level -[24May2025 20:24:33.093] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level -[24May2025 20:24:33.093] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type -[24May2025 20:24:33.093] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type -[24May2025 20:24:33.093] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type -[24May2025 20:24:33.094] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type -[24May2025 20:24:33.095] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type -[24May2025 20:24:33.096] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity -[24May2025 20:24:33.097] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity -[24May2025 20:24:33.097] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size -[24May2025 20:24:33.097] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size -[24May2025 20:24:33.097] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size -[24May2025 20:24:33.097] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size -[24May2025 20:24:33.098] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[24May2025 20:24:33.098] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[24May2025 20:24:33.099] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[24May2025 20:24:33.099] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[24May2025 20:24:33.099] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity -[24May2025 20:24:33.099] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size -[24May2025 20:24:33.100] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size -[24May2025 20:24:33.101] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size -[24May2025 20:24:33.102] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size -[24May2025 20:24:33.103] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level -[24May2025 20:24:33.103] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level -[24May2025 20:24:33.103] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type -[24May2025 20:24:33.103] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type -[24May2025 20:24:33.103] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity -[24May2025 20:24:33.103] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity -[24May2025 20:24:33.104] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size -[24May2025 20:24:33.104] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size -[24May2025 20:24:33.104] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size -[24May2025 20:24:33.104] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size -[24May2025 20:24:33.105] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[24May2025 20:24:33.105] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[24May2025 20:24:33.106] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[24May2025 20:24:33.106] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[24May2025 20:24:33.106] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity -[24May2025 20:24:33.106] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level -[24May2025 20:24:33.106] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level -[24May2025 20:24:33.106] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level -[24May2025 20:24:33.107] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type -[24May2025 20:24:33.108] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type -[24May2025 20:24:33.108] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity -[24May2025 20:24:33.108] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity -[24May2025 20:24:33.108] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size -[24May2025 20:24:33.108] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size -[24May2025 20:24:33.109] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size -[24May2025 20:24:33.109] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size -[24May2025 20:24:33.109] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level -[24May2025 20:24:33.109] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level -[24May2025 20:24:33.110] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type -[24May2025 20:24:33.110] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type -[24May2025 20:24:33.110] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity -[24May2025 20:24:33.110] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity -[24May2025 20:24:33.111] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size -[24May2025 20:24:33.111] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size -[24May2025 20:24:33.111] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size -[24May2025 20:24:33.111] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size -[24May2025 20:24:33.111] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level -[24May2025 20:24:33.111] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level -[24May2025 20:24:33.111] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type -[24May2025 20:24:33.112] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type -[24May2025 20:24:33.112] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity -[24May2025 20:24:33.112] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity -[24May2025 20:24:33.112] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size -[24May2025 20:24:33.112] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size -[24May2025 20:24:33.112] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size -[24May2025 20:24:33.112] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size -[24May2025 20:24:33.113] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[24May2025 20:24:33.114] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[24May2025 20:24:33.114] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[24May2025 20:24:33.114] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[24May2025 20:24:33.114] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity -[24May2025 20:24:33.114] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level -[24May2025 20:24:33.114] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level -[24May2025 20:24:33.115] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size -[24May2025 20:24:33.116] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size -[24May2025 20:24:33.117] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size -[24May2025 20:24:33.118] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size -[24May2025 20:24:33.119] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo -[24May2025 20:24:35.923] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[24May2025 20:24:35.962] [Render thread/DEBUG] [net.neoforged.fml.ModWorkManager/LOADING]: Using 16 threads for parallel mod-loading -[24May2025 20:24:35.971] [Render thread/DEBUG] [net.neoforged.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for [net.neoforged.neoforge.common.NeoForgeMod, net.neoforged.neoforge.client.ClientNeoForgeMod] -[24May2025 20:24:35.975] [Render thread/DEBUG] [net.neoforged.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for [net.mcreator.cawezsmantletostratus.CawezsMantleToStratusMod] -[24May2025 20:24:35.976] [Render thread/DEBUG] [net.neoforged.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for [mezz.jei.neoforge.JustEnoughItems] -[24May2025 20:24:35.989] [modloading-worker-0/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Config file jei-server.toml for jei tracking -[24May2025 20:24:35.991] [modloading-worker-0/DEBUG] [net.neoforged.neoforge.internal.versions.neoforge.NeoForgeVersion/CORE]: Found NeoForge version 21.1.92 -[24May2025 20:24:35.991] [modloading-worker-0/DEBUG] [net.neoforged.neoforge.internal.versions.neoforge.NeoForgeVersion/CORE]: Found FML version 4.0.34 -[24May2025 20:24:35.991] [modloading-worker-0/INFO] [net.neoforged.neoforge.common.NeoForgeMod/NEOFORGE-MOD]: NeoForge mod loading, version 21.1.92, for MC 1.21.1 -[24May2025 20:24:36.000] [modloading-worker-0/DEBUG] [mezz.jei.common.platform.Services/]: Loaded mezz.jei.neoforge.platform.PlatformHelper@777f00ce for service interface mezz.jei.common.platform.IPlatformHelper -[24May2025 20:24:36.000] [modloading-worker-0/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Config file neoforge-client.toml for neoforge tracking -[24May2025 20:24:36.000] [modloading-worker-0/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Config file neoforge-server.toml for neoforge tracking -[24May2025 20:24:36.000] [modloading-worker-0/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Config file neoforge-common.toml for neoforge tracking -[24May2025 20:24:36.019] [modloading-worker-0/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Loading config file: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-debug.ini -[24May2025 20:24:36.019] [modloading-worker-0/DEBUG] [mezz.jei.common.config.file.ConfigSchema/]: Localization has not loaded yet, waiting to save the config file until JEI starts. -[24May2025 20:24:36.021] [modloading-worker-0/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Loading config file: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-mod-id-format.ini -[24May2025 20:24:36.021] [modloading-worker-0/DEBUG] [mezz.jei.common.config.file.ConfigSchema/]: Localization has not loaded yet, waiting to save the config file until JEI starts. -[24May2025 20:24:36.023] [modloading-worker-0/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Loading config file: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-colors.ini -[24May2025 20:24:36.023] [modloading-worker-0/DEBUG] [mezz.jei.common.config.file.ConfigSchema/]: Localization has not loaded yet, waiting to save the config file until JEI starts. -[24May2025 20:24:36.027] [modloading-worker-0/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Loading config file: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-client.ini -[24May2025 20:24:36.027] [modloading-worker-0/DEBUG] [mezz.jei.common.config.file.ConfigSchema/]: Localization has not loaded yet, waiting to save the config file until JEI starts. -[24May2025 20:24:36.029] [modloading-worker-0/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager... -[24May2025 20:24:36.030] [modloading-worker-0/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending ConfigManager: jei:minecraft... -[24May2025 20:24:36.030] [modloading-worker-0/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending ConfigManager: jei:neoforge_gui... -[24May2025 20:24:36.030] [modloading-worker-0/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending ConfigManager: jei:debug... -[24May2025 20:24:36.030] [modloading-worker-0/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending ConfigManager: jei:gui... -[24May2025 20:24:36.030] [modloading-worker-0/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending ConfigManager: jei:internal... -[24May2025 20:24:36.031] [modloading-worker-0/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager took 984.1 μs -[24May2025 20:24:36.035] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for jei -[24May2025 20:24:36.036] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for neoforge -[24May2025 20:24:36.037] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.server.command.ConfigCommand to GAME -[24May2025 20:24:36.037] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.network.filters.GenericPacketSplitter to MOD -[24May2025 20:24:36.050] [modloading-worker-0/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkAccessible: true -[24May2025 20:24:36.050] [modloading-worker-0/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkBounds: true -[24May2025 20:24:36.051] [modloading-worker-0/DEBUG] [io.netty.util.ResourceLeakDetectorFactory/]: Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@2b9c1842 -[24May2025 20:24:36.056] [modloading-worker-0/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 -[24May2025 20:24:36.056] [modloading-worker-0/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numHeapArenas: 32 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numDirectArenas: 32 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.pageSize: 8192 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxOrder: 9 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.chunkSize: 4194304 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.smallCacheSize: 256 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.normalCacheSize: 64 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedBufferCapacity: 32768 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimInterval: 8192 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimIntervalMillis: 0 -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.useCacheForAllThreads: false -[24May2025 20:24:36.057] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 -[24May2025 20:24:36.063] [modloading-worker-0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.allocator.type: pooled -[24May2025 20:24:36.063] [modloading-worker-0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.threadLocalDirectBufferSize: 0 -[24May2025 20:24:36.063] [modloading-worker-0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.maxThreadLocalCharBufferSize: 16384 -[24May2025 20:24:36.068] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.network.NetworkInitialization to MOD -[24May2025 20:24:36.068] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.network.ConfigurationInitialization to MOD -[24May2025 20:24:36.070] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.common.MonsterRoomHooks to GAME -[24May2025 20:24:36.070] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.common.DeferredSpawnEggItem$CommonHandler to MOD -[24May2025 20:24:36.071] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.common.DeferredSpawnEggItem$ColorRegisterHandler to MOD -[24May2025 20:24:36.071] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.client.model.data.ModelDataManager to GAME -[24May2025 20:24:36.074] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.client.ParticleBoundsDebugRenderer to GAME -[24May2025 20:24:36.075] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.client.ClientHooks$ClientEvents to MOD -[24May2025 20:24:36.077] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.client.BlockEntityRenderBoundsDebugRenderer to GAME -[24May2025 20:24:36.077] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.attachment.AttachmentInternals to GAME -[24May2025 20:24:36.111] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for cawezs_mantle_to_stratus -[24May2025 20:24:36.111] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModEntities to MOD -[24May2025 20:24:36.112] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModFluids$FluidsClientSideHandler to MOD -[24May2025 20:24:36.112] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModItems$ItemsClientSideHandler to MOD -[24May2025 20:24:36.113] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModEntityRenderers to MOD -[24May2025 20:24:36.113] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModModels to MOD -[24May2025 20:24:36.114] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.fluid.types.EtherialLiquidFluidType to MOD -[24May2025 20:24:36.115] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.item.HeavenArmorItem to MOD -[24May2025 20:24:36.116] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.item.BuriedArmorItem to MOD -[24May2025 20:24:36.116] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.features.treedecorators.CliffsFruitDecorator to MOD -[24May2025 20:24:36.117] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.features.treedecorators.CliffsTrunkDecorator to MOD -[24May2025 20:24:36.118] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.features.treedecorators.CliffsLeaveDecorator to MOD -[24May2025 20:24:36.118] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.dimension.DepthsDimension$DepthsSpecialEffectsHandler to MOD -[24May2025 20:24:36.119] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.dimension.InvertedDimension$InvertedSpecialEffectsHandler to MOD -[24May2025 20:24:36.120] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.dimension.HeightsDimension$HeightsSpecialEffectsHandler to MOD -[24May2025 20:24:36.120] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.procedures.AdvAceerProcProcedure to GAME -[24May2025 20:24:36.121] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.procedures.DetectCDCProcedure to GAME -[24May2025 20:24:36.121] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.network.CawezsMantleToStratusModVariables to MOD -[24May2025 20:24:36.122] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.network.CawezsMantleToStratusModVariables$EventBusVariableHandlers to GAME -[24May2025 20:24:36.210] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loading configs type CLIENT -[24May2025 20:24:36.217] [modloading-sync-worker/DEBUG] [net.neoforged.neoforge.common.NeoForgeConfig/FORGEMOD]: Loaded NeoForge config file neoforge-client.toml -[24May2025 20:24:36.217] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loaded TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-client.toml -[24May2025 20:24:36.219] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Watching TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-client.toml for changes -[24May2025 20:24:36.219] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loading configs type COMMON -[24May2025 20:24:36.220] [modloading-sync-worker/DEBUG] [net.neoforged.neoforge.common.NeoForgeConfig/FORGEMOD]: Loaded NeoForge config file neoforge-common.toml -[24May2025 20:24:36.220] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loaded TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-common.toml -[24May2025 20:24:36.220] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Watching TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-common.toml for changes -[24May2025 20:24:36.489] [Render thread/INFO] [net.neoforged.neoforge.gametest.GameTestHooks/]: Enabled Gametest Namespaces: [] -[24May2025 20:24:36.654] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla, mod_resources, mod/neoforge, mod/cawezs_mantle_to_stratus, mod/jei -[24May2025 20:24:36.716] [Render thread/DEBUG] [net.neoforged.fml.DeferredWorkQueue/LOADING]: Dispatching synchronous work for work queue Common setup: 1 jobs -[24May2025 20:24:36.722] [Render thread/DEBUG] [net.neoforged.fml.DeferredWorkQueue/LOADING]: Synchronous work queue completed in 3.418 ms -[24May2025 20:24:36.745] [Worker-Main-13/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.1.05.hex, loading -[24May2025 20:24:36.918] [Worker-Main-2/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_jp_patch-15.1.05.hex, loading -[24May2025 20:24:37.088] [Render thread/DEBUG] [net.neoforged.fml.DeferredWorkQueue/LOADING]: Dispatching synchronous work for work queue Sided setup: 1 jobs -[24May2025 20:24:37.201] [Render thread/DEBUG] [net.neoforged.fml.DeferredWorkQueue/LOADING]: Synchronous work queue completed in 111.7 ms -[24May2025 20:24:40.636] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play -[24May2025 20:24:40.637] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break -[24May2025 20:24:40.963] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device Family 17h/19h HD Audio Controller Analog Stereo -[24May2025 20:24:40.964] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started -[24May2025 20:24:41.180] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x2 minecraft:textures/atlas/blocks.png-atlas -[24May2025 20:24:41.213] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/signs.png-atlas -[24May2025 20:24:41.214] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/shield_patterns.png-atlas -[24May2025 20:24:41.217] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/banner_patterns.png-atlas -[24May2025 20:24:41.220] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x2 minecraft:textures/atlas/armor_trims.png-atlas -[24May2025 20:24:41.229] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/chest.png-atlas -[24May2025 20:24:41.229] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x2 minecraft:textures/atlas/decorated_pot.png-atlas -[24May2025 20:24:41.230] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/beds.png-atlas -[24May2025 20:24:41.231] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/shulker_boxes.png-atlas -[24May2025 20:24:41.364] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x0 minecraft:textures/atlas/particles.png-atlas -[24May2025 20:24:41.369] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x0 minecraft:textures/atlas/paintings.png-atlas -[24May2025 20:24:41.370] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas -[24May2025 20:24:41.371] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 64x64x0 minecraft:textures/atlas/map_decorations.png-atlas -[24May2025 20:24:41.371] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x0 minecraft:textures/atlas/gui.png-atlas -[24May2025 20:24:41.407] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. -[24May2025 20:24:41.507] [Render thread/INFO] [net.neoforged.neoforge.client.entity.animation.json.AnimationLoader/]: Loaded 0 entity animations -[24May2025 20:24:41.507] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 jei:textures/atlas/gui.png-atlas -[24May2025 20:24:45.224] [Render thread/ERROR] [net.minecraft.world.level.biome.MobSpawnSettings/]: Spawn data: Not a JSON object: null -[24May2025 20:24:46.423] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 1346 recipes -[24May2025 20:24:46.676] [Render thread/INFO] [net.minecraft.advancements.AdvancementTree/]: Loaded 1411 advancements -[24May2025 20:24:47.421] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver received class net.neoforged.neoforge.event.TagsUpdatedEvent too early, ignoring -[24May2025 20:24:47.465] [Render thread/DEBUG] [net.neoforged.neoforge.common.CommonHooks/WP]: Gathered mod list to write to world save New World -[24May2025 20:24:47.521] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.21.1 -[24May2025 20:24:47.522] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair -[24May2025 20:24:47.643] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loading configs type SERVER -[24May2025 20:24:47.645] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loaded TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/jei-server.toml -[24May2025 20:24:47.646] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Watching TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/jei-server.toml for changes -[24May2025 20:24:47.647] [Server thread/DEBUG] [net.neoforged.neoforge.common.NeoForgeConfig/FORGEMOD]: Loaded NeoForge config file neoforge-server.toml -[24May2025 20:24:47.647] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loaded TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-server.toml -[24May2025 20:24:47.648] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Watching TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-server.toml for changes -[24May2025 20:24:47.666] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pufferfish that was registered with WATER_AMBIENT mob category but was added under CREATURE mob category for cawezs_mantle_to_stratus:buriedwetlandcaves biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.668] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pig that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:cliffs biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.673] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pig that was registered with CREATURE mob category but was added under AMBIENT mob category for cawezs_mantle_to_stratus:crystals biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.705] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:skeleton_horse that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:overgrowncaves biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.715] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:sheep that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:trees biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.724] [Server thread/ERROR] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: The following entities have not registered to the RegisterSpawnPlacementsEvent, but a spawn entry was found. This will mean that the entity doesn't have restrictions on its spawn location, please register a spawn placement for the entity, you can register with NO_RESTRICTIONS if you don't want any restrictions. - - minecraft:allay +[24May2025 23:21:40.164] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file neoforge-21.1.92.jar with {minecraft} mods - versions {1.21.1} +[24May2025 23:21:40.166] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] +[24May2025 23:21:40.167] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/cow/cawezs_mantle_to_stratus/build/classes/java/main +[24May2025 23:21:40.168] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {cawezs_mantle_to_stratus} mods - versions {1.0.0} +[24May2025 23:21:40.168] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /home/cow/cawezs_mantle_to_stratus/build/classes/java/main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[4,)]] +[24May2025 23:21:40.169] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar +[24May2025 23:21:40.170] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file neoforge-21.1.92.jar with {neoforge} mods - versions {21.1.92} +[24May2025 23:21:40.170] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[3,]]] +[24May2025 23:21:40.170] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFile/LOADING]: Found mixin config neoforge.mixins.json +[24May2025 23:21:40.170] [main/DEBUG] [net.neoforged.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file with languages [] +[24May2025 23:21:40.171] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml +[24May2025 23:21:40.179] [main/DEBUG] [net.neoforged.fml.util.ServiceLoaderUtil/CORE]: Found 3 implementations of IModLanguageLoader: +[24May2025 23:21:40.180] [main/DEBUG] [net.neoforged.fml.util.ServiceLoaderUtil/CORE]: net.neoforged.fml.javafmlmod.FMLJavaModLanguageProvider from loader-4.0.34.jar +[24May2025 23:21:40.180] [main/DEBUG] [net.neoforged.fml.util.ServiceLoaderUtil/CORE]: net.neoforged.fml.lowcodemod.LowCodeModLanguageProvider from loader-4.0.34.jar +[24May2025 23:21:40.180] [main/DEBUG] [net.neoforged.fml.util.ServiceLoaderUtil/CORE]: net.neoforged.fml.mclanguageprovider.MinecraftModLanguageProvider from loader-4.0.34.jar +[24May2025 23:21:40.180] [main/DEBUG] [net.neoforged.fml.loading.LanguageProviderLoader/CORE]: Found language provider javafml, version 4.0.34 +[24May2025 23:21:40.181] [main/DEBUG] [net.neoforged.fml.loading.LanguageProviderLoader/CORE]: Found language provider lowcodefml, version 4.0.34 +[24May2025 23:21:40.181] [main/DEBUG] [net.neoforged.fml.loading.LanguageProviderLoader/CORE]: Found language provider minecraft, version 4.0.34 +[24May2025 23:21:40.185] [main/DEBUG] [net.neoforged.fml.loading.ModSorter/]: Configured system mods: [minecraft, neoforge] +[24May2025 23:21:40.185] [main/DEBUG] [net.neoforged.fml.loading.ModSorter/]: Found system mod: minecraft +[24May2025 23:21:40.186] [main/DEBUG] [net.neoforged.fml.loading.ModSorter/]: Found system mod: neoforge +[24May2025 23:21:40.187] [main/DEBUG] [net.neoforged.fml.loading.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional) +[24May2025 23:21:40.187] [main/DEBUG] [net.neoforged.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) +[24May2025 23:21:40.293] [main/DEBUG] [mixin/]: Adding mixin platform agents for container net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d +[24May2025 23:21:40.293] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d +[24May2025 23:21:40.294] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d +[24May2025 23:21:40.294] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d +[24May2025 23:21:40.294] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d +[24May2025 23:21:40.294] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d +[24May2025 23:21:40.294] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent accepted container net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d +[24May2025 23:21:40.299] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers +[24May2025 23:21:40.300] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin +[24May2025 23:21:40.300] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin +[24May2025 23:21:40.301] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml +[24May2025 23:21:40.301] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/LOADING]: Loading coremod transformers +[24May2025 23:21:40.301] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Not loading coremod script-engine since no mod requested it +[24May2025 23:21:40.303] [main/DEBUG] [net.neoforged.fml.util.ServiceLoaderUtil/CORE]: Found 1 implementations of ICoreMod: +[24May2025 23:21:40.304] [main/DEBUG] [net.neoforged.fml.util.ServiceLoaderUtil/CORE]: net.neoforged.neoforge.coremods.NeoForgeCoreMod from neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar +[24May2025 23:21:40.314] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Adding [Target[className=net.minecraft.world.level.biome.Biome, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa]] transformer from core-mod net.neoforged.neoforge.coremods.NeoForgeCoreMod@dc7b462 in neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar +[24May2025 23:21:40.315] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Adding [Target[className=net.minecraft.world.level.levelgen.structure.Structure, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa]] transformer from core-mod net.neoforged.neoforge.coremods.NeoForgeCoreMod@dc7b462 in neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar +[24May2025 23:21:40.315] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Adding [Target[className=net.minecraft.world.level.block.FlowerPotBlock, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa]] transformer from core-mod net.neoforged.neoforge.coremods.NeoForgeCoreMod@dc7b462 in neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar +[24May2025 23:21:40.315] [main/DEBUG] [net.neoforged.fml.loading.FMLServiceProvider/CORE]: Adding [Target[className=net/minecraft/server/commands/RaidCommand, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/level/levelgen/PatrolSpawner, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/monster/ZombieVillager, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/ai/village/VillageSiege, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/level/NaturalSpawner, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/server/commands/SummonCommand, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/monster/Strider, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/npc/CatSpawner, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/EntityType, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/animal/horse/SkeletonTrapGoal, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/level/levelgen/PhantomSpawner, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/npc/Villager, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/monster/Spider, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/raid/Raid, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/monster/Zombie, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/entity/animal/frog/Tadpole, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa], Target[className=net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece, elementName=, elementDescriptor=, targetType=cpw.mods.modlauncher.api.TargetType@72758afa]] transformer from core-mod net.neoforged.neoforge.coremods.NeoForgeCoreMod@dc7b462 in neoforge-21.1.92.jar > neoforge-coremods-21.1.92.jar +[24May2025 23:21:40.318] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.ReplaceFieldWithGetterAccess@58e92c23 to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/biome/Biome;} {} {V} +[24May2025 23:21:40.320] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.ReplaceFieldWithGetterAccess@5782d777 to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} +[24May2025 23:21:40.320] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.ReplaceFieldWithGetterAccess@4f824872 to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} +[24May2025 23:21:40.321] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/server/commands/RaidCommand;} {} {V} +[24May2025 23:21:40.321] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} +[24May2025 23:21:40.321] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} +[24May2025 23:21:40.321] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} +[24May2025 23:21:40.321] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} +[24May2025 23:21:40.322] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} +[24May2025 23:21:40.322] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} +[24May2025 23:21:40.322] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/server/commands/SummonCommand;} {} {V} +[24May2025 23:21:40.322] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} +[24May2025 23:21:40.322] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/monster/Strider;} {} {V} +[24May2025 23:21:40.322] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/EntityType;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/npc/Villager;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/monster/Spider;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/raid/Raid;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} +[24May2025 23:21:40.323] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} +[24May2025 23:21:40.324] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.neoforged.neoforge.coremods.MethodRedirector@b016b4e to Target : cpw.mods.modlauncher.api.TargetType@72758afa {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} +[24May2025 23:21:40.324] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml +[24May2025 23:21:41.397] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[24May2025 23:21:41.398] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d] +[24May2025 23:21:41.399] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[FMLMixinPlatformAgent:null] +[24May2025 23:21:41.541] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[24May2025 23:21:41.542] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixin_synthetic) +[24May2025 23:21:41.543] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixin_synthetic) +[24May2025 23:21:41.543] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixin_synthetic) +[24May2025 23:21:41.543] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixin_synthetic) +[24May2025 23:21:41.544] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixin_synthetic) +[24May2025 23:21:41.544] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(mixin_synthetic) +[24May2025 23:21:41.544] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(mixin_synthetic) +[24May2025 23:21:41.544] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixin_synthetic)] +[24May2025 23:21:41.545] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) +[24May2025 23:21:41.545] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) +[24May2025 23:21:41.546] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) +[24May2025 23:21:41.547] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) +[24May2025 23:21:41.547] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) +[24May2025 23:21:41.547] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(minecraft) +[24May2025 23:21:41.547] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(minecraft) +[24May2025 23:21:41.548] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[24May2025 23:21:41.549] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(cawezs_mantle_to_stratus) +[24May2025 23:21:41.550] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(cawezs_mantle_to_stratus) +[24May2025 23:21:41.550] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(cawezs_mantle_to_stratus) +[24May2025 23:21:41.551] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(cawezs_mantle_to_stratus) +[24May2025 23:21:41.551] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(cawezs_mantle_to_stratus) +[24May2025 23:21:41.552] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(cawezs_mantle_to_stratus) +[24May2025 23:21:41.552] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(cawezs_mantle_to_stratus) +[24May2025 23:21:41.552] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cawezs_mantle_to_stratus)] +[24May2025 23:21:41.553] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixinextras.neoforge) +[24May2025 23:21:41.553] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixinextras.neoforge) +[24May2025 23:21:41.554] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixinextras.neoforge) +[24May2025 23:21:41.554] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixinextras.neoforge) +[24May2025 23:21:41.554] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixinextras.neoforge) +[24May2025 23:21:41.555] [main/DEBUG] [mixin/]: Instancing new FMLMixinPlatformAgent for SecureJarResource(mixinextras.neoforge) +[24May2025 23:21:41.555] [main/DEBUG] [mixin/]: FMLMixinPlatformAgent rejected container SecureJarResource(mixinextras.neoforge) +[24May2025 23:21:41.555] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras.neoforge)] +[24May2025 23:21:41.556] [main/DEBUG] [mixin/]: Registering mixin config: mixinextras.init.mixins.json source=SecureJarResource(mixinextras.neoforge) +[24May2025 23:21:41.562] [main/DEBUG] [mixin/]: inject() running with 6 agents +[24May2025 23:21:41.563] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[24May2025 23:21:41.564] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:net.neoforged.fml.loading.mixin.FMLMixinContainerHandle@acf859d] +[24May2025 23:21:41.564] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[FMLMixinPlatformAgent:null] +[24May2025 23:21:41.565] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixin_synthetic)] +[24May2025 23:21:41.565] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[24May2025 23:21:41.565] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cawezs_mantle_to_stratus)] +[24May2025 23:21:41.566] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras.neoforge)] +[24May2025 23:21:41.567] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, 21.1.92, --gameDir, ., --assetsDir, /home/cow/.mcreator/gradle/caches/neoformruntime/assets, --assetIndex, 17] +[24May2025 23:21:41.682] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] +[24May2025 23:21:41.683] [main/DEBUG] [mixin/]: Selecting config neoforge.mixins.json +[24May2025 23:21:41.693] [main/DEBUG] [mixin/]: Selecting config mixinextras.init.mixins.json +[24May2025 23:21:41.803] [main/DEBUG] [MixinExtras|Service/]: com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1) is taking over from null +[24May2025 23:21:41.912] [main/DEBUG] [mixin/]: Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo +[24May2025 23:21:41.917] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo +[24May2025 23:21:41.920] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo +[24May2025 23:21:41.925] [main/DEBUG] [mixin/]: Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo +[24May2025 23:21:41.930] [main/DEBUG] [mixin/]: Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo +[24May2025 23:21:41.934] [main/DEBUG] [mixin/]: Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo +[24May2025 23:21:41.995] [main/DEBUG] [mixin/]: Preparing neoforge.mixins.json (2) +[24May2025 23:21:42.173] [main/DEBUG] [mixin/]: Preparing mixinextras.init.mixins.json (0) +[24May2025 23:21:42.186] [main/DEBUG] [mixin/]: Prepared 2 mixins in 0.501 sec (250.5ms avg) (0ms load, 0ms transform, 0ms plugin) +[24May2025 23:21:42.722] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework +[24May2025 23:21:42.728] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple +[24May2025 23:21:42.729] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 +[24May2025 23:21:44.857] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@27a7ef08 +[24May2025 23:21:45.019] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[24May2025 23:21:45.021] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[24May2025 23:21:45.032] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/stat +[24May2025 23:21:45.051] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[24May2025 23:21:45.052] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[24May2025 23:21:45.052] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[24May2025 23:21:45.052] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[24May2025 23:21:45.053] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity +[24May2025 23:21:45.057] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level +[24May2025 23:21:45.057] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level +[24May2025 23:21:45.058] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type +[24May2025 23:21:45.058] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type +[24May2025 23:21:45.059] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity +[24May2025 23:21:45.060] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity +[24May2025 23:21:45.060] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size +[24May2025 23:21:45.061] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size +[24May2025 23:21:45.061] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size +[24May2025 23:21:45.061] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size +[24May2025 23:21:45.063] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level +[24May2025 23:21:45.063] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level +[24May2025 23:21:45.063] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type +[24May2025 23:21:45.063] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type +[24May2025 23:21:45.064] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity +[24May2025 23:21:45.064] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity +[24May2025 23:21:45.064] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size +[24May2025 23:21:45.064] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size +[24May2025 23:21:45.064] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size +[24May2025 23:21:45.064] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size +[24May2025 23:21:45.065] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level +[24May2025 23:21:45.065] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level +[24May2025 23:21:45.065] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type +[24May2025 23:21:45.065] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type +[24May2025 23:21:45.066] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity +[24May2025 23:21:45.066] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity +[24May2025 23:21:45.066] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size +[24May2025 23:21:45.066] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size +[24May2025 23:21:45.066] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size +[24May2025 23:21:45.067] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size +[24May2025 23:21:45.067] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level +[24May2025 23:21:45.067] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level +[24May2025 23:21:45.067] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type +[24May2025 23:21:45.067] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type +[24May2025 23:21:45.068] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity +[24May2025 23:21:45.068] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity +[24May2025 23:21:45.068] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size +[24May2025 23:21:45.069] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size +[24May2025 23:21:45.069] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size +[24May2025 23:21:45.069] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size +[24May2025 23:21:45.073] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[24May2025 23:21:45.073] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[24May2025 23:21:45.074] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[24May2025 23:21:45.074] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[24May2025 23:21:45.075] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity +[24May2025 23:21:45.076] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level +[24May2025 23:21:45.076] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level +[24May2025 23:21:45.077] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type +[24May2025 23:21:45.077] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type +[24May2025 23:21:45.077] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity +[24May2025 23:21:45.078] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity +[24May2025 23:21:45.079] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size +[24May2025 23:21:45.079] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size +[24May2025 23:21:45.079] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size +[24May2025 23:21:45.080] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size +[24May2025 23:21:45.080] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level +[24May2025 23:21:45.081] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level +[24May2025 23:21:45.082] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type +[24May2025 23:21:45.082] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type +[24May2025 23:21:45.082] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity +[24May2025 23:21:45.083] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity +[24May2025 23:21:45.083] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size +[24May2025 23:21:45.083] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size +[24May2025 23:21:45.084] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size +[24May2025 23:21:45.084] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size +[24May2025 23:21:45.084] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level +[24May2025 23:21:45.085] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level +[24May2025 23:21:45.085] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type +[24May2025 23:21:45.085] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type +[24May2025 23:21:45.086] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity +[24May2025 23:21:45.086] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity +[24May2025 23:21:45.086] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size +[24May2025 23:21:45.086] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size +[24May2025 23:21:45.087] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size +[24May2025 23:21:45.087] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size +[24May2025 23:21:45.088] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level +[24May2025 23:21:45.088] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level +[24May2025 23:21:45.088] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type +[24May2025 23:21:45.088] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type +[24May2025 23:21:45.089] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity +[24May2025 23:21:45.089] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity +[24May2025 23:21:45.090] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size +[24May2025 23:21:45.090] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size +[24May2025 23:21:45.091] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size +[24May2025 23:21:45.091] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size +[24May2025 23:21:45.093] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[24May2025 23:21:45.094] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[24May2025 23:21:45.095] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[24May2025 23:21:45.095] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[24May2025 23:21:45.096] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity +[24May2025 23:21:45.096] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level +[24May2025 23:21:45.097] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level +[24May2025 23:21:45.097] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type +[24May2025 23:21:45.098] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type +[24May2025 23:21:45.098] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity +[24May2025 23:21:45.099] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity +[24May2025 23:21:45.099] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size +[24May2025 23:21:45.099] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size +[24May2025 23:21:45.100] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size +[24May2025 23:21:45.100] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size +[24May2025 23:21:45.101] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level +[24May2025 23:21:45.102] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level +[24May2025 23:21:45.102] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type +[24May2025 23:21:45.103] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type +[24May2025 23:21:45.103] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity +[24May2025 23:21:45.103] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity +[24May2025 23:21:45.104] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size +[24May2025 23:21:45.104] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size +[24May2025 23:21:45.104] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size +[24May2025 23:21:45.104] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size +[24May2025 23:21:45.105] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level +[24May2025 23:21:45.105] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level +[24May2025 23:21:45.105] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type +[24May2025 23:21:45.105] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type +[24May2025 23:21:45.106] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity +[24May2025 23:21:45.106] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity +[24May2025 23:21:45.106] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size +[24May2025 23:21:45.106] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size +[24May2025 23:21:45.107] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size +[24May2025 23:21:45.107] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size +[24May2025 23:21:45.107] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level +[24May2025 23:21:45.107] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level +[24May2025 23:21:45.108] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type +[24May2025 23:21:45.108] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type +[24May2025 23:21:45.108] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity +[24May2025 23:21:45.108] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity +[24May2025 23:21:45.109] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size +[24May2025 23:21:45.109] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size +[24May2025 23:21:45.109] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size +[24May2025 23:21:45.110] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size +[24May2025 23:21:45.112] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[24May2025 23:21:45.112] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[24May2025 23:21:45.113] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[24May2025 23:21:45.113] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[24May2025 23:21:45.114] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity +[24May2025 23:21:45.115] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level +[24May2025 23:21:45.115] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level +[24May2025 23:21:45.115] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type +[24May2025 23:21:45.116] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type +[24May2025 23:21:45.116] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity +[24May2025 23:21:45.116] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity +[24May2025 23:21:45.117] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size +[24May2025 23:21:45.117] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size +[24May2025 23:21:45.117] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size +[24May2025 23:21:45.118] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size +[24May2025 23:21:45.118] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level +[24May2025 23:21:45.118] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level +[24May2025 23:21:45.119] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type +[24May2025 23:21:45.119] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type +[24May2025 23:21:45.119] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity +[24May2025 23:21:45.120] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity +[24May2025 23:21:45.120] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size +[24May2025 23:21:45.120] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size +[24May2025 23:21:45.120] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size +[24May2025 23:21:45.121] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size +[24May2025 23:21:45.121] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level +[24May2025 23:21:45.121] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level +[24May2025 23:21:45.122] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type +[24May2025 23:21:45.122] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type +[24May2025 23:21:45.122] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity +[24May2025 23:21:45.122] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity +[24May2025 23:21:45.123] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size +[24May2025 23:21:45.123] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size +[24May2025 23:21:45.123] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size +[24May2025 23:21:45.124] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size +[24May2025 23:21:45.124] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level +[24May2025 23:21:45.124] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level +[24May2025 23:21:45.125] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type +[24May2025 23:21:45.125] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type +[24May2025 23:21:45.125] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity +[24May2025 23:21:45.125] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity +[24May2025 23:21:45.126] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size +[24May2025 23:21:45.126] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size +[24May2025 23:21:45.126] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size +[24May2025 23:21:45.127] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size +[24May2025 23:21:45.129] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[24May2025 23:21:45.129] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[24May2025 23:21:45.130] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[24May2025 23:21:45.130] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[24May2025 23:21:45.130] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity +[24May2025 23:21:45.131] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level +[24May2025 23:21:45.131] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level +[24May2025 23:21:45.132] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type +[24May2025 23:21:45.132] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type +[24May2025 23:21:45.133] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity +[24May2025 23:21:45.133] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity +[24May2025 23:21:45.133] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size +[24May2025 23:21:45.134] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size +[24May2025 23:21:45.134] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size +[24May2025 23:21:45.134] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size +[24May2025 23:21:45.134] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level +[24May2025 23:21:45.135] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level +[24May2025 23:21:45.135] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type +[24May2025 23:21:45.135] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type +[24May2025 23:21:45.135] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity +[24May2025 23:21:45.136] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity +[24May2025 23:21:45.136] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size +[24May2025 23:21:45.136] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size +[24May2025 23:21:45.136] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size +[24May2025 23:21:45.137] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size +[24May2025 23:21:45.137] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level +[24May2025 23:21:45.137] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level +[24May2025 23:21:45.137] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type +[24May2025 23:21:45.138] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type +[24May2025 23:21:45.138] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity +[24May2025 23:21:45.138] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity +[24May2025 23:21:45.138] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size +[24May2025 23:21:45.139] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size +[24May2025 23:21:45.139] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size +[24May2025 23:21:45.140] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size +[24May2025 23:21:45.141] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level +[24May2025 23:21:45.141] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level +[24May2025 23:21:45.142] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type +[24May2025 23:21:45.142] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type +[24May2025 23:21:45.143] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity +[24May2025 23:21:45.144] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity +[24May2025 23:21:45.144] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size +[24May2025 23:21:45.145] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size +[24May2025 23:21:45.145] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size +[24May2025 23:21:45.145] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size +[24May2025 23:21:45.148] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[24May2025 23:21:45.148] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[24May2025 23:21:45.148] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[24May2025 23:21:45.149] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[24May2025 23:21:45.149] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity +[24May2025 23:21:45.150] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level +[24May2025 23:21:45.150] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level +[24May2025 23:21:45.150] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type +[24May2025 23:21:45.150] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type +[24May2025 23:21:45.151] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity +[24May2025 23:21:45.151] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity +[24May2025 23:21:45.151] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size +[24May2025 23:21:45.151] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size +[24May2025 23:21:45.151] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size +[24May2025 23:21:45.152] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size +[24May2025 23:21:45.152] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level +[24May2025 23:21:45.152] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level +[24May2025 23:21:45.152] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type +[24May2025 23:21:45.153] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type +[24May2025 23:21:45.153] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity +[24May2025 23:21:45.154] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity +[24May2025 23:21:45.154] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size +[24May2025 23:21:45.154] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size +[24May2025 23:21:45.154] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size +[24May2025 23:21:45.154] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size +[24May2025 23:21:45.155] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level +[24May2025 23:21:45.155] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level +[24May2025 23:21:45.156] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type +[24May2025 23:21:45.156] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type +[24May2025 23:21:45.157] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity +[24May2025 23:21:45.157] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity +[24May2025 23:21:45.157] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size +[24May2025 23:21:45.158] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size +[24May2025 23:21:45.158] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size +[24May2025 23:21:45.158] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size +[24May2025 23:21:45.158] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level +[24May2025 23:21:45.159] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level +[24May2025 23:21:45.159] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type +[24May2025 23:21:45.159] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type +[24May2025 23:21:45.160] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity +[24May2025 23:21:45.160] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity +[24May2025 23:21:45.160] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size +[24May2025 23:21:45.160] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size +[24May2025 23:21:45.160] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size +[24May2025 23:21:45.161] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size +[24May2025 23:21:45.162] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[24May2025 23:21:45.163] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[24May2025 23:21:45.163] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[24May2025 23:21:45.163] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[24May2025 23:21:45.164] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity +[24May2025 23:21:45.164] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level +[24May2025 23:21:45.164] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level +[24May2025 23:21:45.165] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type +[24May2025 23:21:45.165] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type +[24May2025 23:21:45.165] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity +[24May2025 23:21:45.165] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity +[24May2025 23:21:45.166] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size +[24May2025 23:21:45.166] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size +[24May2025 23:21:45.166] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size +[24May2025 23:21:45.166] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size +[24May2025 23:21:45.167] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level +[24May2025 23:21:45.167] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level +[24May2025 23:21:45.167] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type +[24May2025 23:21:45.167] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type +[24May2025 23:21:45.168] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity +[24May2025 23:21:45.168] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity +[24May2025 23:21:45.168] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size +[24May2025 23:21:45.168] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size +[24May2025 23:21:45.169] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size +[24May2025 23:21:45.169] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size +[24May2025 23:21:45.169] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level +[24May2025 23:21:45.169] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level +[24May2025 23:21:45.169] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type +[24May2025 23:21:45.170] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type +[24May2025 23:21:45.170] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity +[24May2025 23:21:45.170] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity +[24May2025 23:21:45.171] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size +[24May2025 23:21:45.171] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size +[24May2025 23:21:45.171] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size +[24May2025 23:21:45.172] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size +[24May2025 23:21:45.172] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level +[24May2025 23:21:45.172] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level +[24May2025 23:21:45.172] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type +[24May2025 23:21:45.172] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type +[24May2025 23:21:45.173] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity +[24May2025 23:21:45.173] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity +[24May2025 23:21:45.173] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size +[24May2025 23:21:45.174] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size +[24May2025 23:21:45.174] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size +[24May2025 23:21:45.174] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size +[24May2025 23:21:45.176] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[24May2025 23:21:45.177] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[24May2025 23:21:45.177] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[24May2025 23:21:45.179] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[24May2025 23:21:45.180] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity +[24May2025 23:21:45.181] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level +[24May2025 23:21:45.181] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level +[24May2025 23:21:45.181] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type +[24May2025 23:21:45.181] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type +[24May2025 23:21:45.181] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity +[24May2025 23:21:45.182] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity +[24May2025 23:21:45.182] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size +[24May2025 23:21:45.182] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size +[24May2025 23:21:45.182] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size +[24May2025 23:21:45.183] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size +[24May2025 23:21:45.183] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level +[24May2025 23:21:45.183] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level +[24May2025 23:21:45.183] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type +[24May2025 23:21:45.183] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type +[24May2025 23:21:45.184] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity +[24May2025 23:21:45.184] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity +[24May2025 23:21:45.184] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size +[24May2025 23:21:45.184] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size +[24May2025 23:21:45.185] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size +[24May2025 23:21:45.185] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size +[24May2025 23:21:45.185] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level +[24May2025 23:21:45.185] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level +[24May2025 23:21:45.186] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type +[24May2025 23:21:45.186] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type +[24May2025 23:21:45.186] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity +[24May2025 23:21:45.186] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity +[24May2025 23:21:45.186] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size +[24May2025 23:21:45.186] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size +[24May2025 23:21:45.187] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size +[24May2025 23:21:45.187] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size +[24May2025 23:21:45.187] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level +[24May2025 23:21:45.188] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level +[24May2025 23:21:45.188] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type +[24May2025 23:21:45.188] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type +[24May2025 23:21:45.188] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity +[24May2025 23:21:45.188] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity +[24May2025 23:21:45.189] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size +[24May2025 23:21:45.189] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size +[24May2025 23:21:45.189] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size +[24May2025 23:21:45.190] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size +[24May2025 23:21:45.192] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[24May2025 23:21:45.192] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[24May2025 23:21:45.193] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[24May2025 23:21:45.193] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[24May2025 23:21:45.193] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity +[24May2025 23:21:45.194] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level +[24May2025 23:21:45.194] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level +[24May2025 23:21:45.194] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type +[24May2025 23:21:45.195] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type +[24May2025 23:21:45.195] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity +[24May2025 23:21:45.195] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity +[24May2025 23:21:45.195] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size +[24May2025 23:21:45.195] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size +[24May2025 23:21:45.196] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size +[24May2025 23:21:45.196] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size +[24May2025 23:21:45.196] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level +[24May2025 23:21:45.196] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level +[24May2025 23:21:45.197] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type +[24May2025 23:21:45.197] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type +[24May2025 23:21:45.197] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity +[24May2025 23:21:45.197] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity +[24May2025 23:21:45.197] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size +[24May2025 23:21:45.198] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size +[24May2025 23:21:45.198] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size +[24May2025 23:21:45.198] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size +[24May2025 23:21:45.198] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level +[24May2025 23:21:45.198] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level +[24May2025 23:21:45.199] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type +[24May2025 23:21:45.199] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type +[24May2025 23:21:45.199] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity +[24May2025 23:21:45.199] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity +[24May2025 23:21:45.199] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size +[24May2025 23:21:45.200] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size +[24May2025 23:21:45.200] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size +[24May2025 23:21:45.200] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size +[24May2025 23:21:45.200] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level +[24May2025 23:21:45.201] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level +[24May2025 23:21:45.201] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type +[24May2025 23:21:45.201] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type +[24May2025 23:21:45.201] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity +[24May2025 23:21:45.202] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity +[24May2025 23:21:45.202] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size +[24May2025 23:21:45.202] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size +[24May2025 23:21:45.202] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size +[24May2025 23:21:45.203] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size +[24May2025 23:21:45.204] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[24May2025 23:21:45.205] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[24May2025 23:21:45.205] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[24May2025 23:21:45.205] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[24May2025 23:21:45.205] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity +[24May2025 23:21:45.206] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level +[24May2025 23:21:45.206] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level +[24May2025 23:21:45.206] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type +[24May2025 23:21:45.206] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type +[24May2025 23:21:45.207] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity +[24May2025 23:21:45.207] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity +[24May2025 23:21:45.207] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size +[24May2025 23:21:45.207] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size +[24May2025 23:21:45.208] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size +[24May2025 23:21:45.208] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size +[24May2025 23:21:45.208] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level +[24May2025 23:21:45.208] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level +[24May2025 23:21:45.208] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type +[24May2025 23:21:45.209] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type +[24May2025 23:21:45.209] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity +[24May2025 23:21:45.209] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity +[24May2025 23:21:45.209] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size +[24May2025 23:21:45.209] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size +[24May2025 23:21:45.210] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size +[24May2025 23:21:45.210] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size +[24May2025 23:21:45.210] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level +[24May2025 23:21:45.210] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level +[24May2025 23:21:45.211] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type +[24May2025 23:21:45.211] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type +[24May2025 23:21:45.211] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity +[24May2025 23:21:45.211] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity +[24May2025 23:21:45.211] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size +[24May2025 23:21:45.212] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size +[24May2025 23:21:45.212] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size +[24May2025 23:21:45.212] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size +[24May2025 23:21:45.212] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level +[24May2025 23:21:45.212] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level +[24May2025 23:21:45.213] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type +[24May2025 23:21:45.213] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type +[24May2025 23:21:45.213] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity +[24May2025 23:21:45.213] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity +[24May2025 23:21:45.214] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size +[24May2025 23:21:45.214] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size +[24May2025 23:21:45.214] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size +[24May2025 23:21:45.214] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size +[24May2025 23:21:45.216] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[24May2025 23:21:45.216] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[24May2025 23:21:45.216] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[24May2025 23:21:45.217] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[24May2025 23:21:45.217] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity +[24May2025 23:21:45.217] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level +[24May2025 23:21:45.218] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level +[24May2025 23:21:45.218] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type +[24May2025 23:21:45.218] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type +[24May2025 23:21:45.218] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity +[24May2025 23:21:45.219] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity +[24May2025 23:21:45.219] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size +[24May2025 23:21:45.219] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size +[24May2025 23:21:45.219] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size +[24May2025 23:21:45.219] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size +[24May2025 23:21:45.220] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level +[24May2025 23:21:45.220] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level +[24May2025 23:21:45.220] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type +[24May2025 23:21:45.220] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type +[24May2025 23:21:45.221] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity +[24May2025 23:21:45.221] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity +[24May2025 23:21:45.221] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size +[24May2025 23:21:45.221] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size +[24May2025 23:21:45.222] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size +[24May2025 23:21:45.222] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size +[24May2025 23:21:45.222] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level +[24May2025 23:21:45.223] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level +[24May2025 23:21:45.223] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type +[24May2025 23:21:45.223] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type +[24May2025 23:21:45.223] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity +[24May2025 23:21:45.223] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity +[24May2025 23:21:45.224] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size +[24May2025 23:21:45.224] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size +[24May2025 23:21:45.224] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size +[24May2025 23:21:45.224] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size +[24May2025 23:21:45.225] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level +[24May2025 23:21:45.225] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level +[24May2025 23:21:45.225] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type +[24May2025 23:21:45.225] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type +[24May2025 23:21:45.226] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity +[24May2025 23:21:45.226] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity +[24May2025 23:21:45.226] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size +[24May2025 23:21:45.226] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size +[24May2025 23:21:45.226] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size +[24May2025 23:21:45.227] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size +[24May2025 23:21:45.229] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[24May2025 23:21:45.229] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[24May2025 23:21:45.229] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[24May2025 23:21:45.229] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[24May2025 23:21:45.230] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity +[24May2025 23:21:45.230] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level +[24May2025 23:21:45.231] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level +[24May2025 23:21:45.231] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type +[24May2025 23:21:45.231] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type +[24May2025 23:21:45.231] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity +[24May2025 23:21:45.231] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity +[24May2025 23:21:45.232] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size +[24May2025 23:21:45.232] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size +[24May2025 23:21:45.232] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size +[24May2025 23:21:45.232] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size +[24May2025 23:21:45.233] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level +[24May2025 23:21:45.233] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level +[24May2025 23:21:45.233] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type +[24May2025 23:21:45.233] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type +[24May2025 23:21:45.234] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity +[24May2025 23:21:45.234] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity +[24May2025 23:21:45.234] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size +[24May2025 23:21:45.234] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size +[24May2025 23:21:45.235] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size +[24May2025 23:21:45.235] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size +[24May2025 23:21:45.235] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level +[24May2025 23:21:45.235] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level +[24May2025 23:21:45.236] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type +[24May2025 23:21:45.236] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type +[24May2025 23:21:45.237] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity +[24May2025 23:21:45.237] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity +[24May2025 23:21:45.238] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size +[24May2025 23:21:45.238] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size +[24May2025 23:21:45.238] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size +[24May2025 23:21:45.238] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size +[24May2025 23:21:45.239] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level +[24May2025 23:21:45.239] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level +[24May2025 23:21:45.239] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type +[24May2025 23:21:45.239] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type +[24May2025 23:21:45.239] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity +[24May2025 23:21:45.240] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity +[24May2025 23:21:45.240] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size +[24May2025 23:21:45.240] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size +[24May2025 23:21:45.240] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size +[24May2025 23:21:45.241] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size +[24May2025 23:21:45.243] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[24May2025 23:21:45.243] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[24May2025 23:21:45.243] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[24May2025 23:21:45.243] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[24May2025 23:21:45.244] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity +[24May2025 23:21:45.245] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level +[24May2025 23:21:45.245] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level +[24May2025 23:21:45.245] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type +[24May2025 23:21:45.246] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type +[24May2025 23:21:45.246] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity +[24May2025 23:21:45.246] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity +[24May2025 23:21:45.246] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size +[24May2025 23:21:45.247] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size +[24May2025 23:21:45.247] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size +[24May2025 23:21:45.247] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size +[24May2025 23:21:45.247] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level +[24May2025 23:21:45.248] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level +[24May2025 23:21:45.248] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type +[24May2025 23:21:45.248] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type +[24May2025 23:21:45.248] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity +[24May2025 23:21:45.248] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity +[24May2025 23:21:45.249] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size +[24May2025 23:21:45.249] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size +[24May2025 23:21:45.249] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size +[24May2025 23:21:45.249] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size +[24May2025 23:21:45.250] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level +[24May2025 23:21:45.250] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level +[24May2025 23:21:45.250] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type +[24May2025 23:21:45.251] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type +[24May2025 23:21:45.251] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity +[24May2025 23:21:45.251] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity +[24May2025 23:21:45.251] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size +[24May2025 23:21:45.251] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size +[24May2025 23:21:45.252] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size +[24May2025 23:21:45.252] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size +[24May2025 23:21:45.252] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level +[24May2025 23:21:45.252] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level +[24May2025 23:21:45.253] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type +[24May2025 23:21:45.253] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type +[24May2025 23:21:45.253] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity +[24May2025 23:21:45.253] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity +[24May2025 23:21:45.254] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size +[24May2025 23:21:45.254] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size +[24May2025 23:21:45.255] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size +[24May2025 23:21:45.255] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size +[24May2025 23:21:45.257] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[24May2025 23:21:45.257] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[24May2025 23:21:45.257] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[24May2025 23:21:45.257] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[24May2025 23:21:45.258] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity +[24May2025 23:21:45.259] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level +[24May2025 23:21:45.259] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level +[24May2025 23:21:45.259] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type +[24May2025 23:21:45.260] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type +[24May2025 23:21:45.260] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity +[24May2025 23:21:45.260] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity +[24May2025 23:21:45.260] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size +[24May2025 23:21:45.261] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size +[24May2025 23:21:45.261] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size +[24May2025 23:21:45.261] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size +[24May2025 23:21:45.262] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level +[24May2025 23:21:45.262] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level +[24May2025 23:21:45.262] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type +[24May2025 23:21:45.262] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type +[24May2025 23:21:45.263] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity +[24May2025 23:21:45.263] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity +[24May2025 23:21:45.263] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size +[24May2025 23:21:45.263] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size +[24May2025 23:21:45.263] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size +[24May2025 23:21:45.264] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size +[24May2025 23:21:45.264] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level +[24May2025 23:21:45.264] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level +[24May2025 23:21:45.264] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type +[24May2025 23:21:45.265] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type +[24May2025 23:21:45.265] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity +[24May2025 23:21:45.265] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity +[24May2025 23:21:45.265] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size +[24May2025 23:21:45.265] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size +[24May2025 23:21:45.265] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size +[24May2025 23:21:45.266] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size +[24May2025 23:21:45.266] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level +[24May2025 23:21:45.266] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level +[24May2025 23:21:45.266] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type +[24May2025 23:21:45.267] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type +[24May2025 23:21:45.267] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity +[24May2025 23:21:45.267] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity +[24May2025 23:21:45.267] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size +[24May2025 23:21:45.267] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size +[24May2025 23:21:45.268] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size +[24May2025 23:21:45.268] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size +[24May2025 23:21:45.269] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[24May2025 23:21:45.270] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[24May2025 23:21:45.270] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[24May2025 23:21:45.270] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[24May2025 23:21:45.270] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity +[24May2025 23:21:45.271] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level +[24May2025 23:21:45.271] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level +[24May2025 23:21:45.271] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type +[24May2025 23:21:45.272] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type +[24May2025 23:21:45.272] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity +[24May2025 23:21:45.272] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity +[24May2025 23:21:45.272] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size +[24May2025 23:21:45.273] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size +[24May2025 23:21:45.273] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size +[24May2025 23:21:45.273] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size +[24May2025 23:21:45.274] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level +[24May2025 23:21:45.274] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level +[24May2025 23:21:45.274] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type +[24May2025 23:21:45.274] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type +[24May2025 23:21:45.274] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity +[24May2025 23:21:45.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity +[24May2025 23:21:45.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size +[24May2025 23:21:45.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size +[24May2025 23:21:45.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size +[24May2025 23:21:45.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size +[24May2025 23:21:45.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level +[24May2025 23:21:45.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level +[24May2025 23:21:45.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type +[24May2025 23:21:45.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type +[24May2025 23:21:45.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity +[24May2025 23:21:45.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity +[24May2025 23:21:45.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size +[24May2025 23:21:45.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size +[24May2025 23:21:45.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size +[24May2025 23:21:45.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size +[24May2025 23:21:45.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level +[24May2025 23:21:45.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level +[24May2025 23:21:45.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type +[24May2025 23:21:45.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type +[24May2025 23:21:45.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity +[24May2025 23:21:45.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity +[24May2025 23:21:45.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size +[24May2025 23:21:45.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size +[24May2025 23:21:45.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size +[24May2025 23:21:45.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size +[24May2025 23:21:45.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[24May2025 23:21:45.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[24May2025 23:21:45.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[24May2025 23:21:45.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[24May2025 23:21:45.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity +[24May2025 23:21:45.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level +[24May2025 23:21:45.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level +[24May2025 23:21:45.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type +[24May2025 23:21:45.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type +[24May2025 23:21:45.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity +[24May2025 23:21:45.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity +[24May2025 23:21:45.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size +[24May2025 23:21:45.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size +[24May2025 23:21:45.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size +[24May2025 23:21:45.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size +[24May2025 23:21:45.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level +[24May2025 23:21:45.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level +[24May2025 23:21:45.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type +[24May2025 23:21:45.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type +[24May2025 23:21:45.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity +[24May2025 23:21:45.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity +[24May2025 23:21:45.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size +[24May2025 23:21:45.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size +[24May2025 23:21:45.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size +[24May2025 23:21:45.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size +[24May2025 23:21:45.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level +[24May2025 23:21:45.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level +[24May2025 23:21:45.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type +[24May2025 23:21:45.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type +[24May2025 23:21:45.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity +[24May2025 23:21:45.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity +[24May2025 23:21:45.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size +[24May2025 23:21:45.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size +[24May2025 23:21:45.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size +[24May2025 23:21:45.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size +[24May2025 23:21:45.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level +[24May2025 23:21:45.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level +[24May2025 23:21:45.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type +[24May2025 23:21:45.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type +[24May2025 23:21:45.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity +[24May2025 23:21:45.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity +[24May2025 23:21:45.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size +[24May2025 23:21:45.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size +[24May2025 23:21:45.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size +[24May2025 23:21:45.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size +[24May2025 23:21:45.302] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo +[24May2025 23:21:45.598] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 229 Datafixer optimizations took 796 milliseconds +[24May2025 23:21:48.263] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[24May2025 23:21:48.265] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@27a7ef08 +[24May2025 23:21:48.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[24May2025 23:21:48.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[24May2025 23:21:48.402] [pool-7-thread-1/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). +[24May2025 23:21:48.403] [pool-7-thread-1/DEBUG] [mixin/]: Registering new injector for @SugarWrapper with com.llamalad7.mixinextras.sugar.impl.SugarWrapperInjectionInfo +[24May2025 23:21:48.403] [pool-7-thread-1/DEBUG] [mixin/]: Registering new injector for @FactoryRedirectWrapper with com.llamalad7.mixinextras.wrapper.factory.FactoryRedirectWrapperInjectionInfo +[24May2025 23:21:48.405] [pool-7-thread-1/DEBUG] [mixin/]: Mixing MappedRegistryAccessor from neoforge.mixins.json into net.minecraft.core.MappedRegistry +[24May2025 23:21:48.407] [pool-7-thread-1/DEBUG] [mixin/]: neoforge.mixins.json:MappedRegistryAccessor from mod neoforge: Class version 65 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[24May2025 23:21:49.116] [pool-7-thread-1/DEBUG] [mixin/]: Mixing BlockEntityTypeAccessor from neoforge.mixins.json into net.minecraft.world.level.block.entity.BlockEntityType +[24May2025 23:21:49.116] [pool-7-thread-1/DEBUG] [mixin/]: neoforge.mixins.json:BlockEntityTypeAccessor from mod neoforge: Class version 65 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[24May2025 23:21:50.963] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: -Dio.netty.noUnsafe: false +[24May2025 23:21:50.963] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: Java version: 21 +[24May2025 23:21:50.964] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available +[24May2025 23:21:50.965] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available +[24May2025 23:21:50.965] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available +[24May2025 23:21:50.966] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Buffer.address: available +[24May2025 23:21:50.966] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: direct buffer constructor: unavailable: Reflective setAccessible(true) disabled +[24May2025 23:21:50.967] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Bits.unaligned: available, true +[24May2025 23:21:50.969] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common +[24May2025 23:21:50.969] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.DirectByteBuffer.(long, {int,long}): unavailable +[24May2025 23:21:50.970] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: sun.misc.Unsafe: available +[24May2025 23:21:50.971] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: maxDirectMemory: 4009754624 bytes (maybe) +[24May2025 23:21:50.971] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.tmpdir: /tmp (java.io.tmpdir) +[24May2025 23:21:50.971] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model) +[24May2025 23:21:50.972] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes +[24May2025 23:21:50.972] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1 +[24May2025 23:21:50.974] [pool-7-thread-1/DEBUG] [io.netty.util.internal.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available +[24May2025 23:21:50.974] [pool-7-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.noPreferDirect: false +[24May2025 23:21:53.977] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] +[24May2025 23:21:53.979] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] +[24May2025 23:21:53.983] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] +[24May2025 23:21:53.985] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] +[24May2025 23:21:53.987] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] +[24May2025 23:21:54.195] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar%23171!/assets/.mcassetsroot' uses unexpected schema +[24May2025 23:21:54.195] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar%23171!/data/.mcassetsroot' uses unexpected schema +[24May2025 23:21:54.245] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD] +[24May2025 23:21:54.259] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev +[24May2025 23:21:54.465] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.3+5 +[24May2025 23:21:54.619] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[24May2025 23:21:54.619] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[24May2025 23:21:54.619] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[24May2025 23:21:54.619] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[24May2025 23:21:54.620] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity +[24May2025 23:21:54.620] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level +[24May2025 23:21:54.620] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level +[24May2025 23:21:54.620] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type +[24May2025 23:21:54.620] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type +[24May2025 23:21:54.620] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity +[24May2025 23:21:54.620] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity +[24May2025 23:21:54.621] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size +[24May2025 23:21:54.622] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size +[24May2025 23:21:54.623] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size +[24May2025 23:21:54.624] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[24May2025 23:21:54.624] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[24May2025 23:21:54.624] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[24May2025 23:21:54.624] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[24May2025 23:21:54.624] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size +[24May2025 23:21:54.625] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size +[24May2025 23:21:54.626] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level +[24May2025 23:21:54.626] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level +[24May2025 23:21:54.626] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type +[24May2025 23:21:54.626] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type +[24May2025 23:21:54.627] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity +[24May2025 23:21:54.627] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity +[24May2025 23:21:54.627] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size +[24May2025 23:21:54.627] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size +[24May2025 23:21:54.627] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size +[24May2025 23:21:54.628] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size +[24May2025 23:21:54.629] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size +[24May2025 23:21:54.630] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[24May2025 23:21:54.631] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[24May2025 23:21:54.631] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[24May2025 23:21:54.631] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[24May2025 23:21:54.631] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity +[24May2025 23:21:54.631] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level +[24May2025 23:21:54.631] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size +[24May2025 23:21:54.632] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level +[24May2025 23:21:54.633] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level +[24May2025 23:21:54.633] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type +[24May2025 23:21:54.633] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type +[24May2025 23:21:54.633] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity +[24May2025 23:21:54.633] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity +[24May2025 23:21:54.633] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size +[24May2025 23:21:54.633] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size +[24May2025 23:21:54.633] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size +[24May2025 23:21:54.634] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size +[24May2025 23:21:54.635] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size +[24May2025 23:21:54.636] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[24May2025 23:21:54.636] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[24May2025 23:21:54.636] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[24May2025 23:21:54.636] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size +[24May2025 23:21:54.637] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size +[24May2025 23:21:54.638] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size +[24May2025 23:21:54.638] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size +[24May2025 23:21:54.638] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level +[24May2025 23:21:54.638] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level +[24May2025 23:21:54.638] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type +[24May2025 23:21:54.638] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type +[24May2025 23:21:54.638] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity +[24May2025 23:21:54.639] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity +[24May2025 23:21:54.639] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size +[24May2025 23:21:54.639] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size +[24May2025 23:21:54.639] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size +[24May2025 23:21:54.639] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size +[24May2025 23:21:54.639] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level +[24May2025 23:21:54.640] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level +[24May2025 23:21:54.640] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type +[24May2025 23:21:54.640] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type +[24May2025 23:21:54.640] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity +[24May2025 23:21:54.640] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity +[24May2025 23:21:54.640] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size +[24May2025 23:21:54.640] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size +[24May2025 23:21:54.640] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size +[24May2025 23:21:54.641] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size +[24May2025 23:21:54.641] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level +[24May2025 23:21:54.641] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level +[24May2025 23:21:54.641] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type +[24May2025 23:21:54.641] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type +[24May2025 23:21:54.641] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity +[24May2025 23:21:54.642] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity +[24May2025 23:21:54.642] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size +[24May2025 23:21:54.642] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size +[24May2025 23:21:54.642] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size +[24May2025 23:21:54.642] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size +[24May2025 23:21:54.643] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[24May2025 23:21:54.644] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[24May2025 23:21:54.644] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[24May2025 23:21:54.644] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[24May2025 23:21:54.644] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity +[24May2025 23:21:54.645] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level +[24May2025 23:21:54.645] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level +[24May2025 23:21:54.645] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type +[24May2025 23:21:54.645] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type +[24May2025 23:21:54.645] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity +[24May2025 23:21:54.645] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity +[24May2025 23:21:54.645] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size +[24May2025 23:21:54.646] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size +[24May2025 23:21:54.646] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size +[24May2025 23:21:54.646] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size +[24May2025 23:21:54.646] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level +[24May2025 23:21:54.646] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level +[24May2025 23:21:54.646] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type +[24May2025 23:21:54.647] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type +[24May2025 23:21:54.647] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity +[24May2025 23:21:54.647] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity +[24May2025 23:21:54.647] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size +[24May2025 23:21:54.647] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size +[24May2025 23:21:54.647] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size +[24May2025 23:21:54.647] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size +[24May2025 23:21:54.648] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size +[24May2025 23:21:54.649] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size +[24May2025 23:21:54.650] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity +[24May2025 23:21:54.651] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size +[24May2025 23:21:54.652] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level +[24May2025 23:21:54.653] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type +[24May2025 23:21:54.654] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type +[24May2025 23:21:54.654] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity +[24May2025 23:21:54.654] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity +[24May2025 23:21:54.654] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size +[24May2025 23:21:54.655] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size +[24May2025 23:21:54.655] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size +[24May2025 23:21:54.655] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size +[24May2025 23:21:54.656] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[24May2025 23:21:54.656] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[24May2025 23:21:54.656] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[24May2025 23:21:54.656] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[24May2025 23:21:54.656] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size +[24May2025 23:21:54.657] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size +[24May2025 23:21:54.658] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size +[24May2025 23:21:54.659] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size +[24May2025 23:21:54.659] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level +[24May2025 23:21:54.659] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level +[24May2025 23:21:54.659] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type +[24May2025 23:21:54.659] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type +[24May2025 23:21:54.659] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity +[24May2025 23:21:54.659] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity +[24May2025 23:21:54.659] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size +[24May2025 23:21:54.660] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size +[24May2025 23:21:54.661] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size +[24May2025 23:21:54.661] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size +[24May2025 23:21:54.663] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[24May2025 23:21:54.663] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[24May2025 23:21:54.663] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[24May2025 23:21:54.663] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[24May2025 23:21:54.664] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity +[24May2025 23:21:54.664] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level +[24May2025 23:21:54.664] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level +[24May2025 23:21:54.665] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type +[24May2025 23:21:54.665] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type +[24May2025 23:21:54.665] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type +[24May2025 23:21:54.666] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity +[24May2025 23:21:54.667] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size +[24May2025 23:21:54.668] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size +[24May2025 23:21:54.669] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size +[24May2025 23:21:54.669] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type +[24May2025 23:21:54.670] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity +[24May2025 23:21:54.671] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity +[24May2025 23:21:54.672] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type +[24May2025 23:21:54.673] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity +[24May2025 23:21:54.674] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity +[24May2025 23:21:54.674] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size +[24May2025 23:21:54.674] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size +[24May2025 23:21:54.674] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size +[24May2025 23:21:54.674] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size +[24May2025 23:21:54.675] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[24May2025 23:21:54.675] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[24May2025 23:21:54.675] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[24May2025 23:21:54.675] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[24May2025 23:21:54.675] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity +[24May2025 23:21:54.676] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level +[24May2025 23:21:54.676] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level +[24May2025 23:21:54.676] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type +[24May2025 23:21:54.676] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type +[24May2025 23:21:54.676] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity +[24May2025 23:21:54.677] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity +[24May2025 23:21:54.677] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size +[24May2025 23:21:54.677] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size +[24May2025 23:21:54.677] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size +[24May2025 23:21:54.678] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size +[24May2025 23:21:54.678] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level +[24May2025 23:21:54.678] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level +[24May2025 23:21:54.678] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type +[24May2025 23:21:54.679] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type +[24May2025 23:21:54.679] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity +[24May2025 23:21:54.679] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity +[24May2025 23:21:54.679] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size +[24May2025 23:21:54.680] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size +[24May2025 23:21:54.680] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size +[24May2025 23:21:54.680] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size +[24May2025 23:21:54.680] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level +[24May2025 23:21:54.680] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level +[24May2025 23:21:54.681] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type +[24May2025 23:21:54.681] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type +[24May2025 23:21:54.681] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity +[24May2025 23:21:54.681] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity +[24May2025 23:21:54.681] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size +[24May2025 23:21:54.681] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size +[24May2025 23:21:54.682] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size +[24May2025 23:21:54.682] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size +[24May2025 23:21:54.682] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level +[24May2025 23:21:54.682] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level +[24May2025 23:21:54.682] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type +[24May2025 23:21:54.682] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type +[24May2025 23:21:54.683] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity +[24May2025 23:21:54.683] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity +[24May2025 23:21:54.683] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size +[24May2025 23:21:54.683] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size +[24May2025 23:21:54.683] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size +[24May2025 23:21:54.683] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size +[24May2025 23:21:54.684] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[24May2025 23:21:54.685] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[24May2025 23:21:54.685] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[24May2025 23:21:54.685] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[24May2025 23:21:54.685] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity +[24May2025 23:21:54.686] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level +[24May2025 23:21:54.686] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level +[24May2025 23:21:54.686] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type +[24May2025 23:21:54.686] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type +[24May2025 23:21:54.686] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity +[24May2025 23:21:54.686] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity +[24May2025 23:21:54.686] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size +[24May2025 23:21:54.687] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size +[24May2025 23:21:54.687] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size +[24May2025 23:21:54.687] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size +[24May2025 23:21:54.687] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level +[24May2025 23:21:54.687] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level +[24May2025 23:21:54.687] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type +[24May2025 23:21:54.687] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type +[24May2025 23:21:54.688] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity +[24May2025 23:21:54.688] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity +[24May2025 23:21:54.688] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size +[24May2025 23:21:54.688] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size +[24May2025 23:21:54.688] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size +[24May2025 23:21:54.688] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size +[24May2025 23:21:54.688] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level +[24May2025 23:21:54.689] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level +[24May2025 23:21:54.689] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type +[24May2025 23:21:54.689] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type +[24May2025 23:21:54.689] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity +[24May2025 23:21:54.689] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity +[24May2025 23:21:54.689] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size +[24May2025 23:21:54.690] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size +[24May2025 23:21:54.690] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size +[24May2025 23:21:54.690] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size +[24May2025 23:21:54.690] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level +[24May2025 23:21:54.690] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level +[24May2025 23:21:54.691] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type +[24May2025 23:21:54.691] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type +[24May2025 23:21:54.691] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity +[24May2025 23:21:54.691] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity +[24May2025 23:21:54.691] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size +[24May2025 23:21:54.691] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size +[24May2025 23:21:54.691] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size +[24May2025 23:21:54.692] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size +[24May2025 23:21:54.693] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[24May2025 23:21:54.693] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[24May2025 23:21:54.693] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[24May2025 23:21:54.694] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[24May2025 23:21:54.694] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity +[24May2025 23:21:54.694] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level +[24May2025 23:21:54.694] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level +[24May2025 23:21:54.695] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type +[24May2025 23:21:54.695] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type +[24May2025 23:21:54.695] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity +[24May2025 23:21:54.695] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity +[24May2025 23:21:54.695] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size +[24May2025 23:21:54.695] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size +[24May2025 23:21:54.695] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size +[24May2025 23:21:54.695] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size +[24May2025 23:21:54.696] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level +[24May2025 23:21:54.696] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level +[24May2025 23:21:54.696] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type +[24May2025 23:21:54.696] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type +[24May2025 23:21:54.696] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity +[24May2025 23:21:54.696] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity +[24May2025 23:21:54.696] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size +[24May2025 23:21:54.696] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size +[24May2025 23:21:54.697] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size +[24May2025 23:21:54.697] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size +[24May2025 23:21:54.697] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level +[24May2025 23:21:54.697] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level +[24May2025 23:21:54.697] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type +[24May2025 23:21:54.697] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type +[24May2025 23:21:54.697] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity +[24May2025 23:21:54.697] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity +[24May2025 23:21:54.698] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size +[24May2025 23:21:54.698] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size +[24May2025 23:21:54.698] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size +[24May2025 23:21:54.698] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size +[24May2025 23:21:54.698] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level +[24May2025 23:21:54.698] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level +[24May2025 23:21:54.698] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type +[24May2025 23:21:54.698] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type +[24May2025 23:21:54.699] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity +[24May2025 23:21:54.699] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity +[24May2025 23:21:54.699] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size +[24May2025 23:21:54.699] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size +[24May2025 23:21:54.699] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size +[24May2025 23:21:54.699] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size +[24May2025 23:21:54.700] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[24May2025 23:21:54.700] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[24May2025 23:21:54.700] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[24May2025 23:21:54.701] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[24May2025 23:21:54.701] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity +[24May2025 23:21:54.701] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level +[24May2025 23:21:54.701] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level +[24May2025 23:21:54.701] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type +[24May2025 23:21:54.702] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type +[24May2025 23:21:54.702] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity +[24May2025 23:21:54.702] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity +[24May2025 23:21:54.702] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size +[24May2025 23:21:54.702] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size +[24May2025 23:21:54.702] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size +[24May2025 23:21:54.702] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size +[24May2025 23:21:54.702] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level +[24May2025 23:21:54.703] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level +[24May2025 23:21:54.703] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type +[24May2025 23:21:54.703] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type +[24May2025 23:21:54.703] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity +[24May2025 23:21:54.703] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity +[24May2025 23:21:54.703] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size +[24May2025 23:21:54.703] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size +[24May2025 23:21:54.704] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size +[24May2025 23:21:54.704] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size +[24May2025 23:21:54.704] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level +[24May2025 23:21:54.704] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level +[24May2025 23:21:54.704] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type +[24May2025 23:21:54.704] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type +[24May2025 23:21:54.704] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity +[24May2025 23:21:54.705] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity +[24May2025 23:21:54.705] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size +[24May2025 23:21:54.705] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size +[24May2025 23:21:54.705] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size +[24May2025 23:21:54.705] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size +[24May2025 23:21:54.705] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level +[24May2025 23:21:54.705] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level +[24May2025 23:21:54.705] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type +[24May2025 23:21:54.706] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type +[24May2025 23:21:54.706] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity +[24May2025 23:21:54.706] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity +[24May2025 23:21:54.706] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size +[24May2025 23:21:54.706] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size +[24May2025 23:21:54.706] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size +[24May2025 23:21:54.706] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size +[24May2025 23:21:54.708] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[24May2025 23:21:54.709] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[24May2025 23:21:54.709] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[24May2025 23:21:54.709] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[24May2025 23:21:54.709] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity +[24May2025 23:21:54.710] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level +[24May2025 23:21:54.710] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level +[24May2025 23:21:54.710] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type +[24May2025 23:21:54.710] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type +[24May2025 23:21:54.710] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity +[24May2025 23:21:54.710] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity +[24May2025 23:21:54.711] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity +[24May2025 23:21:54.712] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity +[24May2025 23:21:54.713] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity +[24May2025 23:21:54.714] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size +[24May2025 23:21:54.714] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size +[24May2025 23:21:54.714] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size +[24May2025 23:21:54.714] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size +[24May2025 23:21:54.715] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[24May2025 23:21:54.715] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[24May2025 23:21:54.715] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[24May2025 23:21:54.715] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[24May2025 23:21:54.715] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size +[24May2025 23:21:54.716] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size +[24May2025 23:21:54.717] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size +[24May2025 23:21:54.717] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level +[24May2025 23:21:54.717] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level +[24May2025 23:21:54.717] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type +[24May2025 23:21:54.717] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type +[24May2025 23:21:54.717] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity +[24May2025 23:21:54.717] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity +[24May2025 23:21:54.718] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size +[24May2025 23:21:54.718] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size +[24May2025 23:21:54.718] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size +[24May2025 23:21:54.718] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size +[24May2025 23:21:54.718] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level +[24May2025 23:21:54.718] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level +[24May2025 23:21:54.718] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type +[24May2025 23:21:54.718] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type +[24May2025 23:21:54.719] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity +[24May2025 23:21:54.719] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity +[24May2025 23:21:54.719] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size +[24May2025 23:21:54.719] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size +[24May2025 23:21:54.719] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size +[24May2025 23:21:54.719] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size +[24May2025 23:21:54.719] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level +[24May2025 23:21:54.719] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level +[24May2025 23:21:54.720] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type +[24May2025 23:21:54.720] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type +[24May2025 23:21:54.720] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity +[24May2025 23:21:54.720] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity +[24May2025 23:21:54.720] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size +[24May2025 23:21:54.720] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size +[24May2025 23:21:54.720] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size +[24May2025 23:21:54.720] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size +[24May2025 23:21:54.721] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[24May2025 23:21:54.721] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity +[24May2025 23:21:54.722] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity +[24May2025 23:21:54.723] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size +[24May2025 23:21:54.723] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size +[24May2025 23:21:54.723] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size +[24May2025 23:21:54.723] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size +[24May2025 23:21:54.723] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level +[24May2025 23:21:54.723] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level +[24May2025 23:21:54.723] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level +[24May2025 23:21:54.724] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level +[24May2025 23:21:54.725] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level +[24May2025 23:21:54.726] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type +[24May2025 23:21:54.726] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type +[24May2025 23:21:54.726] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity +[24May2025 23:21:54.726] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity +[24May2025 23:21:54.726] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size +[24May2025 23:21:54.726] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size +[24May2025 23:21:54.726] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size +[24May2025 23:21:54.726] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size +[24May2025 23:21:54.727] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo +[24May2025 23:21:57.466] [Render thread/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[24May2025 23:21:57.510] [Render thread/DEBUG] [net.neoforged.fml.ModWorkManager/LOADING]: Using 16 threads for parallel mod-loading +[24May2025 23:21:57.524] [Render thread/DEBUG] [net.neoforged.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for [net.neoforged.neoforge.common.NeoForgeMod, net.neoforged.neoforge.client.ClientNeoForgeMod] +[24May2025 23:21:57.533] [Render thread/DEBUG] [net.neoforged.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for [net.mcreator.cawezsmantletostratus.CawezsMantleToStratusMod] +[24May2025 23:21:57.560] [modloading-worker-0/DEBUG] [net.neoforged.neoforge.internal.versions.neoforge.NeoForgeVersion/CORE]: Found NeoForge version 21.1.92 +[24May2025 23:21:57.561] [modloading-worker-0/DEBUG] [net.neoforged.neoforge.internal.versions.neoforge.NeoForgeVersion/CORE]: Found FML version 4.0.34 +[24May2025 23:21:57.561] [modloading-worker-0/INFO] [net.neoforged.neoforge.common.NeoForgeMod/NEOFORGE-MOD]: NeoForge mod loading, version 21.1.92, for MC 1.21.1 +[24May2025 23:21:57.582] [modloading-worker-0/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Config file neoforge-client.toml for neoforge tracking +[24May2025 23:21:57.582] [modloading-worker-0/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Config file neoforge-server.toml for neoforge tracking +[24May2025 23:21:57.582] [modloading-worker-0/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Config file neoforge-common.toml for neoforge tracking +[24May2025 23:21:57.630] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for neoforge +[24May2025 23:21:57.633] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.server.command.ConfigCommand to GAME +[24May2025 23:21:57.633] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.network.filters.GenericPacketSplitter to MOD +[24May2025 23:21:57.657] [modloading-worker-0/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkAccessible: true +[24May2025 23:21:57.657] [modloading-worker-0/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkBounds: true +[24May2025 23:21:57.658] [modloading-worker-0/DEBUG] [io.netty.util.ResourceLeakDetectorFactory/]: Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@2943d8f1 +[24May2025 23:21:57.666] [modloading-worker-0/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 +[24May2025 23:21:57.667] [modloading-worker-0/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numHeapArenas: 32 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numDirectArenas: 32 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.pageSize: 8192 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxOrder: 9 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.chunkSize: 4194304 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.smallCacheSize: 256 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.normalCacheSize: 64 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedBufferCapacity: 32768 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimInterval: 8192 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimIntervalMillis: 0 +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.useCacheForAllThreads: false +[24May2025 23:21:57.669] [modloading-worker-0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 +[24May2025 23:21:57.675] [modloading-worker-0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.allocator.type: pooled +[24May2025 23:21:57.675] [modloading-worker-0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.threadLocalDirectBufferSize: 0 +[24May2025 23:21:57.675] [modloading-worker-0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.maxThreadLocalCharBufferSize: 16384 +[24May2025 23:21:57.682] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.network.NetworkInitialization to MOD +[24May2025 23:21:57.682] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.network.ConfigurationInitialization to MOD +[24May2025 23:21:57.684] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.common.MonsterRoomHooks to GAME +[24May2025 23:21:57.684] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.common.DeferredSpawnEggItem$CommonHandler to MOD +[24May2025 23:21:57.685] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.common.DeferredSpawnEggItem$ColorRegisterHandler to MOD +[24May2025 23:21:57.685] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.client.model.data.ModelDataManager to GAME +[24May2025 23:21:57.687] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.client.ParticleBoundsDebugRenderer to GAME +[24May2025 23:21:57.689] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.client.ClientHooks$ClientEvents to MOD +[24May2025 23:21:57.690] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.client.BlockEntityRenderBoundsDebugRenderer to GAME +[24May2025 23:21:57.691] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.neoforged.neoforge.attachment.AttachmentInternals to GAME +[24May2025 23:21:57.741] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for cawezs_mantle_to_stratus +[24May2025 23:21:57.742] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModEntities to MOD +[24May2025 23:21:57.743] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModFluids$FluidsClientSideHandler to MOD +[24May2025 23:21:57.744] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModItems$ItemsClientSideHandler to MOD +[24May2025 23:21:57.745] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModEntityRenderers to MOD +[24May2025 23:21:57.747] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModModels to MOD +[24May2025 23:21:57.749] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.fluid.types.EtherialLiquidFluidType to MOD +[24May2025 23:21:57.752] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.item.HeavenArmorItem to MOD +[24May2025 23:21:57.755] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.item.BuriedArmorItem to MOD +[24May2025 23:21:57.755] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.potion.DEBUGTELEPORTINGMobEffect to MOD +[24May2025 23:21:57.757] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.features.treedecorators.CliffsFruitDecorator to MOD +[24May2025 23:21:57.759] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.features.treedecorators.CliffsTrunkDecorator to MOD +[24May2025 23:21:57.760] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.features.treedecorators.CliffsLeaveDecorator to MOD +[24May2025 23:21:57.761] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.dimension.DepthsDimension$DepthsSpecialEffectsHandler to MOD +[24May2025 23:21:57.762] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.dimension.InvertedDimension$InvertedSpecialEffectsHandler to MOD +[24May2025 23:21:57.764] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.world.dimension.HeightsDimension$HeightsSpecialEffectsHandler to MOD +[24May2025 23:21:57.765] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.procedures.GenerateFloorsProcedure to GAME +[24May2025 23:21:57.766] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.procedures.TeleportPlayerProcedure to GAME +[24May2025 23:21:57.767] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.procedures.AdvAceerProcProcedure to GAME +[24May2025 23:21:57.768] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.procedures.GenerateDefaultProcedure to MOD +[24May2025 23:21:57.768] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.network.CawezsMantleToStratusModVariables to MOD +[24May2025 23:21:57.768] [modloading-worker-0/DEBUG] [net.neoforged.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.cawezsmantletostratus.network.CawezsMantleToStratusModVariables$EventBusVariableHandlers to GAME +[24May2025 23:21:57.907] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loading configs type CLIENT +[24May2025 23:21:57.925] [modloading-sync-worker/DEBUG] [net.neoforged.neoforge.common.NeoForgeConfig/FORGEMOD]: Loaded NeoForge config file neoforge-client.toml +[24May2025 23:21:57.925] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loaded TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-client.toml +[24May2025 23:21:57.934] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Watching TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-client.toml for changes +[24May2025 23:21:57.934] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loading configs type COMMON +[24May2025 23:21:57.936] [modloading-sync-worker/DEBUG] [net.neoforged.neoforge.common.NeoForgeConfig/FORGEMOD]: Loaded NeoForge config file neoforge-common.toml +[24May2025 23:21:57.936] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loaded TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-common.toml +[24May2025 23:21:57.936] [modloading-sync-worker/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Watching TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-common.toml for changes +[24May2025 23:21:58.326] [Render thread/INFO] [net.neoforged.neoforge.gametest.GameTestHooks/]: Enabled Gametest Namespaces: [] +[24May2025 23:21:58.534] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla, mod_resources, mod/neoforge, mod/cawezs_mantle_to_stratus +[24May2025 23:21:58.622] [Render thread/DEBUG] [net.neoforged.fml.DeferredWorkQueue/LOADING]: Dispatching synchronous work for work queue Common setup: 1 jobs +[24May2025 23:21:58.624] [Render thread/DEBUG] [net.neoforged.fml.DeferredWorkQueue/LOADING]: Synchronous work queue completed in 1.038 ms +[24May2025 23:21:58.648] [Worker-Main-13/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.1.05.hex, loading +[24May2025 23:21:58.791] [Worker-Main-12/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_jp_patch-15.1.05.hex, loading +[24May2025 23:21:58.889] [Render thread/DEBUG] [net.neoforged.fml.DeferredWorkQueue/LOADING]: Dispatching synchronous work for work queue Sided setup: 1 jobs +[24May2025 23:21:59.067] [Render thread/DEBUG] [net.neoforged.fml.DeferredWorkQueue/LOADING]: Synchronous work queue completed in 177.1 ms +[24May2025 23:22:02.736] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play +[24May2025 23:22:02.737] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break +[24May2025 23:22:02.896] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device Family 17h/19h HD Audio Controller Analog Stereo +[24May2025 23:22:02.898] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started +[24May2025 23:22:03.383] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas +[24May2025 23:22:03.477] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x4 minecraft:textures/atlas/signs.png-atlas +[24May2025 23:22:03.480] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas +[24May2025 23:22:03.484] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas +[24May2025 23:22:03.488] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x4 minecraft:textures/atlas/armor_trims.png-atlas +[24May2025 23:22:03.507] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas +[24May2025 23:22:03.509] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x4 minecraft:textures/atlas/decorated_pot.png-atlas +[24May2025 23:22:03.510] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas +[24May2025 23:22:03.512] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas +[24May2025 23:22:03.662] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x0 minecraft:textures/atlas/particles.png-atlas +[24May2025 23:22:03.668] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x0 minecraft:textures/atlas/paintings.png-atlas +[24May2025 23:22:03.669] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[24May2025 23:22:03.670] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 64x64x0 minecraft:textures/atlas/map_decorations.png-atlas +[24May2025 23:22:03.670] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x0 minecraft:textures/atlas/gui.png-atlas +[24May2025 23:22:03.721] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. +[24May2025 23:22:03.820] [Render thread/INFO] [net.neoforged.neoforge.client.entity.animation.json.AnimationLoader/]: Loaded 0 entity animations +[24May2025 23:22:19.853] [Render thread/ERROR] [net.minecraft.world.level.biome.MobSpawnSettings/]: Spawn data: Not a JSON object: null +[24May2025 23:22:20.904] [Worker-Main-7/ERROR] [net.minecraft.world.level.storage.loot.LootDataType/]: Couldn't parse element ResourceKey[minecraft:root / minecraft:loot_table]:cawezs_dimensional_connectivity:blocks/platform - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:cave_air +[24May2025 23:22:21.361] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 1346 recipes +[24May2025 23:22:21.602] [Render thread/INFO] [net.minecraft.advancements.AdvancementTree/]: Loaded 1411 advancements +[24May2025 23:22:22.216] [Render thread/DEBUG] [net.neoforged.neoforge.common.CommonHooks/WP]: Gathered mod list to write to world save New World +[24May2025 23:22:22.294] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.21.1 +[24May2025 23:22:22.295] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair +[24May2025 23:22:22.365] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loading configs type SERVER +[24May2025 23:22:22.367] [Server thread/DEBUG] [net.neoforged.neoforge.common.NeoForgeConfig/FORGEMOD]: Loaded NeoForge config file neoforge-server.toml +[24May2025 23:22:22.367] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Loaded TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-server.toml +[24May2025 23:22:22.367] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Watching TOML config file /home/cow/cawezs_mantle_to_stratus/run/config/neoforge-server.toml for changes +[24May2025 23:22:22.376] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pufferfish that was registered with WATER_AMBIENT mob category but was added under CREATURE mob category for cawezs_mantle_to_stratus:buriedwetlandcaves biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.377] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pig that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:cliffs biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.378] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pig that was registered with CREATURE mob category but was added under AMBIENT mob category for cawezs_mantle_to_stratus:crystals biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.393] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:skeleton_horse that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:overgrowncaves biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.398] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:sheep that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:trees biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.404] [Server thread/ERROR] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: The following entities have not registered to the RegisterSpawnPlacementsEvent, but a spawn entry was found. This will mean that the entity doesn't have restrictions on its spawn location, please register a spawn placement for the entity, you can register with NO_RESTRICTIONS if you don't want any restrictions. - minecraft:camel + - minecraft:allay - minecraft:piglin_brute -[24May2025 20:24:50.813] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld -[24May2025 20:24:51.121] [Server thread/ERROR] [net.minecraft.world.level.chunk.storage.ChunkSerializer/]: Recoverable errors when loading section [-6, 4, -12]: (Unknown registry key in ResourceKey[minecraft:root / minecraft:block]: cawezs_mantle_to_stratus:ancient_sunlight -> using default) -[24May2025 20:24:51.398] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[24May2025 20:24:51.398] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[24May2025 20:24:51.767] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 930 ms -[24May2025 20:24:51.773] [Server thread/INFO] [net.neoforged.neoforge.server.permission.PermissionAPI/]: Successfully initialized permission handler neoforge:default_handler -[24May2025 20:24:51.907] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 12, from 10 -[24May2025 20:24:51.907] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0 -[24May2025 20:24:51.923] [Render thread/DEBUG] [io.netty.channel.MultithreadEventLoopGroup/]: -Dio.netty.eventLoopThreads: 32 -[24May2025 20:24:51.937] [Render thread/DEBUG] [io.netty.util.concurrent.GlobalEventExecutor/]: -Dio.netty.globalEventExecutor.quietPeriodSeconds: 1 -[24May2025 20:24:51.957] [Render thread/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.noKeySetOptimization: false -[24May2025 20:24:51.958] [Render thread/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.selectorAutoRebuildThreshold: 512 -[24May2025 20:24:51.970] [Render thread/DEBUG] [io.netty.util.internal.PlatformDependent/]: org.jctools-core.MpscChunkedArrayQueue: available -[24May2025 20:24:52.007] [Render thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.processId: 30772 (auto-detected) -[24May2025 20:24:52.010] [Render thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv4Stack: false -[24May2025 20:24:52.011] [Render thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv6Addresses: system -[24May2025 20:24:52.014] [Render thread/DEBUG] [io.netty.util.NetUtilInitializations/]: Loopback interface: lo (lo, 0:0:0:0:0:0:0:1%lo) -[24May2025 20:24:52.015] [Render thread/DEBUG] [io.netty.util.NetUtil/]: /proc/sys/net/core/somaxconn: 4096 -[24May2025 20:24:52.016] [Render thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.machineId: fc:b0:de:ff:fe:18:0e:7d (auto-detected) -[24May2025 20:24:52.127] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.maxCapacityPerThread: 4096 -[24May2025 20:24:52.128] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.ratio: 8 -[24May2025 20:24:52.128] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.chunkSize: 32 -[24May2025 20:24:52.128] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.blocking: false -[24May2025 20:24:52.128] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.batchFastThreadLocalOnly: true -[24May2025 20:24:52.374] [Netty Server IO #1/DEBUG] [net.neoforged.neoforge.network.filters.NetworkFilters/]: Injected net.neoforged.neoforge.network.filters.GenericPacketSplitter@5b0d0ac4 into net.minecraft.network.Connection@2c95d66f -[24May2025 20:24:52.392] [Netty Local Client IO #0/DEBUG] [net.neoforged.neoforge.network.filters.NetworkFilters/]: Injected net.neoforged.neoforge.network.filters.GenericPacketSplitter@20da5b93 into net.minecraft.network.Connection@1f96eda9 -[24May2025 20:24:52.974] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver received class net.neoforged.neoforge.event.TagsUpdatedEvent -[24May2025 20:24:53.438] [Netty Server IO #1/DEBUG] [net.neoforged.neoforge.network.filters.NetworkFilters/]: Injected net.neoforged.neoforge.network.filters.GenericPacketSplitter@72938feb into net.minecraft.network.Connection@2c95d66f -[24May2025 20:24:53.626] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:effd9a3d] logged in with entity id 103 at (-81.60545655208398, 65.0, -182.6318018011619) -[24May2025 20:24:53.779] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game -[24May2025 20:24:55.301] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver received class net.neoforged.neoforge.client.event.RecipesUpdatedEvent -[24May2025 20:24:55.302] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from LISTENING to JEI_STARTED -[24May2025 20:24:55.304] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Starting JEI... -[24May2025 20:24:55.330] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes... -[24May2025 20:24:55.332] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering item subtypes: jei:minecraft... -[24May2025 20:24:55.347] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering item subtypes: jei:minecraft took 14.91 milliseconds -[24May2025 20:24:55.348] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering item subtypes: jei:neoforge_gui... -[24May2025 20:24:55.348] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering item subtypes: jei:debug... -[24May2025 20:24:55.348] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering item subtypes: jei:gui... -[24May2025 20:24:55.348] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering item subtypes: jei:internal... -[24May2025 20:24:55.349] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes took 17.99 ms -[24May2025 20:24:55.350] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes... -[24May2025 20:24:55.351] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering fluid subtypes: jei:minecraft... -[24May2025 20:24:55.351] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering fluid subtypes: jei:neoforge_gui... -[24May2025 20:24:55.351] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering fluid subtypes: jei:debug... -[24May2025 20:24:55.354] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering fluid subtypes: jei:gui... -[24May2025 20:24:55.354] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering fluid subtypes: jei:internal... -[24May2025 20:24:55.355] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes took 4.663 ms -[24May2025 20:24:55.361] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients... -[24May2025 20:24:55.362] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering ingredients: jei:minecraft... -[24May2025 20:24:55.446] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 402/ 402 new items from 'Building Blocks' creative tab's displayItems -[24May2025 20:24:55.475] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 198/ 198 new items from 'Colored Blocks' creative tab's displayItems -[24May2025 20:24:55.498] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 201/ 226 new items from 'Natural Blocks' creative tab's displayItems -[24May2025 20:24:55.555] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 138/ 225 new items from 'Functional Blocks' creative tab's displayItems -[24May2025 20:24:55.562] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 29/ 68 new items from 'Redstone Blocks' creative tab's displayItems -[24May2025 20:24:55.562] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Skipping creative tab: 'Saved Hotbars' because it is type: HOTBAR -[24May2025 20:24:55.563] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Skipping creative tab: 'Search Items' because it is type: SEARCH -[24May2025 20:24:55.586] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 101/ 113 new items from 'Tools & Utilities' creative tab's displayItems -[24May2025 20:24:55.598] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 92/ 104 new items from 'Combat' creative tab's displayItems -[24May2025 20:24:55.622] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 190/ 193 new items from 'Food & Drinks' creative tab's displayItems -[24May2025 20:24:55.657] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 172/ 186 new items from 'Ingredients' creative tab's displayItems -[24May2025 20:24:55.659] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 83/ 269 new items from 'Ingredients' creative tab's searchTabDisplayItems -[24May2025 20:24:55.671] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 80/ 80 new items from 'Spawn Eggs' creative tab's displayItems -[24May2025 20:24:55.672] [Render thread/WARN] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Item Group has no display items and no search tab display items. Items from this group will be missing from the JEI ingredient list. Operator Utilities -[24May2025 20:24:55.673] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Skipping creative tab: 'Survival Inventory' because it is type: INVENTORY -[24May2025 20:24:55.677] [Render thread/DEBUG] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Added 76/ 76 new items from 'CAWEZ's Mantle to Stratus' creative tab's displayItems -[24May2025 20:24:55.729] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering ingredients: jei:minecraft took 366.4 milliseconds -[24May2025 20:24:55.729] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering ingredients: jei:neoforge_gui... -[24May2025 20:24:55.729] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering ingredients: jei:debug... -[24May2025 20:24:55.729] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering ingredients: jei:gui... -[24May2025 20:24:55.729] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering ingredients: jei:internal... -[24May2025 20:24:55.730] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients took 368.5 ms -[24May2025 20:24:55.730] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering extra ingredients... -[24May2025 20:24:55.731] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering extra ingredients: jei:minecraft... -[24May2025 20:24:55.731] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering extra ingredients: jei:neoforge_gui... -[24May2025 20:24:55.732] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering extra ingredients: jei:debug... -[24May2025 20:24:55.732] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering extra ingredients: jei:gui... -[24May2025 20:24:55.732] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering extra ingredients: jei:internal... -[24May2025 20:24:55.732] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering extra ingredients took 1.202 ms -[24May2025 20:24:55.733] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering search ingredient aliases... -[24May2025 20:24:55.733] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering search ingredient aliases: jei:minecraft... -[24May2025 20:24:55.734] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering search ingredient aliases: jei:neoforge_gui... -[24May2025 20:24:55.734] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering search ingredient aliases: jei:debug... -[24May2025 20:24:55.734] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering search ingredient aliases: jei:gui... -[24May2025 20:24:55.735] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering search ingredient aliases: jei:internal... -[24May2025 20:24:55.735] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering search ingredient aliases took 1.865 ms -[24May2025 20:24:55.771] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering Mod Info... -[24May2025 20:24:55.772] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Mod Info: jei:minecraft... -[24May2025 20:24:55.772] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Mod Info: jei:neoforge_gui... -[24May2025 20:24:55.772] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Mod Info: jei:debug... -[24May2025 20:24:55.772] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Mod Info: jei:gui... -[24May2025 20:24:55.772] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Mod Info: jei:internal... -[24May2025 20:24:55.773] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering Mod Info took 1.698 ms -[24May2025 20:24:55.813] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories... -[24May2025 20:24:55.814] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:minecraft... -[24May2025 20:24:55.849] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:minecraft took 34.50 milliseconds -[24May2025 20:24:55.849] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:neoforge_gui... -[24May2025 20:24:55.849] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:debug... -[24May2025 20:24:55.849] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:gui... -[24May2025 20:24:55.849] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:internal... -[24May2025 20:24:55.862] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:internal took 12.80 milliseconds -[24May2025 20:24:55.863] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories took 50.22 ms -[24May2025 20:24:55.866] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions... -[24May2025 20:24:55.867] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering vanilla category extensions: jei:minecraft... -[24May2025 20:24:55.872] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering vanilla category extensions: jei:neoforge_gui... -[24May2025 20:24:55.873] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering vanilla category extensions: jei:debug... -[24May2025 20:24:55.873] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering vanilla category extensions: jei:gui... -[24May2025 20:24:55.873] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering vanilla category extensions: jei:internal... -[24May2025 20:24:55.874] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions took 7.299 ms -[24May2025 20:24:55.876] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts... -[24May2025 20:24:55.877] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipe catalysts: jei:minecraft... -[24May2025 20:24:55.879] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipe catalysts: jei:neoforge_gui... -[24May2025 20:24:55.879] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipe catalysts: jei:debug... -[24May2025 20:24:55.879] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipe catalysts: jei:gui... -[24May2025 20:24:55.879] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipe catalysts: jei:internal... -[24May2025 20:24:55.880] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts took 3.070 ms -[24May2025 20:24:55.882] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building recipe registry... -[24May2025 20:24:55.906] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building recipe registry took 22.70 ms -[24May2025 20:24:55.908] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins... -[24May2025 20:24:55.909] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering advanced plugins: jei:minecraft... -[24May2025 20:24:55.909] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering advanced plugins: jei:neoforge_gui... -[24May2025 20:24:55.910] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering advanced plugins: jei:debug... -[24May2025 20:24:55.910] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering advanced plugins: jei:gui... -[24May2025 20:24:55.910] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering advanced plugins: jei:internal... -[24May2025 20:24:55.910] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins took 1.443 ms -[24May2025 20:24:55.912] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes... -[24May2025 20:24:55.913] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:minecraft... -[24May2025 20:24:55.970] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:crafting, recipeClass=class net.minecraft.world.item.crafting.RecipeHolder] -[24May2025 20:24:56.058] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:crafting, recipeClass=class net.minecraft.world.item.crafting.RecipeHolder] -[24May2025 20:24:56.082] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:stonecutting, recipeClass=class net.minecraft.world.item.crafting.RecipeHolder] -[24May2025 20:24:56.090] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:smelting, recipeClass=class net.minecraft.world.item.crafting.RecipeHolder] -[24May2025 20:24:56.093] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:smoking, recipeClass=class net.minecraft.world.item.crafting.RecipeHolder] -[24May2025 20:24:56.094] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:blasting, recipeClass=class net.minecraft.world.item.crafting.RecipeHolder] -[24May2025 20:24:56.095] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:campfire_cooking, recipeClass=class net.minecraft.world.item.crafting.RecipeHolder] -[24May2025 20:24:56.105] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:fuel, recipeClass=interface mezz.jei.api.recipe.vanilla.IJeiFuelingRecipe] -[24May2025 20:24:56.153] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:anvil, recipeClass=interface mezz.jei.api.recipe.vanilla.IJeiAnvilRecipe] -[24May2025 20:24:56.225] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:smithing, recipeClass=class net.minecraft.world.item.crafting.RecipeHolder] -[24May2025 20:24:56.261] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:compostable, recipeClass=interface mezz.jei.api.recipe.vanilla.IJeiCompostingRecipe] -[24May2025 20:24:56.377] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:brewing, recipeClass=interface mezz.jei.api.recipe.vanilla.IJeiBrewingRecipe] -[24May2025 20:24:56.395] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:minecraft took 481.9 milliseconds -[24May2025 20:24:56.395] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:neoforge_gui... -[24May2025 20:24:56.395] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:debug... -[24May2025 20:24:56.395] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:gui... -[24May2025 20:24:56.395] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:internal... -[24May2025 20:24:56.399] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: #minecraft:strider_warm_blocks (minecraft:strider_warm_blocks) -[24May2025 20:24:56.400] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: #minecraft:invalid_spawn_inside (minecraft:invalid_spawn_inside) -[24May2025 20:24:56.401] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: #minecraft:incorrect_for_netherite_tool (minecraft:incorrect_for_netherite_tool) -[24May2025 20:24:56.401] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: Needs Netherite Tools (neoforge:needs_netherite_tool) -[24May2025 20:24:56.402] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: #minecraft:candle_cakes (minecraft:candle_cakes) -[24May2025 20:24:56.404] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: #minecraft:portals (minecraft:portals) -[24May2025 20:24:56.404] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: Relocation Not Supported (c:relocation_not_supported) -[24May2025 20:24:56.404] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: #minecraft:fire (minecraft:fire) -[24May2025 20:24:56.407] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: #minecraft:incorrect_for_diamond_tool (minecraft:incorrect_for_diamond_tool) -[24May2025 20:24:56.408] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: Ropes (c:ropes) -[24May2025 20:24:56.409] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: Enderman Place On Blacklist (neoforge:enderman_place_on_blacklist) -[24May2025 20:24:56.410] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:block tag: #minecraft:air (minecraft:air) -[24May2025 20:24:56.410] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:tag_recipes/block, recipeClass=interface mezz.jei.library.plugins.jei.tags.ITagInfoRecipe] -[24May2025 20:24:56.530] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:item tag: Ropes (c:ropes) -[24May2025 20:24:56.533] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:item tag: Candies (c:foods/candy) -[24May2025 20:24:56.535] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:tag_recipes/item, recipeClass=interface mezz.jei.library.plugins.jei.tags.ITagInfoRecipe] -[24May2025 20:24:56.584] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Honey (c:honey) -[24May2025 20:24:56.585] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Suspicious Stew (c:suspicious_stew) -[24May2025 20:24:56.585] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Beetroot Soup (c:beetroot_soup) -[24May2025 20:24:56.586] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Potion (c:potion) -[24May2025 20:24:56.586] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Milk (c:milk) -[24May2025 20:24:56.586] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Rabbit Stew (c:rabbit_stew) -[24May2025 20:24:56.586] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Experience (c:experience) -[24May2025 20:24:56.586] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Gaseous (c:gaseous) -[24May2025 20:24:56.586] [Render thread/DEBUG] [mezz.jei.library.plugins.jei.tags.TagInfoRecipeMaker/]: No valid ingredients found for minecraft:fluid tag: Mushroom Stew (c:mushroom_stew) -[24May2025 20:24:56.586] [Render thread/DEBUG] [mezz.jei.library.recipes.RecipeManagerInternal/]: Adding recipes: RecipeType[uid=minecraft:tag_recipes/fluid, recipeClass=interface mezz.jei.library.plugins.jei.tags.ITagInfoRecipe] -[24May2025 20:24:56.587] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:internal took 191.4 milliseconds -[24May2025 20:24:56.588] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes took 675.8 ms -[24May2025 20:24:56.612] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers... -[24May2025 20:24:56.613] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes transfer handlers: jei:minecraft... -[24May2025 20:24:56.620] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes transfer handlers: jei:neoforge_gui... -[24May2025 20:24:56.620] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes transfer handlers: jei:debug... -[24May2025 20:24:56.620] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes transfer handlers: jei:gui... -[24May2025 20:24:56.620] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes transfer handlers: jei:internal... -[24May2025 20:24:56.620] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers took 7.863 ms -[24May2025 20:24:56.642] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building runtime... -[24May2025 20:24:56.660] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers... -[24May2025 20:24:56.661] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering gui handlers: jei:minecraft... -[24May2025 20:24:56.669] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering gui handlers: jei:neoforge_gui... -[24May2025 20:24:56.669] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering gui handlers: jei:debug... -[24May2025 20:24:56.669] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering gui handlers: jei:gui... -[24May2025 20:24:56.684] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering gui handlers: jei:gui took 14.04 milliseconds -[24May2025 20:24:56.684] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering gui handlers: jei:internal... -[24May2025 20:24:56.686] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers took 24.97 ms -[24May2025 20:24:56.696] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering Runtime... -[24May2025 20:24:56.698] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Runtime: jei:minecraft... -[24May2025 20:24:56.698] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Runtime: jei:neoforge_gui... -[24May2025 20:24:56.704] [Render thread/INFO] [mezz.jei.gui.startup.JeiGuiStarter/]: Starting JEI GUI -[24May2025 20:24:56.705] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building ingredient list... -[24May2025 20:24:56.708] [Render thread/DEBUG] [mezz.jei.gui.ingredients.IngredientListElementFactory/]: Registering ingredients: ItemStack -[24May2025 20:24:56.798] [Render thread/DEBUG] [mezz.jei.gui.ingredients.IngredientListElementFactory/]: Registering ingredients: FluidStack -[24May2025 20:24:56.800] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building ingredient list took 93.96 ms -[24May2025 20:24:56.800] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building ingredient filter... -[24May2025 20:24:56.896] [Render thread/INFO] [mezz.jei.gui.ingredients.IngredientFilter/]: Adding 1765 ingredients -[24May2025 20:24:57.311] [JEI Config Save Delay/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Saving config file: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-mod-id-format.ini -[24May2025 20:24:57.311] [JEI Config Save Delay/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Saving config file: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-debug.ini -[24May2025 20:24:57.312] [JEI Config Save Delay/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Saving config file: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-colors.ini -[24May2025 20:24:57.319] [JEI Config Save Delay/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Saving config file: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-client.ini -[24May2025 20:24:57.757] [Render thread/INFO] [mezz.jei.gui.ingredients.IngredientFilter/]: Added 1765 ingredients -[24May2025 20:24:57.759] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building ingredient filter took 958.1 ms -[24May2025 20:24:57.827] [JEI Config File Watcher/DEBUG] [mezz.jei.common.config.file.FileWatcherThread/]: Detected changes in files: -/home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-mod-id-format.ini -/home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-debug.ini -/home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-colors.ini -/home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-client.ini -[24May2025 20:24:57.865] [Render thread/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Skipping loading config file, it was just saved by us: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-client.ini -[24May2025 20:24:57.930] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Runtime: jei:neoforge_gui took 1.232 seconds -[24May2025 20:24:57.931] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Runtime: jei:debug... -[24May2025 20:24:57.931] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Runtime: jei:gui... -[24May2025 20:24:57.931] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Runtime: jei:internal... -[24May2025 20:24:57.931] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering Runtime took 1.235 s -[24May2025 20:24:57.933] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building runtime took 1.291 s -[24May2025 20:24:57.934] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime... -[24May2025 20:24:57.936] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime: jei:minecraft... -[24May2025 20:24:57.936] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime: jei:neoforge_gui... -[24May2025 20:24:57.936] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime: jei:debug... -[24May2025 20:24:57.936] [Render thread/DEBUG] [mezz.jei.common.config.file.ConfigSerializer/]: Skipping loading config file, it was just saved by us: /home/cow/cawezs_mantle_to_stratus/run/config/jei/jei-debug.ini -[24May2025 20:24:57.936] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime: jei:gui... -[24May2025 20:24:57.936] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime: jei:internal... -[24May2025 20:24:57.937] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime took 2.359 ms -[24May2025 20:24:57.937] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Starting JEI took 2.632 s -[24May2025 20:24:57.997] [Render thread/INFO] [net.minecraft.advancements.AdvancementTree/]: Loaded 191 advancements -[24May2025 20:25:00.937] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... -[24May2025 20:25:01.092] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[24May2025 20:25:01.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths -[24May2025 20:25:01.298] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted -[24May2025 20:25:01.323] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights -[24May2025 20:25:01.345] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[24May2025 20:25:01.364] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[24May2025 20:25:01.400] [Server thread/DEBUG] [net.neoforged.neoforge.common.CommonHooks/WP]: Gathered mod list to write to world save New World -[24May2025 20:25:07.814] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2034ms or 40 ticks behind -[24May2025 20:25:20.591] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Survival Mode] -[24May2025 20:25:20.610] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Survival Mode -[24May2025 20:25:29.723] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2143ms or 42 ticks behind -[24May2025 20:25:35.675] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! -[24May2025 20:25:35.684] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver received class net.neoforged.neoforge.client.event.ClientPlayerNetworkEvent$LoggingOut -[24May2025 20:25:35.684] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from JEI_STARTED to LISTENING -[24May2025 20:25:35.684] [Render thread/INFO] [mezz.jei.library.startup.JeiStarter/]: Stopping JEI -[24May2025 20:25:35.685] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable... -[24May2025 20:25:35.686] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime Unavailable: jei:minecraft... -[24May2025 20:25:35.686] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime Unavailable: jei:neoforge_gui... -[24May2025 20:25:35.686] [Render thread/INFO] [mezz.jei.neoforge.plugins.neoforge.NeoForgeGuiPlugin/]: Stopping JEI GUI -[24May2025 20:25:35.695] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime Unavailable: jei:debug... -[24May2025 20:25:35.695] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime Unavailable: jei:gui... -[24May2025 20:25:35.695] [Render thread/DEBUG] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Sending Runtime Unavailable: jei:internal... -[24May2025 20:25:35.696] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected -[24May2025 20:25:35.696] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable took 10.56 ms -[24May2025 20:25:35.696] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game -[24May2025 20:25:35.739] [Server thread/INFO] [net.minecraft.server.network.ServerCommonPacketListenerImpl/]: Stopping singleplayer server as player logged out -[24May2025 20:25:35.779] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server -[24May2025 20:25:35.781] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players -[24May2025 20:25:35.781] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds -[24May2025 20:25:37.469] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[24May2025 20:25:37.802] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths -[24May2025 20:25:37.824] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted -[24May2025 20:25:37.847] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights -[24May2025 20:25:37.867] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[24May2025 20:25:37.889] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[24May2025 20:25:37.920] [Server thread/DEBUG] [net.neoforged.neoforge.common.CommonHooks/WP]: Gathered mod list to write to world save New World -[24May2025 20:25:37.944] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (New World (5)): All chunks are saved -[24May2025 20:25:37.944] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (depths): All chunks are saved -[24May2025 20:25:37.944] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (inverted): All chunks are saved -[24May2025 20:25:37.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (heights): All chunks are saved -[24May2025 20:25:37.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved -[24May2025 20:25:37.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved -[24May2025 20:25:37.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved -[24May2025 20:25:38.057] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Unloading configs type SERVER +[24May2025 23:22:25.613] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld +[24May2025 23:22:26.316] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[24May2025 23:22:26.316] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[24May2025 23:22:26.652] [Server thread/INFO] [net.neoforged.neoforge.server.permission.PermissionAPI/]: Successfully initialized permission handler neoforge:default_handler +[24May2025 23:22:26.656] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 1030 ms +[24May2025 23:22:26.780] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 12, from 10 +[24May2025 23:22:26.780] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0 +[24May2025 23:22:26.809] [Render thread/DEBUG] [io.netty.channel.MultithreadEventLoopGroup/]: -Dio.netty.eventLoopThreads: 32 +[24May2025 23:22:26.821] [Render thread/DEBUG] [io.netty.util.concurrent.GlobalEventExecutor/]: -Dio.netty.globalEventExecutor.quietPeriodSeconds: 1 +[24May2025 23:22:26.834] [Render thread/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.noKeySetOptimization: false +[24May2025 23:22:26.834] [Render thread/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.selectorAutoRebuildThreshold: 512 +[24May2025 23:22:26.843] [Render thread/DEBUG] [io.netty.util.internal.PlatformDependent/]: org.jctools-core.MpscChunkedArrayQueue: available +[24May2025 23:22:26.867] [Render thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.processId: 57084 (auto-detected) +[24May2025 23:22:26.871] [Render thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv4Stack: false +[24May2025 23:22:26.871] [Render thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv6Addresses: system +[24May2025 23:22:26.874] [Render thread/DEBUG] [io.netty.util.NetUtilInitializations/]: Loopback interface: lo (lo, 0:0:0:0:0:0:0:1%lo) +[24May2025 23:22:26.875] [Render thread/DEBUG] [io.netty.util.NetUtil/]: /proc/sys/net/core/somaxconn: 4096 +[24May2025 23:22:26.876] [Render thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.machineId: fc:b0:de:ff:fe:18:0e:7d (auto-detected) +[24May2025 23:22:26.976] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.maxCapacityPerThread: 4096 +[24May2025 23:22:26.976] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.ratio: 8 +[24May2025 23:22:26.976] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.chunkSize: 32 +[24May2025 23:22:26.976] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.blocking: false +[24May2025 23:22:26.977] [Render thread/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.batchFastThreadLocalOnly: true +[24May2025 23:22:27.206] [Netty Server IO #1/DEBUG] [net.neoforged.neoforge.network.filters.NetworkFilters/]: Injected net.neoforged.neoforge.network.filters.GenericPacketSplitter@3785e5e2 into net.minecraft.network.Connection@7700af74 +[24May2025 23:22:27.225] [Netty Local Client IO #0/DEBUG] [net.neoforged.neoforge.network.filters.NetworkFilters/]: Injected net.neoforged.neoforge.network.filters.GenericPacketSplitter@4ebbdc37 into net.minecraft.network.Connection@6ed2d18f +[24May2025 23:22:28.192] [Netty Server IO #1/DEBUG] [net.neoforged.neoforge.network.filters.NetworkFilters/]: Injected net.neoforged.neoforge.network.filters.GenericPacketSplitter@abaa89f into net.minecraft.network.Connection@7700af74 +[24May2025 23:22:28.319] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:ebe0799b] logged in with entity id 125 at (-51.20221204115174, 60.0, -114.65572992306765) +[24May2025 23:22:28.480] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game +[24May2025 23:22:30.591] [Render thread/INFO] [net.minecraft.advancements.AdvancementTree/]: Loaded 244 advancements +[24May2025 23:22:32.763] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2007ms or 40 ticks behind +[24May2025 23:22:34.830] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] [Debug]: Copied location to clipboard +[24May2025 23:22:38.327] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... +[24May2025 23:22:38.462] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[24May2025 23:22:38.581] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths +[24May2025 23:22:38.608] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[24May2025 23:22:38.631] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted +[24May2025 23:22:38.651] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[24May2025 23:22:38.672] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights +[24May2025 23:22:38.712] [Server thread/DEBUG] [net.neoforged.neoforge.common.CommonHooks/WP]: Gathered mod list to write to world save New World +[24May2025 23:22:39.705] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... +[24May2025 23:22:39.777] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[24May2025 23:22:39.875] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths +[24May2025 23:22:39.885] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[24May2025 23:22:39.899] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted +[24May2025 23:22:39.908] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[24May2025 23:22:39.918] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights +[24May2025 23:22:39.940] [Server thread/DEBUG] [net.neoforged.neoforge.common.CommonHooks/WP]: Gathered mod list to write to world save New World +[24May2025 23:22:50.833] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Teleported Dev to -51.200000, 60.000000, -114.660000] +[24May2025 23:22:51.390] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Teleported Dev to -51.200000, 60.000000, -114.660000 +[24May2025 23:22:52.654] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] +[24May2025 23:22:52.665] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode +[24May2025 23:22:58.672] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Applied effect Regeneration to Dev] +[24May2025 23:22:58.701] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Applied effect Regeneration to Dev +[24May2025 23:23:06.764] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Survival Mode] +[24May2025 23:23:06.767] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Survival Mode +[24May2025 23:23:11.162] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Summoned new Nymbus] +[24May2025 23:23:11.165] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Summoned new Nymbus +[24May2025 23:23:17.022] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2016ms or 40 ticks behind +[24May2025 23:23:23.453] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Summoned new Nymbus] +[24May2025 23:23:23.463] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Summoned new Nymbus +[24May2025 23:23:35.670] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev blew up +[24May2025 23:23:35.681] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Dev blew up +[24May2025 23:23:37.607] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! +[24May2025 23:23:37.657] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected +[24May2025 23:23:37.657] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game +[24May2025 23:23:37.682] [Server thread/INFO] [net.minecraft.server.network.ServerCommonPacketListenerImpl/]: Stopping singleplayer server as player logged out +[24May2025 23:23:37.706] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server +[24May2025 23:23:37.707] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players +[24May2025 23:23:37.707] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds +[24May2025 23:23:37.728] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[24May2025 23:23:37.767] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths +[24May2025 23:23:37.787] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[24May2025 23:23:37.803] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted +[24May2025 23:23:37.919] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[24May2025 23:23:37.974] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights +[24May2025 23:23:37.994] [Server thread/DEBUG] [net.neoforged.neoforge.common.CommonHooks/WP]: Gathered mod list to write to world save New World +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (New World): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (depths): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (inverted): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (heights): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved +[24May2025 23:23:38.145] [Server thread/DEBUG] [net.neoforged.fml.config.ConfigTracker/CONFIG]: Unloading configs type SERVER diff --git a/run/logs/latest.log b/run/logs/latest.log index 50444af..5bf9421 100644 --- a/run/logs/latest.log +++ b/run/logs/latest.log @@ -1,178 +1,130 @@ -[24May2025 20:24:15.204] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, 21.1.92, --assetIndex, 17, --assetsDir, /home/cow/.mcreator/gradle/caches/neoformruntime/assets, --gameDir, ., --fml.neoForgeVersion, 21.1.92, --fml.fmlVersion, 4.0.34, --fml.mcVersion, 1.21.1, --fml.neoFormVersion, 20240808.144430] -[24May2025 20:24:15.209] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: JVM identified as Eclipse Adoptium OpenJDK 64-Bit Server VM 21.0.5+11-LTS -[24May2025 20:24:15.212] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 11.0.4+main.d2e20e43 starting: java version 21.0.5 by Eclipse Adoptium; OS Linux arch amd64 version 6.8.0-58-generic -[24May2025 20:24:15.383] [main/WARN] [net.neoforged.fml.loading.FMLConfig/CORE]: Configuration file /home/cow/cawezs_mantle_to_stratus/run/config/fml.toml is not correct. Correcting -[24May2025 20:24:15.434] [main/INFO] [net.neoforged.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow -[24May2025 20:24:15.743] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 -[24May2025 20:24:15.874] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 -[24May2025 20:24:16.074] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.7 Source=union:/home/cow/.mcreator/gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/2af2f021d8e02a0220dc27a7a72b4666d66d44ca/sponge-mixin-0.15.2+mixin.0.8.7.jar%23119!/ Service=ModLauncher Env=CLIENT -[24May2025 20:24:16.092] [main/WARN] [net.neoforged.fml.loading.FMLConfig/CORE]: Configuration file /home/cow/cawezs_mantle_to_stratus/run/config/fml.toml is not correct. Correcting -[24May2025 20:24:16.632] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: AMD Radeon 780M (radeonsi, gfx1103_r1, LLVM 19.1.1, DRM 3.57, 6.8.0-58-generic) GL version 4.6 (Core Profile) Mesa 24.2.8-1ubuntu1~24.04.1, AMD -[24May2025 20:24:16.777] [main/INFO] [net.neoforged.fml.loading.moddiscovery.locators.JarInJarDependencyLocator/]: Found 2 dependencies adding them to mods collection -[24May2025 20:24:16.780] [main/INFO] [net.neoforged.fml.loading.moddiscovery.ModDiscoverer/]: +[24May2025 23:21:39.606] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, 21.1.92, --assetIndex, 17, --assetsDir, /home/cow/.mcreator/gradle/caches/neoformruntime/assets, --gameDir, ., --fml.neoForgeVersion, 21.1.92, --fml.fmlVersion, 4.0.34, --fml.mcVersion, 1.21.1, --fml.neoFormVersion, 20240808.144430] +[24May2025 23:21:39.608] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: JVM identified as Eclipse Adoptium OpenJDK 64-Bit Server VM 21.0.5+11-LTS +[24May2025 23:21:39.610] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 11.0.4+main.d2e20e43 starting: java version 21.0.5 by Eclipse Adoptium; OS Linux arch amd64 version 6.8.0-58-generic +[24May2025 23:21:39.714] [main/INFO] [net.neoforged.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow +[24May2025 23:21:39.799] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 +[24May2025 23:21:39.858] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 +[24May2025 23:21:39.953] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.7 Source=union:/home/cow/.mcreator/gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/2af2f021d8e02a0220dc27a7a72b4666d66d44ca/sponge-mixin-0.15.2+mixin.0.8.7.jar%23119!/ Service=ModLauncher Env=CLIENT +[24May2025 23:21:40.079] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: AMD Radeon 780M (radeonsi, gfx1103_r1, LLVM 19.1.1, DRM 3.57, 6.8.0-58-generic) GL version 4.6 (Core Profile) Mesa 24.2.8-1ubuntu1~24.04.1, AMD +[24May2025 23:21:40.162] [main/INFO] [net.neoforged.fml.loading.moddiscovery.locators.JarInJarDependencyLocator/]: Found 2 dependencies adding them to mods collection +[24May2025 23:21:40.164] [main/INFO] [net.neoforged.fml.loading.moddiscovery.ModDiscoverer/]: Mod List: Name Version (Mod Id) cawezs_mantle_to_stratus 1.0.0 (cawezs_mantle_to_stratus) - Just Enough Items 19.21.0.247 (jei) Minecraft 1.21.1 (minecraft) NeoForge 21.1.92 (neoforge) -[24May2025 20:24:18.645] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, 21.1.92, --gameDir, ., --assetsDir, /home/cow/.mcreator/gradle/caches/neoformruntime/assets, --assetIndex, 17] -[24May2025 20:24:22.844] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 229 Datafixer optimizations took 822 milliseconds -[24May2025 20:24:25.431] [pool-8-thread-1/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). -[24May2025 20:24:32.383] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] -[24May2025 20:24:32.386] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] -[24May2025 20:24:32.390] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] -[24May2025 20:24:32.392] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] -[24May2025 20:24:32.393] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] -[24May2025 20:24:32.601] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar%23172!/assets/.mcassetsroot' uses unexpected schema -[24May2025 20:24:32.602] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar%23172!/data/.mcassetsroot' uses unexpected schema -[24May2025 20:24:32.675] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD] -[24May2025 20:24:32.688] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev -[24May2025 20:24:32.858] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.3+5 -[24May2025 20:24:35.991] [modloading-worker-0/INFO] [net.neoforged.neoforge.common.NeoForgeMod/NEOFORGE-MOD]: NeoForge mod loading, version 21.1.92, for MC 1.21.1 -[24May2025 20:24:36.029] [modloading-worker-0/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager... -[24May2025 20:24:36.031] [modloading-worker-0/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager took 984.1 μs -[24May2025 20:24:36.489] [Render thread/INFO] [net.neoforged.neoforge.gametest.GameTestHooks/]: Enabled Gametest Namespaces: [] -[24May2025 20:24:36.654] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla, mod_resources, mod/neoforge, mod/cawezs_mantle_to_stratus, mod/jei -[24May2025 20:24:36.745] [Worker-Main-13/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.1.05.hex, loading -[24May2025 20:24:36.918] [Worker-Main-2/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_jp_patch-15.1.05.hex, loading -[24May2025 20:24:40.636] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play -[24May2025 20:24:40.637] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break -[24May2025 20:24:40.963] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device Family 17h/19h HD Audio Controller Analog Stereo -[24May2025 20:24:40.964] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started -[24May2025 20:24:41.180] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x2 minecraft:textures/atlas/blocks.png-atlas -[24May2025 20:24:41.213] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/signs.png-atlas -[24May2025 20:24:41.214] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/shield_patterns.png-atlas -[24May2025 20:24:41.217] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/banner_patterns.png-atlas -[24May2025 20:24:41.220] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x2 minecraft:textures/atlas/armor_trims.png-atlas -[24May2025 20:24:41.229] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/chest.png-atlas -[24May2025 20:24:41.229] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x2 minecraft:textures/atlas/decorated_pot.png-atlas -[24May2025 20:24:41.230] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/beds.png-atlas -[24May2025 20:24:41.231] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/shulker_boxes.png-atlas -[24May2025 20:24:41.364] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x0 minecraft:textures/atlas/particles.png-atlas -[24May2025 20:24:41.369] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x0 minecraft:textures/atlas/paintings.png-atlas -[24May2025 20:24:41.370] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas -[24May2025 20:24:41.371] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 64x64x0 minecraft:textures/atlas/map_decorations.png-atlas -[24May2025 20:24:41.371] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x0 minecraft:textures/atlas/gui.png-atlas -[24May2025 20:24:41.407] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. -[24May2025 20:24:41.507] [Render thread/INFO] [net.neoforged.neoforge.client.entity.animation.json.AnimationLoader/]: Loaded 0 entity animations -[24May2025 20:24:41.507] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 jei:textures/atlas/gui.png-atlas -[24May2025 20:24:45.224] [Render thread/ERROR] [net.minecraft.world.level.biome.MobSpawnSettings/]: Spawn data: Not a JSON object: null -[24May2025 20:24:46.423] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 1346 recipes -[24May2025 20:24:46.676] [Render thread/INFO] [net.minecraft.advancements.AdvancementTree/]: Loaded 1411 advancements -[24May2025 20:24:47.421] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver received class net.neoforged.neoforge.event.TagsUpdatedEvent too early, ignoring -[24May2025 20:24:47.521] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.21.1 -[24May2025 20:24:47.522] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair -[24May2025 20:24:47.666] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pufferfish that was registered with WATER_AMBIENT mob category but was added under CREATURE mob category for cawezs_mantle_to_stratus:buriedwetlandcaves biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.668] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pig that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:cliffs biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.673] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pig that was registered with CREATURE mob category but was added under AMBIENT mob category for cawezs_mantle_to_stratus:crystals biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.705] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:skeleton_horse that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:overgrowncaves biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.715] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:sheep that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:trees biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. -[24May2025 20:24:47.724] [Server thread/ERROR] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: The following entities have not registered to the RegisterSpawnPlacementsEvent, but a spawn entry was found. This will mean that the entity doesn't have restrictions on its spawn location, please register a spawn placement for the entity, you can register with NO_RESTRICTIONS if you don't want any restrictions. - - minecraft:allay +[24May2025 23:21:41.567] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, 21.1.92, --gameDir, ., --assetsDir, /home/cow/.mcreator/gradle/caches/neoformruntime/assets, --assetIndex, 17] +[24May2025 23:21:45.598] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 229 Datafixer optimizations took 796 milliseconds +[24May2025 23:21:48.402] [pool-7-thread-1/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). +[24May2025 23:21:53.977] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] +[24May2025 23:21:53.979] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] +[24May2025 23:21:53.983] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] +[24May2025 23:21:53.985] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] +[24May2025 23:21:53.987] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] +[24May2025 23:21:54.195] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar%23171!/assets/.mcassetsroot' uses unexpected schema +[24May2025 23:21:54.195] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/home/cow/cawezs_mantle_to_stratus/build/moddev/artifacts/neoforge-21.1.92.jar%23171!/data/.mcassetsroot' uses unexpected schema +[24May2025 23:21:54.245] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD] +[24May2025 23:21:54.259] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev +[24May2025 23:21:54.465] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.3+5 +[24May2025 23:21:57.561] [modloading-worker-0/INFO] [net.neoforged.neoforge.common.NeoForgeMod/NEOFORGE-MOD]: NeoForge mod loading, version 21.1.92, for MC 1.21.1 +[24May2025 23:21:58.326] [Render thread/INFO] [net.neoforged.neoforge.gametest.GameTestHooks/]: Enabled Gametest Namespaces: [] +[24May2025 23:21:58.534] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla, mod_resources, mod/neoforge, mod/cawezs_mantle_to_stratus +[24May2025 23:21:58.648] [Worker-Main-13/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.1.05.hex, loading +[24May2025 23:21:58.791] [Worker-Main-12/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_jp_patch-15.1.05.hex, loading +[24May2025 23:22:02.736] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play +[24May2025 23:22:02.737] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break +[24May2025 23:22:02.896] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device Family 17h/19h HD Audio Controller Analog Stereo +[24May2025 23:22:02.898] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started +[24May2025 23:22:03.383] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas +[24May2025 23:22:03.477] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x4 minecraft:textures/atlas/signs.png-atlas +[24May2025 23:22:03.480] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas +[24May2025 23:22:03.484] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas +[24May2025 23:22:03.488] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x4 minecraft:textures/atlas/armor_trims.png-atlas +[24May2025 23:22:03.507] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas +[24May2025 23:22:03.509] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x4 minecraft:textures/atlas/decorated_pot.png-atlas +[24May2025 23:22:03.510] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas +[24May2025 23:22:03.512] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas +[24May2025 23:22:03.662] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x0 minecraft:textures/atlas/particles.png-atlas +[24May2025 23:22:03.668] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x0 minecraft:textures/atlas/paintings.png-atlas +[24May2025 23:22:03.669] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[24May2025 23:22:03.670] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 64x64x0 minecraft:textures/atlas/map_decorations.png-atlas +[24May2025 23:22:03.670] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x0 minecraft:textures/atlas/gui.png-atlas +[24May2025 23:22:03.721] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. +[24May2025 23:22:03.820] [Render thread/INFO] [net.neoforged.neoforge.client.entity.animation.json.AnimationLoader/]: Loaded 0 entity animations +[24May2025 23:22:19.853] [Render thread/ERROR] [net.minecraft.world.level.biome.MobSpawnSettings/]: Spawn data: Not a JSON object: null +[24May2025 23:22:20.904] [Worker-Main-7/ERROR] [net.minecraft.world.level.storage.loot.LootDataType/]: Couldn't parse element ResourceKey[minecraft:root / minecraft:loot_table]:cawezs_dimensional_connectivity:blocks/platform - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:cave_air +[24May2025 23:22:21.361] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 1346 recipes +[24May2025 23:22:21.602] [Render thread/INFO] [net.minecraft.advancements.AdvancementTree/]: Loaded 1411 advancements +[24May2025 23:22:22.294] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.21.1 +[24May2025 23:22:22.295] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair +[24May2025 23:22:22.376] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pufferfish that was registered with WATER_AMBIENT mob category but was added under CREATURE mob category for cawezs_mantle_to_stratus:buriedwetlandcaves biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.377] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pig that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:cliffs biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.378] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:pig that was registered with CREATURE mob category but was added under AMBIENT mob category for cawezs_mantle_to_stratus:crystals biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.393] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:skeleton_horse that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:overgrowncaves biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.398] [Server thread/WARN] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: Detected minecraft:sheep that was registered with CREATURE mob category but was added under MONSTER mob category for cawezs_mantle_to_stratus:trees biome! Mobs should be added to biomes under the same mob category that the mob was registered as to prevent mob cap spawning issues. +[24May2025 23:22:22.404] [Server thread/ERROR] [net.neoforged.neoforge.server.ServerLifecycleHooks/]: The following entities have not registered to the RegisterSpawnPlacementsEvent, but a spawn entry was found. This will mean that the entity doesn't have restrictions on its spawn location, please register a spawn placement for the entity, you can register with NO_RESTRICTIONS if you don't want any restrictions. - minecraft:camel + - minecraft:allay - minecraft:piglin_brute -[24May2025 20:24:50.813] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld -[24May2025 20:24:51.121] [Server thread/ERROR] [net.minecraft.world.level.chunk.storage.ChunkSerializer/]: Recoverable errors when loading section [-6, 4, -12]: (Unknown registry key in ResourceKey[minecraft:root / minecraft:block]: cawezs_mantle_to_stratus:ancient_sunlight -> using default) -[24May2025 20:24:51.398] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[24May2025 20:24:51.398] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[24May2025 20:24:51.767] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 930 ms -[24May2025 20:24:51.773] [Server thread/INFO] [net.neoforged.neoforge.server.permission.PermissionAPI/]: Successfully initialized permission handler neoforge:default_handler -[24May2025 20:24:51.907] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 12, from 10 -[24May2025 20:24:51.907] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0 -[24May2025 20:24:52.974] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver received class net.neoforged.neoforge.event.TagsUpdatedEvent -[24May2025 20:24:53.626] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:effd9a3d] logged in with entity id 103 at (-81.60545655208398, 65.0, -182.6318018011619) -[24May2025 20:24:53.779] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game -[24May2025 20:24:55.301] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver received class net.neoforged.neoforge.client.event.RecipesUpdatedEvent -[24May2025 20:24:55.302] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from LISTENING to JEI_STARTED -[24May2025 20:24:55.304] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Starting JEI... -[24May2025 20:24:55.330] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes... -[24May2025 20:24:55.347] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering item subtypes: jei:minecraft took 14.91 milliseconds -[24May2025 20:24:55.349] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes took 17.99 ms -[24May2025 20:24:55.350] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes... -[24May2025 20:24:55.355] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes took 4.663 ms -[24May2025 20:24:55.361] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients... -[24May2025 20:24:55.672] [Render thread/WARN] [mezz.jei.library.plugins.vanilla.ingredients.ItemStackListFactory/]: Item Group has no display items and no search tab display items. Items from this group will be missing from the JEI ingredient list. Operator Utilities -[24May2025 20:24:55.729] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering ingredients: jei:minecraft took 366.4 milliseconds -[24May2025 20:24:55.730] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients took 368.5 ms -[24May2025 20:24:55.730] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering extra ingredients... -[24May2025 20:24:55.732] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering extra ingredients took 1.202 ms -[24May2025 20:24:55.733] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering search ingredient aliases... -[24May2025 20:24:55.735] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering search ingredient aliases took 1.865 ms -[24May2025 20:24:55.771] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering Mod Info... -[24May2025 20:24:55.773] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering Mod Info took 1.698 ms -[24May2025 20:24:55.813] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories... -[24May2025 20:24:55.849] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:minecraft took 34.50 milliseconds -[24May2025 20:24:55.862] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering categories: jei:internal took 12.80 milliseconds -[24May2025 20:24:55.863] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories took 50.22 ms -[24May2025 20:24:55.866] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions... -[24May2025 20:24:55.874] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions took 7.299 ms -[24May2025 20:24:55.876] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts... -[24May2025 20:24:55.880] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts took 3.070 ms -[24May2025 20:24:55.882] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building recipe registry... -[24May2025 20:24:55.906] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building recipe registry took 22.70 ms -[24May2025 20:24:55.908] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins... -[24May2025 20:24:55.910] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins took 1.443 ms -[24May2025 20:24:55.912] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes... -[24May2025 20:24:56.395] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:minecraft took 481.9 milliseconds -[24May2025 20:24:56.587] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering recipes: jei:internal took 191.4 milliseconds -[24May2025 20:24:56.588] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes took 675.8 ms -[24May2025 20:24:56.612] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers... -[24May2025 20:24:56.620] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers took 7.863 ms -[24May2025 20:24:56.642] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building runtime... -[24May2025 20:24:56.660] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers... -[24May2025 20:24:56.684] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering gui handlers: jei:gui took 14.04 milliseconds -[24May2025 20:24:56.686] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers took 24.97 ms -[24May2025 20:24:56.696] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering Runtime... -[24May2025 20:24:56.704] [Render thread/INFO] [mezz.jei.gui.startup.JeiGuiStarter/]: Starting JEI GUI -[24May2025 20:24:56.705] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building ingredient list... -[24May2025 20:24:56.800] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building ingredient list took 93.96 ms -[24May2025 20:24:56.800] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building ingredient filter... -[24May2025 20:24:56.896] [Render thread/INFO] [mezz.jei.gui.ingredients.IngredientFilter/]: Adding 1765 ingredients -[24May2025 20:24:57.757] [Render thread/INFO] [mezz.jei.gui.ingredients.IngredientFilter/]: Added 1765 ingredients -[24May2025 20:24:57.759] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building ingredient filter took 958.1 ms -[24May2025 20:24:57.930] [Render thread/INFO] [mezz.jei.library.load.PluginCallerTimerRunnable/]: Registering Runtime: jei:neoforge_gui took 1.232 seconds -[24May2025 20:24:57.931] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering Runtime took 1.235 s -[24May2025 20:24:57.933] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Building runtime took 1.291 s -[24May2025 20:24:57.934] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime... -[24May2025 20:24:57.937] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime took 2.359 ms -[24May2025 20:24:57.937] [Render thread/INFO] [mezz.jei.core.util.LoggedTimer/]: Starting JEI took 2.632 s -[24May2025 20:24:57.997] [Render thread/INFO] [net.minecraft.advancements.AdvancementTree/]: Loaded 191 advancements -[24May2025 20:25:00.937] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... -[24May2025 20:25:01.092] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[24May2025 20:25:01.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths -[24May2025 20:25:01.298] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted -[24May2025 20:25:01.323] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights -[24May2025 20:25:01.345] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[24May2025 20:25:01.364] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[24May2025 20:25:07.814] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2034ms or 40 ticks behind -[24May2025 20:25:20.591] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Survival Mode] -[24May2025 20:25:20.610] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Survival Mode -[24May2025 20:25:29.723] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2143ms or 42 ticks behind -[24May2025 20:25:35.675] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! -[24May2025 20:25:35.684] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver received class net.neoforged.neoforge.client.event.ClientPlayerNetworkEvent$LoggingOut -[24May2025 20:25:35.684] [Render thread/INFO] [mezz.jei.neoforge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from JEI_STARTED to LISTENING -[24May2025 20:25:35.684] [Render thread/INFO] [mezz.jei.library.startup.JeiStarter/]: Stopping JEI -[24May2025 20:25:35.685] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable... -[24May2025 20:25:35.686] [Render thread/INFO] [mezz.jei.neoforge.plugins.neoforge.NeoForgeGuiPlugin/]: Stopping JEI GUI -[24May2025 20:25:35.696] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected -[24May2025 20:25:35.696] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable took 10.56 ms -[24May2025 20:25:35.696] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game -[24May2025 20:25:35.739] [Server thread/INFO] [net.minecraft.server.network.ServerCommonPacketListenerImpl/]: Stopping singleplayer server as player logged out -[24May2025 20:25:35.779] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server -[24May2025 20:25:35.781] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players -[24May2025 20:25:35.781] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds -[24May2025 20:25:37.469] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[24May2025 20:25:37.802] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths -[24May2025 20:25:37.824] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted -[24May2025 20:25:37.847] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights -[24May2025 20:25:37.867] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[24May2025 20:25:37.889] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[24May2025 20:25:37.944] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (New World (5)): All chunks are saved -[24May2025 20:25:37.944] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (depths): All chunks are saved -[24May2025 20:25:37.944] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (inverted): All chunks are saved -[24May2025 20:25:37.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (heights): All chunks are saved -[24May2025 20:25:37.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved -[24May2025 20:25:37.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved -[24May2025 20:25:37.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved +[24May2025 23:22:25.613] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld +[24May2025 23:22:26.316] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[24May2025 23:22:26.316] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[24May2025 23:22:26.652] [Server thread/INFO] [net.neoforged.neoforge.server.permission.PermissionAPI/]: Successfully initialized permission handler neoforge:default_handler +[24May2025 23:22:26.656] [progressListener/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 1030 ms +[24May2025 23:22:26.780] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 12, from 10 +[24May2025 23:22:26.780] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0 +[24May2025 23:22:28.319] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:ebe0799b] logged in with entity id 125 at (-51.20221204115174, 60.0, -114.65572992306765) +[24May2025 23:22:28.480] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game +[24May2025 23:22:30.591] [Render thread/INFO] [net.minecraft.advancements.AdvancementTree/]: Loaded 244 advancements +[24May2025 23:22:32.763] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2007ms or 40 ticks behind +[24May2025 23:22:34.830] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] [Debug]: Copied location to clipboard +[24May2025 23:22:38.327] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... +[24May2025 23:22:38.462] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[24May2025 23:22:38.581] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths +[24May2025 23:22:38.608] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[24May2025 23:22:38.631] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted +[24May2025 23:22:38.651] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[24May2025 23:22:38.672] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights +[24May2025 23:22:39.705] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... +[24May2025 23:22:39.777] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[24May2025 23:22:39.875] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths +[24May2025 23:22:39.885] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[24May2025 23:22:39.899] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted +[24May2025 23:22:39.908] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[24May2025 23:22:39.918] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights +[24May2025 23:22:50.833] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Teleported Dev to -51.200000, 60.000000, -114.660000] +[24May2025 23:22:51.390] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Teleported Dev to -51.200000, 60.000000, -114.660000 +[24May2025 23:22:52.654] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] +[24May2025 23:22:52.665] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode +[24May2025 23:22:58.672] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Applied effect Regeneration to Dev] +[24May2025 23:22:58.701] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Applied effect Regeneration to Dev +[24May2025 23:23:06.764] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Survival Mode] +[24May2025 23:23:06.767] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Survival Mode +[24May2025 23:23:11.162] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Summoned new Nymbus] +[24May2025 23:23:11.165] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Summoned new Nymbus +[24May2025 23:23:17.022] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2016ms or 40 ticks behind +[24May2025 23:23:23.453] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Summoned new Nymbus] +[24May2025 23:23:23.463] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Summoned new Nymbus +[24May2025 23:23:35.670] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev blew up +[24May2025 23:23:35.681] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Dev blew up +[24May2025 23:23:37.607] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! +[24May2025 23:23:37.657] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected +[24May2025 23:23:37.657] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game +[24May2025 23:23:37.682] [Server thread/INFO] [net.minecraft.server.network.ServerCommonPacketListenerImpl/]: Stopping singleplayer server as player logged out +[24May2025 23:23:37.706] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server +[24May2025 23:23:37.707] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players +[24May2025 23:23:37.707] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds +[24May2025 23:23:37.728] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[24May2025 23:23:37.767] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:depths +[24May2025 23:23:37.787] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[24May2025 23:23:37.803] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:inverted +[24May2025 23:23:37.919] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[24May2025 23:23:37.974] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/cawezs_mantle_to_stratus:heights +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (New World): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (depths): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (inverted): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (heights): All chunks are saved +[24May2025 23:23:38.011] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved diff --git a/run/options.txt b/run/options.txt index 181393d..328a0ef 100644 --- a/run/options.txt +++ b/run/options.txt @@ -1,12 +1,12 @@ version:3955 ao:true biomeBlendRadius:2 -enableVsync:false +enableVsync:true entityDistanceScaling:1.0 entityShadows:true forceUnicodeFont:false japaneseGlyphVariants:false -fov:0.75 +fov:1.0 fovEffectScale:1.0 darknessEffectScale:1.0 glintSpeed:0.5 @@ -16,12 +16,12 @@ fullscreen:false gamma:0.5 graphicsMode:1 guiScale:0 -maxFps:260 -mipmapLevels:2 +maxFps:120 +mipmapLevels:4 narrator:0 particles:0 reducedDebugInfo:false -renderClouds:"false" +renderClouds:"true" renderDistance:12 simulationDistance:12 screenEffectScale:1.0 @@ -38,7 +38,7 @@ realmsNotifications:true showSubtitles:false directionalAudio:false touchscreen:false -bobView:false +bobView:true toggleCrouch:false toggleSprint:false darkMojangStudiosBackground:false @@ -50,7 +50,7 @@ highContrast:false narratorHotkey:true resourcePacks:[] incompatibleResourcePacks:[] -lastServer:localhost:25463 +lastServer: lang:en_us chatVisibility:0 chatOpacity:1.0 @@ -58,7 +58,7 @@ chatLineSpacing:0.0 textBackgroundOpacity:0.5 backgroundForChatOnly:true hideServerAddress:false -advancedItemTooltips:true +advancedItemTooltips:false pauseOnLostFocus:true overrideWidth:0 overrideHeight:0 @@ -121,38 +121,7 @@ key_key.hotbar.6:key.keyboard.6 key_key.hotbar.7:key.keyboard.7 key_key.hotbar.8:key.keyboard.8 key_key.hotbar.9:key.keyboard.9 -key_key.jei.toggleEditMode:key.keyboard.unknown -key_key.jei.cheatOneItem2:key.mouse.right -key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL -key_key.jei.showUses:key.keyboard.u -key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL -key_key.jei.maxTransferRecipeBookmark:key.mouse.left:CONTROL -key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown -key_key.jei.cheatItemStack:key.mouse.left:SHIFT -key_key.jei.copy.recipe.id:key.keyboard.unknown -key_key.jei.showRecipe:key.keyboard.r -key_key.jei.bookmark:key.keyboard.a -key_key.jei.clearSearchBar:key.mouse.right -key_key.jei.recipeBack:key.keyboard.backspace -key_key.jei.nextCategory:key.keyboard.page.down:SHIFT -key_key.jei.nextPage:key.keyboard.unknown -key_key.jei.previousRecipePage:key.keyboard.page.up -key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL -key_key.jei.toggleOverlay:key.keyboard.o:CONTROL -key_key.jei.previousPage:key.keyboard.unknown -key_key.jei.transferRecipeBookmark:key.mouse.left:SHIFT -key_key.jei.focusSearch:key.keyboard.f:CONTROL -key_key.jei.previousSearch:key.keyboard.up -key_key.jei.closeRecipeGui:key.keyboard.escape -key_key.jei.showUses2:key.mouse.right -key_key.jei.showRecipe2:key.mouse.left -key_key.jei.toggleCheatMode:key.keyboard.unknown -key_key.jei.previousCategory:key.keyboard.page.up:SHIFT -key_key.jei.nextSearch:key.keyboard.down -key_key.jei.cheatOneItem:key.mouse.left -key_key.jei.cheatItemStack2:key.mouse.middle -key_key.jei.nextRecipePage:key.keyboard.page.down -soundCategory_master:0.1312348059351161 +soundCategory_master:1.0 soundCategory_music:1.0 soundCategory_record:1.0 soundCategory_weather:1.0 diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/CawezsMantleToStratusMod.java b/src/main/java/net/mcreator/cawezsmantletostratus/CawezsMantleToStratusMod.java index cfa8705..6e9f192 100644 --- a/src/main/java/net/mcreator/cawezsmantletostratus/CawezsMantleToStratusMod.java +++ b/src/main/java/net/mcreator/cawezsmantletostratus/CawezsMantleToStratusMod.java @@ -22,6 +22,7 @@ import net.mcreator.cawezsmantletostratus.world.features.StructureFeature; import net.mcreator.cawezsmantletostratus.network.CawezsMantleToStratusModVariables; import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModTabs; import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModSounds; +import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModMobEffects; import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModItems; import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModFluids; import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModFluidTypes; @@ -56,6 +57,8 @@ public class CawezsMantleToStratusMod { CawezsMantleToStratusModFeatures.REGISTRY.register(modEventBus); StructureFeature.REGISTRY.register(modEventBus); + CawezsMantleToStratusModMobEffects.REGISTRY.register(modEventBus); + CawezsMantleToStratusModFluids.REGISTRY.register(modEventBus); CawezsMantleToStratusModFluidTypes.REGISTRY.register(modEventBus); diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/block/BorderBlock.java b/src/main/java/net/mcreator/cawezsmantletostratus/block/BorderBlock.java new file mode 100644 index 0000000..ef9272c --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/block/BorderBlock.java @@ -0,0 +1,33 @@ + +package net.mcreator.cawezsmantletostratus.block; + +import net.minecraft.world.phys.shapes.VoxelShape; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.core.BlockPos; + +public class BorderBlock extends Block { + public BorderBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.GRAVEL).strength(-1, 3600000).noOcclusion().isRedstoneConductor((bs, br, bp) -> false)); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public VoxelShape getVisualShape(BlockState state, BlockGetter world, BlockPos pos, CollisionContext context) { + return Shapes.empty(); + } + + @Override + public VoxelShape getShape(BlockState state, BlockGetter world, BlockPos pos, CollisionContext context) { + return Shapes.empty(); + } +} diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/block/PlatformBlock.java b/src/main/java/net/mcreator/cawezsmantletostratus/block/PlatformBlock.java new file mode 100644 index 0000000..2729075 --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/block/PlatformBlock.java @@ -0,0 +1,44 @@ + +package net.mcreator.cawezsmantletostratus.block; + +import net.minecraft.world.phys.shapes.VoxelShape; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.item.context.BlockPlaceContext; +import net.minecraft.util.RandomSource; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.core.BlockPos; + +import net.mcreator.cawezsmantletostratus.procedures.PlatformOnTickUpdateProcedure; + +public class PlatformBlock extends Block { + public PlatformBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.EMPTY).strength(1f, 10f).noOcclusion().isRedstoneConductor((bs, br, bp) -> false)); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public VoxelShape getVisualShape(BlockState state, BlockGetter world, BlockPos pos, CollisionContext context) { + return Shapes.empty(); + } + + @Override + public boolean canBeReplaced(BlockState state, BlockPlaceContext context) { + return context.getItemInHand().getItem() != this.asItem(); + } + + @Override + public void tick(BlockState blockstate, ServerLevel world, BlockPos pos, RandomSource random) { + super.tick(blockstate, world, pos, random); + PlatformOnTickUpdateProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ()); + } +} diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModBlocks.java b/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModBlocks.java index bbe491b..d2f2e17 100644 --- a/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModBlocks.java +++ b/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModBlocks.java @@ -10,6 +10,7 @@ import net.neoforged.neoforge.registries.DeferredBlock; import net.minecraft.world.level.block.Block; import net.mcreator.cawezsmantletostratus.block.SolititeBlock; +import net.mcreator.cawezsmantletostratus.block.PlatformBlock; import net.mcreator.cawezsmantletostratus.block.ObsidiliteBlock; import net.mcreator.cawezsmantletostratus.block.HaeliumBlock; import net.mcreator.cawezsmantletostratus.block.FortiteBlock; @@ -17,6 +18,7 @@ import net.mcreator.cawezsmantletostratus.block.EtherialLiquidBlock; import net.mcreator.cawezsmantletostratus.block.EtherialBlockBlock; import net.mcreator.cawezsmantletostratus.block.EndlessScaffoldingBlock; import net.mcreator.cawezsmantletostratus.block.CelerititeBlock; +import net.mcreator.cawezsmantletostratus.block.BorderBlock; import net.mcreator.cawezsmantletostratus.block.BaseGroundBlock; import net.mcreator.cawezsmantletostratus.block.AminaliteBlock; import net.mcreator.cawezsmantletostratus.CawezsMantleToStratusMod; @@ -33,6 +35,8 @@ public class CawezsMantleToStratusModBlocks { public static final DeferredBlock ENDLESS_SCAFFOLDING = REGISTRY.register("endless_scaffolding", EndlessScaffoldingBlock::new); public static final DeferredBlock ETHERIAL_LIQUID = REGISTRY.register("etherial_liquid", EtherialLiquidBlock::new); public static final DeferredBlock ETHERIAL_BLOCK = REGISTRY.register("etherial_block", EtherialBlockBlock::new); + public static final DeferredBlock BORDER = REGISTRY.register("border", BorderBlock::new); + public static final DeferredBlock PLATFORM = REGISTRY.register("platform", PlatformBlock::new); // Start of user code block custom blocks // End of user code block custom blocks } diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModItems.java b/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModItems.java index a48fb2b..71bcd02 100644 --- a/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModItems.java +++ b/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModItems.java @@ -155,6 +155,8 @@ public class CawezsMantleToStratusModItems { public static final DeferredItem ETHERIAL_LIQUID_BUCKET = REGISTRY.register("etherial_liquid_bucket", EtherialLiquidItem::new); public static final DeferredItem ETHERIAL_BLOCK = block(CawezsMantleToStratusModBlocks.ETHERIAL_BLOCK); public static final DeferredItem ANCIENT_SUNLIGHT = REGISTRY.register("ancient_sunlight", AncientSunlightItem::new); + public static final DeferredItem BORDER = block(CawezsMantleToStratusModBlocks.BORDER); + public static final DeferredItem PLATFORM = block(CawezsMantleToStratusModBlocks.PLATFORM); // Start of user code block custom items // End of user code block custom items diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModMobEffects.java b/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModMobEffects.java new file mode 100644 index 0000000..e39b4f5 --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/init/CawezsMantleToStratusModMobEffects.java @@ -0,0 +1,19 @@ + +/* + * MCreator note: This file will be REGENERATED on each build. + */ +package net.mcreator.cawezsmantletostratus.init; + +import net.neoforged.neoforge.registries.DeferredRegister; +import net.neoforged.neoforge.registries.DeferredHolder; + +import net.minecraft.world.effect.MobEffect; +import net.minecraft.core.registries.Registries; + +import net.mcreator.cawezsmantletostratus.potion.DEBUGTELEPORTINGMobEffect; +import net.mcreator.cawezsmantletostratus.CawezsMantleToStratusMod; + +public class CawezsMantleToStratusModMobEffects { + public static final DeferredRegister REGISTRY = DeferredRegister.create(Registries.MOB_EFFECT, CawezsMantleToStratusMod.MODID); + public static final DeferredHolder DEBUGTELEPORTING = REGISTRY.register("debugteleporting", () -> new DEBUGTELEPORTINGMobEffect()); +} diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/potion/DEBUGTELEPORTINGMobEffect.java b/src/main/java/net/mcreator/cawezsmantletostratus/potion/DEBUGTELEPORTINGMobEffect.java new file mode 100644 index 0000000..f409c38 --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/potion/DEBUGTELEPORTINGMobEffect.java @@ -0,0 +1,55 @@ + +package net.mcreator.cawezsmantletostratus.potion; + +import net.neoforged.neoforge.client.extensions.common.RegisterClientExtensionsEvent; +import net.neoforged.neoforge.client.extensions.common.IClientMobEffectExtensions; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.bus.api.SubscribeEvent; + +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.effect.MobEffectInstance; +import net.minecraft.world.effect.MobEffectCategory; +import net.minecraft.world.effect.MobEffect; +import net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen; +import net.minecraft.client.gui.GuiGraphics; + +import net.mcreator.cawezsmantletostratus.procedures.DEBUGTELEPORTINGOnEffectActiveTickProcedure; +import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModMobEffects; + +@EventBusSubscriber(bus = EventBusSubscriber.Bus.MOD) +public class DEBUGTELEPORTINGMobEffect extends MobEffect { + public DEBUGTELEPORTINGMobEffect() { + super(MobEffectCategory.NEUTRAL, -16777216); + } + + @Override + public boolean shouldApplyEffectTickThisTick(int duration, int amplifier) { + return true; + } + + @Override + public boolean applyEffectTick(LivingEntity entity, int amplifier) { + DEBUGTELEPORTINGOnEffectActiveTickProcedure.execute(entity.level(), entity.getX(), entity.getY(), entity.getZ(), entity); + return super.applyEffectTick(entity, amplifier); + } + + @SubscribeEvent + public static void registerMobEffectExtensions(RegisterClientExtensionsEvent event) { + event.registerMobEffect(new IClientMobEffectExtensions() { + @Override + public boolean isVisibleInInventory(MobEffectInstance effect) { + return false; + } + + @Override + public boolean renderInventoryText(MobEffectInstance instance, EffectRenderingInventoryScreen screen, GuiGraphics guiGraphics, int x, int y, int blitOffset) { + return false; + } + + @Override + public boolean isVisibleInGui(MobEffectInstance effect) { + return false; + } + }, CawezsMantleToStratusModMobEffects.DEBUGTELEPORTING.get()); + } +} diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/procedures/DEBUGTELEPORTINGOnEffectActiveTickProcedure.java b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/DEBUGTELEPORTINGOnEffectActiveTickProcedure.java new file mode 100644 index 0000000..9b2a48b --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/DEBUGTELEPORTINGOnEffectActiveTickProcedure.java @@ -0,0 +1,39 @@ +package net.mcreator.cawezsmantletostratus.procedures; + +import net.minecraft.world.phys.Vec3; +import net.minecraft.world.phys.Vec2; +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.level.LevelAccessor; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.entity.Entity; +import net.minecraft.world.effect.MobEffects; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.network.chat.Component; +import net.minecraft.core.BlockPos; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.CommandSource; + +import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModMobEffects; +import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModBlocks; + +public class DEBUGTELEPORTINGOnEffectActiveTickProcedure { + public static void execute(LevelAccessor world, double x, double y, double z, Entity entity) { + if (entity == null) + return; + if ((world.getBlockState(BlockPos.containing(x, y - 1, z))).getBlock() == CawezsMantleToStratusModBlocks.PLATFORM.get()) { + if (entity instanceof LivingEntity _entity) + _entity.removeEffect(CawezsMantleToStratusModMobEffects.DEBUGTELEPORTING); + if (entity instanceof LivingEntity _entity) + _entity.removeEffect(MobEffects.LEVITATION); + } else { + if (world instanceof ServerLevel _level) + _level.getServer().getCommands().performPrefixedCommand(new CommandSourceStack(CommandSource.NULL, new Vec3(x, y, z), Vec2.ZERO, _level, 4, "", Component.literal(""), _level.getServer(), null).withSuppressedOutput(), + "fill ~ ~ ~ ~ ~1 ~ minecraft:air destroy"); + if (1 < (entity instanceof LivingEntity _livEnt && _livEnt.hasEffect(CawezsMantleToStratusModMobEffects.DEBUGTELEPORTING) ? _livEnt.getEffect(CawezsMantleToStratusModMobEffects.DEBUGTELEPORTING).getAmplifier() : 0)) { + if ((world.getBlockState(BlockPos.containing(x, y - 1, z))).getBlock() == Blocks.AIR) { + world.setBlock(BlockPos.containing(x, y - 1, z), CawezsMantleToStratusModBlocks.PLATFORM.get().defaultBlockState(), 3); + } + } + } + } +} diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/procedures/DetectCDCProcedure.java b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/DetectCDCProcedure.java deleted file mode 100644 index 028b7f2..0000000 --- a/src/main/java/net/mcreator/cawezsmantletostratus/procedures/DetectCDCProcedure.java +++ /dev/null @@ -1,169 +0,0 @@ -package net.mcreator.cawezsmantletostratus.procedures; - - -import net.neoforged.neoforge.event.tick.PlayerTickEvent; -import net.neoforged.fml.common.EventBusSubscriber; -import net.neoforged.bus.api.SubscribeEvent; -import net.neoforged.bus.api.Event; -import com.google.gson.Gson; -import com.google.gson.JsonElement; -import com.google.gson.JsonObject; -import com.google.gson.JsonParser; - -import net.neoforged.neoforge.event.tick.PlayerTickEvent; -import net.neoforged.fml.common.EventBusSubscriber; -import net.neoforged.bus.api.SubscribeEvent; -import net.neoforged.bus.api.Event; - -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.entity.Entity; -import net.minecraft.network.chat.Component; - -import javax.annotation.Nullable; -import net.neoforged.neoforge.event.tick.PlayerTickEvent; -import net.neoforged.fml.common.EventBusSubscriber; -import net.neoforged.bus.api.SubscribeEvent; -import net.neoforged.bus.api.Event; - -import net.minecraft.world.entity.Entity; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.CommandSource; - -import javax.annotation.Nullable; - - - -import java.io.FileReader; -import java.io.Reader; - -import javax.annotation.Nullable; - -import java.io.File; -import java.io.FileWriter; -@EventBusSubscriber -public class DetectCDCProcedure { - - static String fileName = "config/cc_dim_stack.json"; - static String file = ""; - - @SubscribeEvent - public static void onWorldLoad(net.neoforged.neoforge.event.level.LevelEvent.Load event) { - execute(event); - } - - public static void execute() { - execute(null); - } - - private static void execute(@Nullable Event event) { - - - // Loads! - if (file.equals("")) { - try (Reader reader = new FileReader(fileName)) { - Gson gson = new Gson(); - JsonElement jsonElement = JsonParser.parseReader(reader); - JsonObject jsonObject = jsonElement.getAsJsonObject(); - String name = jsonObject.get("name").getAsString(); - System.out.println("CAWEZ's Mantle to Startus found configuration: " + name); - file = jsonObject.toString(); - if (name.equals("default")) { - System.out.println("Default configuration found, overwriting..."); - FileWriter myWriter = new FileWriter(fileName); - myWriter.write("{\n\t\"name\": \"cawezs_mantle_to_stratus_autowrite\",\n\t\"stack\": {\n\n\n\t\t\"cawezs_mantle_to_stratus:inverted\":{\n\t\t\t\"dim_height\": 256,\n\t\t\t\"ceiling_replace\": \"minecraft:bedrock\",\n\t\t\t\"ceiling_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_above\": \"minecraft:the_nether\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"none\",\n\t\t\t\"floor_with\": \"none\",\n\t\t\t\"dim_below\": \"minecraft:the_end\"\n\t\t},\n\t\n\t\t\"minecraft:the_end\":{\n\t\t\t\"dim_height\": 300,\n\t\t\t\"ceiling_replace\": \"none\",\n\t\t\t\"ceiling_with\": \"none\",\n\t\t\t\"dim_above\": \"cawezs_mantle_to_stratus:inverted\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"none\",\n\t\t\t\"floor_with\": \"none\",\n\t\t\t\"dim_below\": \"cawezs_mantle_to_stratus:heights\"\n\t\t},\n\n\t\t\"cawezs_mantle_to_stratus:heights\":{\n\t\t\t\"dim_height\": 300,\n\t\t\t\"ceiling_replace\": \"none\",\n\t\t\t\"ceiling_with\": \"none\",\n\t\t\t\"dim_above\": \"minecraft:the_end\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"none\",\n\t\t\t\"floor_with\": \"none\",\n\t\t\t\"dim_below\": \"minecraft:overworld\"\n\t\t},\n\n\t\t\"minecraft:overworld\":{\n\t\t\t\"dim_height\": 320,\n\t\t\t\"ceiling_replace\": \"none\",\n\t\t\t\"ceiling_with\": \"none\",\n\t\t\t\"dim_above\": \"cawezs_mantle_to_stratus:heights\",\n\n\t\t\t\"dim_depth\": -64,\n\t\t\t\"floor_replace\": \"minecraft:bedrock\",\n\t\t\t\"floor_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_below\": \"cawezs_mantle_to_stratus:depths\"\n\t\t},\n\t\t\n\t\t\"cawezs_mantle_to_stratus:depths\":{\n\t\t\t\"dim_height\": 256,\n\t\t\t\"ceiling_replace\": \"minecraft:bedrock\",\n\t\t\t\"ceiling_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_above\": \"minecraft:overworld\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"minecraft:bedrock\",\n\t\t\t\"floor_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_below\":\"minecraft:the_nether\"\n\t\t},\n\t\t\n\t\t\"minecraft:the_nether\":{\n\t\t\t\"dim_height\": 128,\n\t\t\t\"ceiling_replace\": \"minecraft:bedrock\",\n\t\t\t\"ceiling_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_above\": \"cawezs_mantle_to_stratus:depths\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"minecraft:barrier\",\n\t\t\t\"floor_with\": \"minecraft:air\",\n\t\t\t\"dim_below\": \"cawezs_mantle_to_stratus:inverted\"\n\t\t}\n\t}\n}\n"); - myWriter.close(); - - - } - } catch (Exception e) { - System.out.println("Not using CAWEZ's Connectivity!!"); - e.printStackTrace(); - file = "null"; - } - } - - - } -} - -/* Default config -{ - "name": "cawezs_mantle_to_stratus_autowrite", - "stack": { - - - "cawezs_mantle_to_stratus:inverted":{ - "dim_height": 256, - "ceiling_replace": "minecraft:bedrock", - "ceiling_with": "minecraft:obsidian", - "dim_above": "minecraft:the_nether", - - "dim_depth": 0, - "floor_replace": "none", - "floor_with": "none", - "dim_below": "minecraft:the_end" - }, - - "minecraft:the_end":{ - "dim_height": 300, - "ceiling_replace": "none", - "ceiling_with": "none", - "dim_above": "cawezs_mantle_to_stratus:inverted", - - "dim_depth": 0, - "floor_replace": "none", - "floor_with": "none", - "dim_below": "cawezs_mantle_to_stratus:heights" - }, - - "cawezs_mantle_to_stratus:heights":{ - "dim_height": 300, - "ceiling_replace": "none", - "ceiling_with": "none", - "dim_above": "minecraft:the_end", - - "dim_depth": 0, - "floor_replace": "none", - "floor_with": "none", - "dim_below": "minecraft:overworld" - }, - - "minecraft:overworld":{ - "dim_height": 320, - "ceiling_replace": "none", - "ceiling_with": "none", - "dim_above": "cawezs_mantle_to_stratus:heights", - - "dim_depth": -64, - "floor_replace": "minecraft:bedrock", - "floor_with": "minecraft:obsidian", - "dim_below": "cawezs_mantle_to_stratus:depths" - }, - - "cawezs_mantle_to_stratus:depths":{ - "dim_height": 256, - "ceiling_replace": "minecraft:bedrock", - "ceiling_with": "minecraft:obsidian", - "dim_above": "minecraft:overworld", - - "dim_depth": 0, - "floor_replace": "minecraft:bedrock", - "floor_with": "minecraft:obsidian", - "dim_below": "minecraft:the_nether" - }, - - "minecraft:the_nether":{ - "dim_height": 128, - "ceiling_replace": "minecraft:bedrock", - "ceiling_with": "minecraft:obsidian", - "dim_above": "cawezs_mantle_to_stratus:depths", - - "dim_depth": 0, - "floor_replace": "minecraft:barrier", - "floor_with": "minecraft:air", - "dim_below": "cawezs_mantle_to_stratus:inverted" - } - } -} - */ diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateDefaultProcedure.java b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateDefaultProcedure.java new file mode 100644 index 0000000..2a4646c --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateDefaultProcedure.java @@ -0,0 +1,115 @@ +package net.mcreator.cawezsmantletostratus.procedures; + +import net.neoforged.fml.event.lifecycle.FMLCommonSetupEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.bus.api.Event; + + +import javax.annotation.Nullable; + +import java.io.IOException; +import java.io.FileWriter; +import java.io.File; + +@EventBusSubscriber(bus = EventBusSubscriber.Bus.MOD) +public class GenerateDefaultProcedure { + static String fileName = "config/cc_dim_stack.json"; + + @SubscribeEvent + public static void init(FMLCommonSetupEvent event) { + execute(); + } + + public static void execute() { + execute(null); + } + + private static void execute(@Nullable Event event) { + try { + File myObj = new File(fileName); + if (myObj.createNewFile()) { + System.out.println("File created: " + myObj.getName()); + FileWriter myWriter = new FileWriter(fileName); + myWriter.write( + "{\n\t\"name\": \"cawezs_mantle_to_stratus_autowrite\",\n\t\"stack\": {\n\n\n\t\t\"cawezs_mantle_to_stratus:inverted\":{\n\t\t\t\"dim_height\": 256,\n\t\t\t\"ceiling_replace\": \"minecraft:bedrock\",\n\t\t\t\"ceiling_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_above\": \"minecraft:the_nether\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"none\",\n\t\t\t\"floor_with\": \"none\",\n\t\t\t\"dim_below\": \"minecraft:the_end\"\n\t\t},\n\t\n\t\t\"minecraft:the_end\":{\n\t\t\t\"dim_height\": 300,\n\t\t\t\"ceiling_replace\": \"none\",\n\t\t\t\"ceiling_with\": \"none\",\n\t\t\t\"dim_above\": \"cawezs_mantle_to_stratus:inverted\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"none\",\n\t\t\t\"floor_with\": \"none\",\n\t\t\t\"dim_below\": \"cawezs_mantle_to_stratus:heights\"\n\t\t},\n\n\t\t\"cawezs_mantle_to_stratus:heights\":{\n\t\t\t\"dim_height\": 300,\n\t\t\t\"ceiling_replace\": \"none\",\n\t\t\t\"ceiling_with\": \"none\",\n\t\t\t\"dim_above\": \"minecraft:the_end\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"none\",\n\t\t\t\"floor_with\": \"none\",\n\t\t\t\"dim_below\": \"minecraft:overworld\"\n\t\t},\n\n\t\t\"minecraft:overworld\":{\n\t\t\t\"dim_height\": 320,\n\t\t\t\"ceiling_replace\": \"none\",\n\t\t\t\"ceiling_with\": \"none\",\n\t\t\t\"dim_above\": \"cawezs_mantle_to_stratus:heights\",\n\n\t\t\t\"dim_depth\": -64,\n\t\t\t\"floor_replace\": \"minecraft:bedrock\",\n\t\t\t\"floor_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_below\": \"cawezs_mantle_to_stratus:depths\"\n\t\t},\n\t\t\n\t\t\"cawezs_mantle_to_stratus:depths\":{\n\t\t\t\"dim_height\": 256,\n\t\t\t\"ceiling_replace\": \"minecraft:bedrock\",\n\t\t\t\"ceiling_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_above\": \"minecraft:overworld\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"minecraft:bedrock\",\n\t\t\t\"floor_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_below\":\"minecraft:the_nether\"\n\t\t},\n\t\t\n\t\t\"minecraft:the_nether\":{\n\t\t\t\"dim_height\": 128,\n\t\t\t\"ceiling_replace\": \"minecraft:bedrock\",\n\t\t\t\"ceiling_with\": \"minecraft:obsidian\",\n\t\t\t\"dim_above\": \"cawezs_mantle_to_stratus:depths\",\n\n\t\t\t\"dim_depth\": 0,\n\t\t\t\"floor_replace\": \"minecraft:barrier\",\n\t\t\t\"floor_with\": \"minecraft:air\",\n\t\t\t\"dim_below\": \"cawezs_mantle_to_stratus:inverted\"\n\t\t}\n\t}\n}\n"); + myWriter.close(); + } else { + System.out.println("File already exists."); + } + } catch (IOException e) { + System.out.println("An error occurred."); + e.printStackTrace(); + } + } +} +/* Default config +{ + "name": "cawezs_mantle_to_stratus_autowrite", + "stack": { + "cawezs_mantle_to_stratus:inverted":{ + "dim_height": 256, + "ceiling_replace": "minecraft:bedrock", + "ceiling_with": "minecraft:obsidian", + "dim_above": "minecraft:the_nether", + "dim_depth": 0, + "floor_replace": "none", + "floor_with": "none", + "dim_below": "minecraft:the_end" + }, + + "minecraft:the_end":{ + "dim_height": 300, + "ceiling_replace": "none", + "ceiling_with": "none", + "dim_above": "cawezs_mantle_to_stratus:inverted", + "dim_depth": 0, + "floor_replace": "none", + "floor_with": "none", + "dim_below": "cawezs_mantle_to_stratus:heights" + }, + "cawezs_mantle_to_stratus:heights":{ + "dim_height": 300, + "ceiling_replace": "none", + "ceiling_with": "none", + "dim_above": "minecraft:the_end", + "dim_depth": 0, + "floor_replace": "none", + "floor_with": "none", + "dim_below": "minecraft:overworld" + }, + "minecraft:overworld":{ + "dim_height": 320, + "ceiling_replace": "none", + "ceiling_with": "none", + "dim_above": "cawezs_mantle_to_stratus:heights", + "dim_depth": -64, + "floor_replace": "minecraft:bedrock", + "floor_with": "minecraft:obsidian", + "dim_below": "cawezs_mantle_to_stratus:depths" + }, + + "cawezs_mantle_to_stratus:depths":{ + "dim_height": 256, + "ceiling_replace": "minecraft:bedrock", + "ceiling_with": "minecraft:obsidian", + "dim_above": "minecraft:overworld", + "dim_depth": 0, + "floor_replace": "minecraft:bedrock", + "floor_with": "minecraft:obsidian", + "dim_below": "minecraft:the_nether" + }, + + "minecraft:the_nether":{ + "dim_height": 128, + "ceiling_replace": "minecraft:bedrock", + "ceiling_with": "minecraft:obsidian", + "dim_above": "cawezs_mantle_to_stratus:depths", + "dim_depth": 0, + "floor_replace": "minecraft:barrier", + "floor_with": "minecraft:air", + "dim_below": "cawezs_mantle_to_stratus:inverted" + } + } +} + */ diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateFloorsProcedure.java b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateFloorsProcedure.java new file mode 100644 index 0000000..59bba58 --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/GenerateFloorsProcedure.java @@ -0,0 +1,87 @@ +package net.mcreator.cawezsmantletostratus.procedures; + +import net.neoforged.neoforge.event.tick.PlayerTickEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.bus.api.Event; + +import net.minecraft.world.level.LevelAccessor; +import net.minecraft.world.entity.Entity; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.CommandSource; + +import net.mcreator.cawezsmantletostratus.procedures.GenerateFloorsProcedure; + +import javax.annotation.Nullable; + +import java.io.Reader; +import java.io.FileReader; + +import com.google.gson.JsonParser; +import com.google.gson.JsonObject; +import com.google.gson.JsonElement; +import com.google.gson.Gson; + +@EventBusSubscriber +public class GenerateFloorsProcedure { + static String fileName = "config/cc_dim_stack.json"; + static String file = ""; + + @SubscribeEvent + public static void onPlayerTick(PlayerTickEvent.Post event) { + execute(event, event.getEntity().level(), event.getEntity()); + } + + public static void execute(LevelAccessor world, Entity entity) { + execute(null, world, entity); + } + + private static void run(Entity entity, String command) { + Entity _ent = entity; + if (!_ent.level().isClientSide() && _ent.getServer() != null) { + _ent.getServer().getCommands().performPrefixedCommand(new CommandSourceStack(CommandSource.NULL, _ent.position(), _ent.getRotationVector(), _ent.level() instanceof ServerLevel ? (ServerLevel) _ent.level() : null, 4, + _ent.getName().getString(), _ent.getDisplayName(), _ent.level().getServer(), _ent), command); + } + } + + private static void execute(@Nullable Event event, LevelAccessor world, Entity entity) { + if (!world.isClientSide() && world.getServer() != null) { + // Loads! + if (file.equals("")) { + try (Reader reader = new FileReader(fileName)) { + Gson gson = new Gson(); + JsonElement jsonElement = JsonParser.parseReader(reader); + JsonObject jsonObject = jsonElement.getAsJsonObject(); + String name = jsonObject.get("name").getAsString(); + file = jsonObject.toString(); + } catch (Exception e) { + System.out.println("CAWEZ's Mantle to Stratus: waiting for config!"); + } + } else { + String currentdim = ("" + entity.level().dimension()).substring(34, ("" + entity.level().dimension()).length() - 1).trim(); + Gson gson = new Gson(); + JsonElement jsonElement = JsonParser.parseString(file); + JsonObject jsonObject = jsonElement.getAsJsonObject(); + if (!jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("floor_replace").getAsString().equals("none")) { + run(entity, "fill ~-3 " + (jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_depth").getAsInt()) + " ~-3 ~3 " + + (jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_depth").getAsInt()) + " ~3 cawezs_mantle_to_stratus:border replace minecraft:air"); + run(entity, + "fill ~-3 " + (jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_depth").getAsInt()) + " ~-3 ~3 " + + (7 + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_depth").getAsInt()) + " ~3 " + + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("floor_with").getAsString() + " replace " + + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("floor_replace").getAsString()); + } + if (!jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("ceiling_replace").getAsString().equals("none")) { + run(entity, "fill ~-3 " + (-1 + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_height").getAsInt()) + " ~-3 ~3 " + + (-1 + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_height").getAsInt()) + " ~3 cawezs_mantle_to_stratus:border replace minecraft:air"); + run(entity, + "fill ~-3 " + (-1 + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_height").getAsInt()) + " ~-3 ~3 " + + (-8 + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_height").getAsInt()) + " ~3 " + + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("ceiling_with").getAsString() + " replace " + + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("ceiling_replace").getAsString()); + } + } + } + } +} diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/procedures/PlatformOnTickUpdateProcedure.java b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/PlatformOnTickUpdateProcedure.java new file mode 100644 index 0000000..f47bf6e --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/PlatformOnTickUpdateProcedure.java @@ -0,0 +1,17 @@ +package net.mcreator.cawezsmantletostratus.procedures; + +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.level.LevelAccessor; +import net.minecraft.core.BlockPos; + +public class PlatformOnTickUpdateProcedure { + public static void execute(LevelAccessor world, double x, double y, double z) { + world.setBlock(BlockPos.containing(x, y, z), Blocks.AIR.defaultBlockState(), 3); + world.scheduleTick(BlockPos.containing(x + 1, y, z), world.getBlockState(BlockPos.containing(x + 1, y, z)).getBlock(), 0); + world.scheduleTick(BlockPos.containing(x - 1, y, z), world.getBlockState(BlockPos.containing(x - 1, y, z)).getBlock(), 0); + world.scheduleTick(BlockPos.containing(x, y + 1, z), world.getBlockState(BlockPos.containing(x, y + 1, z)).getBlock(), 0); + world.scheduleTick(BlockPos.containing(x, y - 1, z), world.getBlockState(BlockPos.containing(x, y - 1, z)).getBlock(), 0); + world.scheduleTick(BlockPos.containing(x, y, z + 1), world.getBlockState(BlockPos.containing(x, y, z + 1)).getBlock(), 0); + world.scheduleTick(BlockPos.containing(x, y, z - 1), world.getBlockState(BlockPos.containing(x, y, z - 1)).getBlock(), 0); + } +} diff --git a/src/main/java/net/mcreator/cawezsmantletostratus/procedures/TeleportPlayerProcedure.java b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/TeleportPlayerProcedure.java new file mode 100644 index 0000000..a24e3ba --- /dev/null +++ b/src/main/java/net/mcreator/cawezsmantletostratus/procedures/TeleportPlayerProcedure.java @@ -0,0 +1,117 @@ +package net.mcreator.cawezsmantletostratus.procedures; + +import net.neoforged.neoforge.event.tick.PlayerTickEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.bus.api.Event; +import com.google.gson.Gson; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; + +import net.neoforged.neoforge.event.tick.PlayerTickEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.bus.api.Event; + +import net.minecraft.world.level.LevelAccessor; +import net.minecraft.world.entity.Entity; +import net.minecraft.network.chat.Component; + +import javax.annotation.Nullable; +import net.neoforged.neoforge.event.tick.PlayerTickEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.bus.api.Event; + +import net.neoforged.neoforge.event.tick.EntityTickEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.bus.api.Event; + +import net.minecraft.world.entity.Entity; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.CommandSource; + +import javax.annotation.Nullable; +import java.io.FileReader; +import java.io.Reader; + +import javax.annotation.Nullable; +import net.mcreator.cawezsmantletostratus.init.CawezsMantleToStratusModMobEffects; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.entity.Entity; +@EventBusSubscriber +public class TeleportPlayerProcedure { + static String fileName = "config/cc_dim_stack.json"; + static String file = ""; + + @SubscribeEvent + public static void onEntityTick(EntityTickEvent.Pre event) { + execute(event, event.getEntity().level(), event.getEntity()); + } + + public static void execute(LevelAccessor world, Entity entity) { + execute(null, world, entity); + } + + private static void run(Entity entity, String command){ + Entity _ent = entity; + if (!_ent.level().isClientSide() && _ent.getServer() != null) { + _ent.getServer().getCommands().performPrefixedCommand(new CommandSourceStack(CommandSource.NULL, _ent.position(), _ent.getRotationVector(), _ent.level() instanceof ServerLevel ? (ServerLevel) _ent.level() : null, 4, + _ent.getName().getString(), _ent.getDisplayName(), _ent.level().getServer(), _ent), command); + } + + } + + private static void execute(@Nullable Event event, LevelAccessor world, Entity entity) { + + // Loads! + if (file.equals("")) { + try (Reader reader = new FileReader(fileName)) { + Gson gson = new Gson(); + JsonElement jsonElement = JsonParser.parseReader(reader); + JsonObject jsonObject = jsonElement.getAsJsonObject(); + String name = jsonObject.get("name").getAsString(); + System.out.println("CAWEZ's Connectivity loaded configuration: " + name); + file = jsonObject.toString(); + } catch (Exception e) { + System.out.println("CAWEZ's Connectivity Failed!"); + e.printStackTrace(); + } + } else { + + if (!(entity instanceof LivingEntity _livEnt0 && _livEnt0.hasEffect(CawezsMantleToStratusModMobEffects.DEBUGTELEPORTING))) { + + String currentdim = ("" + entity.level().dimension()).substring(34, ("" + entity.level().dimension()).length() - 1).trim(); + + Gson gson = new Gson(); + JsonElement jsonElement = JsonParser.parseString(file); + JsonObject jsonObject = jsonElement.getAsJsonObject(); + if (entity.getY() > -2 + jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_height").getAsInt()){ + String next_dim = jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_above").getAsString(); + if (!next_dim.equals("none")) { + System.out.println("CAWEZ's Connectivity: changing dimension to " + next_dim); + run(entity, "execute in " + next_dim + " run tp @s " + entity.getX() + " " + (1 + jsonObject.get("stack").getAsJsonObject().get(next_dim).getAsJsonObject().get("dim_depth").getAsInt()) + " " + entity.getZ()); + run(entity, "effect give @s cawezs_mantle_to_stratus:debugteleporting 5 2"); + run(entity, "effect give @s minecraft:levitation 5 0"); + run(entity, "effect give @s minecraft:haste 5 0"); + run(entity, "effect give @s minecraft:resistance 5 255"); + + } + } else if (entity.getY() < jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_depth").getAsInt()){ + String next_dim = jsonObject.get("stack").getAsJsonObject().get(currentdim).getAsJsonObject().get("dim_below").getAsString(); + if (!next_dim.equals("none")) { + System.out.println("CAWEZ's Connectivity: changing dimension to " + next_dim); + run(entity, "execute in " + next_dim + " run tp @s " + entity.getX() + " " + (-3 + jsonObject.get("stack").getAsJsonObject().get(next_dim).getAsJsonObject().get("dim_height").getAsInt()) + " " + entity.getZ()); + run(entity, "effect give @s cawezs_mantle_to_stratus:debugteleporting 5"); + run(entity, "effect give @s minecraft:slow_falling 5 0"); + run(entity, "effect give @s minecraft:resistance 5 255"); + } + } + } + + } + } +} diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/blockstates/border.json b/src/main/resources/assets/cawezs_dimensional_connectivity/blockstates/border.json new file mode 100644 index 0000000..f2daa88 --- /dev/null +++ b/src/main/resources/assets/cawezs_dimensional_connectivity/blockstates/border.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "cawezs_dimensional_connectivity:block/border" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/blockstates/platform.json b/src/main/resources/assets/cawezs_dimensional_connectivity/blockstates/platform.json new file mode 100644 index 0000000..e9a647c --- /dev/null +++ b/src/main/resources/assets/cawezs_dimensional_connectivity/blockstates/platform.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "cawezs_dimensional_connectivity:block/platform" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/lang/en_us.json b/src/main/resources/assets/cawezs_dimensional_connectivity/lang/en_us.json new file mode 100644 index 0000000..b4824c2 --- /dev/null +++ b/src/main/resources/assets/cawezs_dimensional_connectivity/lang/en_us.json @@ -0,0 +1,5 @@ +{ + "block.cawezs_dimensional_connectivity.border": "Border", + "block.cawezs_dimensional_connectivity.platform": "Platform", + "effect.cawezs_dimensional_connectivity.shifted": "Shifted" +} \ No newline at end of file diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/models/block/border.json b/src/main/resources/assets/cawezs_dimensional_connectivity/models/block/border.json new file mode 100644 index 0000000..845c7ba --- /dev/null +++ b/src/main/resources/assets/cawezs_dimensional_connectivity/models/block/border.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "cawezs_dimensional_connectivity:block/black_tile", + "up": "cawezs_dimensional_connectivity:block/black_tile", + "north": "cawezs_dimensional_connectivity:block/black_tile", + "east": "cawezs_dimensional_connectivity:block/black_tile", + "south": "cawezs_dimensional_connectivity:block/black_tile", + "west": "cawezs_dimensional_connectivity:block/black_tile", + "particle": "cawezs_dimensional_connectivity:block/black_tile" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/models/block/platform.json b/src/main/resources/assets/cawezs_dimensional_connectivity/models/block/platform.json new file mode 100644 index 0000000..8232b80 --- /dev/null +++ b/src/main/resources/assets/cawezs_dimensional_connectivity/models/block/platform.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "cawezs_dimensional_connectivity:block/invisible_tile", + "up": "cawezs_dimensional_connectivity:block/invisible_tile", + "north": "cawezs_dimensional_connectivity:block/invisible_tile", + "east": "cawezs_dimensional_connectivity:block/invisible_tile", + "south": "cawezs_dimensional_connectivity:block/invisible_tile", + "west": "cawezs_dimensional_connectivity:block/invisible_tile", + "particle": "cawezs_dimensional_connectivity:block/invisible_tile" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/models/item/border.json b/src/main/resources/assets/cawezs_dimensional_connectivity/models/item/border.json new file mode 100644 index 0000000..dff2708 --- /dev/null +++ b/src/main/resources/assets/cawezs_dimensional_connectivity/models/item/border.json @@ -0,0 +1,22 @@ +{ + "parent": "cawezs_dimensional_connectivity:block/border", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/models/item/platform.json b/src/main/resources/assets/cawezs_dimensional_connectivity/models/item/platform.json new file mode 100644 index 0000000..d983f79 --- /dev/null +++ b/src/main/resources/assets/cawezs_dimensional_connectivity/models/item/platform.json @@ -0,0 +1,22 @@ +{ + "parent": "cawezs_dimensional_connectivity:block/platform", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/textures/block/black_tile.png b/src/main/resources/assets/cawezs_dimensional_connectivity/textures/block/black_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..f8f0baec9e4862fe498e6adcb844f603594a30a2 GIT binary patch literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`#-1*YAr)~;Pb?Hzopr0IFIZ;Q#;t literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/textures/block/invisible_tile.png b/src/main/resources/assets/cawezs_dimensional_connectivity/textures/block/invisible_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..1b94ad4155d3136e421e23ff8351a5190c45a4fb GIT binary patch literal 107 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`MxHK?Ar*1S2?+^5_?dWAm{!dD zZ@?DWAhdUJ1B*kL$YDmCb?%J4jH(w|E_;W?99|^BAS|PM`Lc+?8=!6mPgg&ebxsLQ E08K9)NdN!< literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/cawezs_dimensional_connectivity/textures/mob_effect/black_effect.png b/src/main/resources/assets/cawezs_dimensional_connectivity/textures/mob_effect/black_effect.png new file mode 100644 index 0000000000000000000000000000000000000000..462b6083e838fbf2cd932baa8e5b7ac9e9b1eeb9 GIT binary patch literal 75 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`LY^*;Ar*1S2@zopr0IFIZ;Q#;t literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/cawezs_mantle_to_stratus/textures/mob_effect/debugteleporting.png b/src/main/resources/assets/cawezs_mantle_to_stratus/textures/mob_effect/debugteleporting.png new file mode 100644 index 0000000000000000000000000000000000000000..462b6083e838fbf2cd932baa8e5b7ac9e9b1eeb9 GIT binary patch literal 75 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`LY^*;Ar*1S2@